/* ============ ABOUT PAGE STYLING ============ */

/* ============ HERO SECTION ============ */
.about-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.2);
}

.about-hero .hero-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* ============ ABOUT CONTENT SECTION ============ */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ MISSION & VISION ============ */
.mission-vision {
    background: #F8FAFC;
    padding: 80px 0;
}

.mission-vision h2 {
    font-size: 2.5rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
}

.mission-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #64748b;
}

/* ============ WHY CHOOSE US ============ */
.why-choose {
    background: white;
    padding: 80px 0;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card:hover h3 {
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* ============ STATS SECTION ============ */
.stats-section {
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-left: 3px solid #F97316;
}

.stat-card h3 {
    font-size: 2.8rem;
    color: #F97316;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    color: #e2e8f0;
}

/* ============ TEAM SECTION ============ */
.team-section {
    background: white;
    padding: 80px 0;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.team-card:hover {
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
    color: white;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    margin: 0 auto 20px;
}

.team-card:hover .team-avatar {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.team-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-card:hover h3 {
    color: white;
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

.team-card:hover p {
    color: #cbd5e1;
}

/* ============ VALUES SECTION ============ */
.values-section {
    background: #F8FAFC;
    padding: 80px 0;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #F97316;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
    transform: translateX(10px);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #64748b;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #1a1f3a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #F97316;
    border-color: #F97316;
}

.btn-secondary:hover {
    background: #F97316;
    color: white;
    transform: translateY(-3px);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image {
        min-height: 300px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 1.8rem;
    }

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

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

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

    .mission-card,
    .feature-card {
        padding: 20px;
    }

    .stat-card {
        padding: 20px 10px;
        border-left-width: 2px;
    }
}
