:root {
            --primary: #1a1a2e;
            --accent: #e94560;
            --gold: #f5a623;
            --light-bg: #f8f9fc;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* ── HERO ── */
        .about-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
            padding: 110px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(233, 69, 96, 0.12) 0%, transparent 70%);
        }

        .about-hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 60px;
            background: #fff;
            clip-path: ellipse(55% 100% at 50% 100%);
        }

        .about-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            color: #fff;
            font-weight: 800;
            line-height: 1.15;
        }

        .about-hero h1 span {
            color: var(--accent);
        }

        .about-hero p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.1rem;
            max-width: 560px;
        }

        .breadcrumb-item a {
            color: var(--gold);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.6);
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.4);
        }

        /* ── OUR STORY ── */
        .story-section {
            padding: 90px 0;
            background: #fff;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

        .story-text {
            color: #555;
            font-size: 0.97rem;
            line-height: 1.9;
        }

        .story-img {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

        .story-img img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        .story-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(233, 69, 96, 0.2), transparent);
        }

        .quote-block {
            border-left: 4px solid var(--accent);
            padding: 16px 24px;
            background: rgba(233, 69, 96, 0.04);
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }

        .quote-block p {
            font-style: italic;
            color: var(--primary);
            font-size: 1rem;
            margin: 0;
            font-weight: 500;
        }

        .quote-block span {
            font-size: 0.82rem;
            color: #999;
            margin-top: 6px;
            display: block;
        }

        /* ── TIMELINE ── */
        .timeline-section {
            background: var(--light-bg);
            padding: 90px 0;
        }

        .timeline {
            position: relative;
            padding-left: 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent), var(--gold));
            transform: translateX(-50%);
        }

        .tl-item {
            position: relative;
            margin-bottom: 48px;
            width: 45%;
        }

        .tl-item.left {
            left: 0;
            text-align: right;
        }

        .tl-item.right {
            left: 55%;
            text-align: left;
        }

        .tl-dot {
            position: absolute;
            top: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px var(--accent);
        }

        .tl-item.left .tl-dot {
            right: -10.5%;
        }

        .tl-item.right .tl-dot {
            left: -10.5%;
        }

        .tl-year {
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 4px;
            font-family: 'Playfair Display', serif;
        }

        .tl-item h6 {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .tl-item p {
            font-size: 0.88rem;
            color: #666;
            line-height: 1.65;
            margin: 0;
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }

            .tl-item {
                width: 80%;
                left: 48px !important;
                text-align: left !important;
            }

            .tl-item .tl-dot {
                left: -44px !important;
                right: auto !important;
            }
        }

        /* ── MISSION / VALUES ── */
        .values-section {
            background: #fff;
            padding: 90px 0;
        }

        .value-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 36px 28px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border-bottom: 4px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border-bottom-color: var(--accent);
        }

        .val-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .value-card h5 {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .value-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.75;
            margin: 0;
        }

        /* ── TEAM ── */
        .team-section {
            background: var(--light-bg);
            padding: 90px 0;
        }

        .team-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 6px 36px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        }

        .team-img {
            position: relative;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            object-position: top;
            transition: transform 0.4s ease;
        }

        .team-card:hover .team-img img {
            transform: scale(1.07);
        }

        .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            gap: 10px;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-overlay a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            transition: background 0.2s;
        }

        .team-overlay a:hover {
            background: var(--accent);
        }

        .team-info {
            padding: 24px 22px;
        }

        .team-info h6 {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
            font-size: 1rem;
        }

        .team-role {
            color: var(--accent);
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .team-info p {
            color: #777;
            font-size: 0.83rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ── STATS ── */
        .stats-section {
            background: linear-gradient(135deg, #1a1a2e, #0f3460);
            padding: 80px 0;
        }

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

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
            margin-top: 6px;
        }

        /* ── CTA ── */
        .cta-section {
            background: var(--accent);
            padding: 70px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 12px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
        }

        .btn-cta {
            background: #fff;
            color: var(--accent);
            border: none;
            border-radius: 50px;
            padding: 15px 44px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
            color: var(--accent);
        }