/* ─── About Main ─────────────────────────────────── */
.about-main { padding: 5rem 0; }

.about-intro {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-text h2 {
    color: var(--dark);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.about-text h2 span { color: var(--orange); }

.about-text p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.about-image { position: relative; }

.about-image img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 16px; right: -16px;
    width: 100%; height: 100%;
    border: 2px solid rgba(255,77,0,0.2);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.35s ease;
}

.about-image:hover::after { top: 20px; right: -20px; }

.about-badge {
    position: absolute;
    bottom: -18px; left: -18px;
    background: var(--gradient);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px var(--orange-glow);
}

.about-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.about-badge span { font-size: 0.78rem; font-weight: 500; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── Mission Vision ─────────────────────────────── */
.mission-vision {
    padding: 5rem 0;
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,77,0,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(255,0,102,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative; z-index: 2;
}

.mv-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.mv-card:hover::before { transform: scaleX(1); }
.mv-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); }

.mv-icon {
    font-size: 3rem; margin-bottom: 1.5rem;
    display: block;
    color: white;
    filter: drop-shadow(0 0 8px rgba(255,77,0,0.4));
}

.mv-card h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.mv-card p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.95rem; }

/* ─── Values ─────────────────────────────────────── */
.values { padding: 5rem 0; background: var(--off-white); }

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

.value-card {
    background: white;
    padding: 2.25rem 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.value-card:hover::after { transform: scaleX(1); }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(255,77,0,0.1); }

.value-icon {
    width: 60px; height: 60px;
    background: rgba(255,77,0,0.08);
    border: 1.5px solid rgba(255,77,0,0.15);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    transition: all 0.35s ease;
}

.value-card:hover .value-icon { background: var(--gradient); border-color: transparent; color: white; }

.value-card h4 { color: var(--dark); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; }

/* ─── Team ───────────────────────────────────────── */
.team { padding: 5rem 0; }

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

.team-member {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.team-member:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(255,77,0,0.12); }

.member-image { margin-bottom: 1.5rem; position: relative; display: inline-block; }

.member-image img {
    width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 3px rgba(255,77,0,0.25), 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
}

.team-member:hover .member-image img { box-shadow: 0 0 0 3px var(--orange), 0 12px 30px rgba(255,77,0,0.25); }

.team-member h4 { color: var(--dark); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.team-member .role { color: var(--orange); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.team-member p:not(.role) { color: var(--text-muted); line-height: 1.65; font-size: 0.88rem; }

/* ─── Statistics ─────────────────────────────────── */
.statistics {
    padding: 5rem 0;
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,77,0,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative; z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: white;
    border-radius: 18px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); }

.stat-number {
    font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; letter-spacing: -2px;
}

.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.statistics .section-title { color: white; }

/* ─── Timeline ───────────────────────────────────── */
.timeline { padding: 5rem 0; background: var(--off-white); }

.timeline-container {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 1.5rem; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--orange), transparent);
}

.timeline-item {
    background: white;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    margin-left: 4rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.timeline-item:hover { transform: translateX(6px); box-shadow: 0 12px 35px rgba(255,77,0,0.1); }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.75rem; top: 1.75rem;
    width: 14px; height: 14px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,77,0,0.2);
    border: 2px solid white;
}

.timeline-item .year {
    color: var(--orange); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}

.timeline-item h4 { color: var(--dark); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .about-intro { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .about-image { order: -1; max-width: 480px; margin: 0 auto; }
    .about-image::after { display: none; }
    .about-badge { bottom: -14px; left: 12px; }
}

@media (max-width: 768px) {
    .about-main { padding: 3rem 0; }
    .about-intro { gap: 2.5rem; }
    .about-text h2 { font-size: 1.9rem; }
    .about-image img { height: 280px; }
    .mission-vision { padding: 3.5rem 0; }
    .mv-grid { grid-template-columns: 1fr; gap: 18px; }
    .mv-card { padding: 2.25rem 1.75rem; }
    .mv-card h3 { font-size: 1.4rem; }
    .values { padding: 3.5rem 0; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team { padding: 3.5rem 0; }
    .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .statistics { padding: 3.5rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 2.2rem; }
    .timeline { padding: 3.5rem 0; }
    .timeline-item { margin-left: 3rem; }
    .timeline-item::before { left: -2.1rem; }
    .timeline-container::before { left: 1rem; }
}

@media (max-width: 480px) {
    .about-text h2 { font-size: 1.6rem; }
    .about-image img { height: 230px; }
    .mv-card { padding: 1.75rem 1.25rem; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.9rem; }
    .timeline-item { margin-left: 2.5rem; padding: 1.25rem 1.25rem 1.25rem 1.5rem; }
}
