/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.about-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1654 100%);
    overflow: hidden;
    padding: 48px 0;
}

@media (min-width: 768px) {
    .about-hero-section {
        min-height: 530px;
        padding: 80px 0;
    }
}

.about-hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

@media (min-width: 768px) {
    .about-hero-background {
        opacity: 0.2;
    }
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.about-hero-content-text {
    max-width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .about-hero-content-text {
        max-width: 540px;
        text-align: left;
    }
}

.about-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(244, 187, 68, 0.12);
    border: 1px solid rgba(244, 187, 68, 0.35);
    border-radius: 9999px;
    color: var(--color-accent);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-hero-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .about-hero-desc {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

.about-hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-hero-stats {
        justify-content: flex-start;
    }
}

.about-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .about-hero-stat:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }

.about-hero-stat-icon {
    color: var(--color-accent);
    font-size: 18px;
    line-height: 1;
}

.about-hero-stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .about-hero-stat-text {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════
   MISSION & VISION CARDS
═══════════════════════════════════════════════════════ */
.mission-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(41, 32, 117, 0.08);
}

.mission-card-icon {
    color: var(--color-primary);
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.mission-card-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.mission-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.vision-card {
    background: var(--color-primary);
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(41, 32, 117, 0.2);
}

.vision-card-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.vision-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.85;
    margin-bottom: 32px;
}

.vision-progress {
    width: 100%;
    height: 4px;
    background: rgba(244, 187, 68, 0.25);
    border-radius: 9999px;
    overflow: hidden;
}

.vision-progress-bar {
    height: 100%;
    width: 75%;
    background: var(--color-accent);
    border-radius: 9999px;
}

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════ */
.why-choose-section {
    padding: 80px 0;
    background: var(--color-surface);
}

.why-choose-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.why-choose-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 9999px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
    padding: 24px 16px;
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: rgba(244, 187, 68, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1);
}

.why-choose-icon .material-symbols-outlined {
    font-size: 30px;
}

.why-choose-subtitle {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.why-choose-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════ */
.timeline-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: #fff;
    overflow: hidden;
}

.timeline-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #fff;
}

.timeline-line {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* Vertical connector line on desktop */
@media (min-width: 768px) {
    .timeline-line::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(244, 187, 68, 0.25);
        transform: translateX(-50%);
    }
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.timeline-item-left {
    width: 100%;
    text-align: right;
    padding-right: 40px;
}

.timeline-item-center {
    z-index: 10;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-primary);
    box-shadow: 0 0 0 4px rgba(244, 187, 68, 0.25);
}

.timeline-step-number {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-on-accent);
}

.timeline-item-right {
    width: 100%;
    padding-left: 40px;
}

/* Mobile: all content goes right */
@media (max-width: 767px) {
    .timeline-item-left {
        display: none;
    }

    .timeline-item-right {
        padding-left: 0;
        text-align: center;
    }
}

.timeline-step-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.timeline-step-desc {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   MENTORS
═══════════════════════════════════════════════════════ */
.mentor-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.mentor-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .mentor-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.mentor-header h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 4px;
}

.mentor-header p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

.mentor-view-all {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .mentor-view-all:hover {
        background: var(--color-primary-light);
        transform: translateY(-1px);
    }

.mentor-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

    .mentor-card:hover {
        border-color: var(--color-accent);
        box-shadow: 0 20px 40px rgba(41, 32, 117, 0.12);
        transform: translateY(-4px);
    }

.mentor-card-image {
    height: 220px;
    overflow: hidden;
}

    .mentor-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.mentor-card:hover .mentor-card-image img {
    transform: scale(1.06);
}

.mentor-card-content {
    padding: 20px;
}

.mentor-card-name {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 4px;
}

.mentor-card-role {
    display: block;
    color: var(--color-primary);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mentor-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   ACHIEVEMENTS
═══════════════════════════════════════════════════════ */
.achievements-section {
    padding: 72px 0;
    background: var(--color-primary);
    color: #fff;
}

.achievement-value {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.achievement-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
    margin: 0;
}

.achievements-testimonial {
    margin-top: 56px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(244, 187, 68, 0.2);
}

    .achievements-testimonial .testimonial-quote {
        font-family: "Inter", sans-serif;
        font-size: 17px;
        line-height: 1.75;
        font-style: italic;
        opacity: 0.88;
        max-width: 680px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.9);
    }

    .achievements-testimonial .testimonial-author {
        margin-top: 20px;
        font-family: "Hanken Grotesk", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--color-accent);
    }
