/* About Page Specific Styles */

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(10, 10, 10, 1) 50%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #007bff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b3b3b3;
}

.mission-visual {
    display: flex;
    justify-content: center;
}

.mission-stats {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.values-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.location-card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
}

.location-header {
    background: linear-gradient(135deg, #007bff, #00ff88);
    padding: 1.5rem;
    color: #000000;
}

.location-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.location-content {
    padding: 2rem;
}

.location-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.location-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #b3b3b3;
    font-size: 0.85rem;
}

/* Office Teams */
.office-teams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.office-team {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-team:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

.office-team h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-photo {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.office-team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-team:hover .office-team-img {
    transform: scale(1.05);
}

.team-description p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.team-stat {
    text-align: center;
}

.team-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.3rem;
}

.team-stat .stat-label {
    color: #b3b3b3;
    font-size: 0.8rem;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.approach-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.approach-text h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-text p {
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-text .section-title {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .office-teams {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-steps {
        order: -1;
    }

    .location-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .team-section,
    .values-section,
    .approach-section,
    .mission-section {
        padding: 3rem 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-card {
        min-width: auto;
    }

    .office-teams {
        gap: 2rem;
    }
    
    .office-team {
        padding: 1.5rem;
    }
    
    .office-team-img {
        height: 200px;
    }

    .step {
        padding: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card,
.office-team,
.location-card,
.step {
    animation: fadeInUp 0.8s ease forwards;
}

.value-card:nth-child(2) {
    animation-delay: 0.1s;
}

.value-card:nth-child(3) {
    animation-delay: 0.2s;
}

.value-card:nth-child(4) {
    animation-delay: 0.3s;
}

.value-card:nth-child(5) {
    animation-delay: 0.4s;
}

.value-card:nth-child(6) {
    animation-delay: 0.5s;
}

.office-team:nth-child(2) {
    animation-delay: 0.2s;
}