/* ===================== PAGE HERO ===================== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-light) 100%);
    background-image: url('images/hero-about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================== OUR STORY ===================== */
.story-section {
    padding: 100px 0;
    background: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.story-content .section-tag {
    margin-bottom: 16px;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Story Stats Card */
.story-stats-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.ssc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ssc-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1rem;
}

.ssc-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
}

.ssc-item span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===================== MISSION & VISION ===================== */
.mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.mission-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mission-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 1.4rem;
    border-radius: 16px;
    margin: 0 auto 20px;
}

.mission-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================== FOUNDER ===================== */
.founder-section {
    padding: 100px 0;
    background: var(--bg);
}

.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}

.founder-avatar {
    display: flex;
    justify-content: center;
}

.founder-photo {
    width: 240px;
    height: 280px;
    max-width: 240px;
    max-height: 280px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid var(--primary-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.founder-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}

.founder-role {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.founder-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.founder-highlights {
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fh-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.fh-item i {
    color: #10B981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===================== WHY CHOOSE US ===================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wc-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.wc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.wc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.2rem;
    border-radius: 12px;
    margin-bottom: 18px;
}

.wc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.wc-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================== MEET THE TEAM ===================== */
.team-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.team-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.team-card:first-child {
    border: 2px solid var(--primary);
    background: var(--primary-light);
}

.team-card:first-child .team-avatar {
    background: var(--primary);
    color: #fff;
}

.team-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    overflow: hidden;
}

.team-avatar img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-stats-card {
        position: static;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-highlights {
        align-items: center;
    }

    .founder-content .btn {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.2rem;
    }

    .story-content h2 {
        font-size: 1.6rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .founder-card {
        padding: 32px 24px;
    }

    .founder-photo {
        width: 180px;
        height: 200px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 1.8rem;
    }

    .story-content h2 {
        font-size: 1.4rem;
    }

    .ssc-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
