﻿/* ============================================================
           VARIABLES & RESET
        ============================================================ */
        :root {
            --bg: #ffffff;
            --surface: #f4f6f8;
            --surface2: #e2e8f0;
            --text: #0B1B3D;
            --text-muted: #4a5568;
            --muted: #4a5568;
            --accent: #0066FF;
            --accent-dim: #004CFF;
            --accent-eco: #008a99;
            --white: #ffffff;
            --header-bg: #0B1B3D;
            --border: rgba(0, 0, 0, 0.08);
            --glow: 0 8px 30px rgba(0, 102, 255, 0.3);
            --glow-eco: 0 8px 30px rgba(0, 138, 153, 0.2);
            --font-display: 'Barlow Condensed', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --radius: 8px;
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.65;
            overflow-x: hidden;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* =========================================
   SPLASH INTRO ANIMATION
   ========================================= */
#splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-logo-container {
    perspective: 1000px;
}

.splash-logo {
    width: clamp(220px, 35vw, 400px);
    height: auto;
    animation: floatFlat 4s ease-in-out infinite;
}

@keyframes floatFlat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================================
           TYPOGRAPHY
        ============================================================ */
        .display {
            font-family: var(--font-display);
            font-weight: 900;
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: -0.5px;
            color: var(--text);
        }

        .label {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-dim);
        }

        .body-text {
            color: var(--text-muted);
            font-weight: 400;
            line-height: 1.75;
        }

        /* ============================================================
           UTILITY
        ============================================================ */
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .section {
            padding: 100px 0;
        }

        /* Slash accent â€” the "lightning bolt" motif */
        .slash {
            display: inline-block;
            width: 3px;
            height: 36px;
            background: var(--accent);
            transform: skewX(-12deg);
            margin-right: 14px;
            vertical-align: middle;
            flex-shrink: 0;
        }

        /* ============================================================
           BUTTONS
        ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 28px;
            border-radius: var(--radius);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.08);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .btn:hover::after {
            opacity: 1;
        }

        .btn-primary {
            background: var(--accent);
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1.5px solid rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            border-color: var(--accent-eco);
            color: var(--accent-eco);
            box-shadow: var(--glow-eco);
        }

        .btn-ghost {
            background: transparent;
            color: var(--accent);
            border: 1.5px solid var(--accent);
            padding: 11px 24px;
            font-size: 0.85rem;
        }

        .btn-ghost:hover {
            background: var(--accent);
            color: #ffffff;
        }

        /* ============================================================
           HEADER
        ============================================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--text);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 90px; /* Encore plus grand */
            width: auto;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-right: 15px;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
            padding-right: 15px;
        }

        .social-icons a {
            color: var(--text);
            font-size: 1.1rem;
            transition: color 0.2s, transform 0.2s;
        }

        .social-icons a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        .lang-switch {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            color: var(--text);
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .lang-switch a {
            color: rgba(0, 0, 0, 0.5);
            transition: color 0.2s;
        }

        .lang-switch a.active, .lang-switch a:hover {
            color: var(--text);
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 0.5px;
            color: var(--text);
            transition: color var(--transition);
        }

        .phone-link:hover {
            color: var(--accent);
        }

        .phone-link svg {
            fill: var(--accent);
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .tagline-bar {
            background: var(--accent);
            color: #ffffff;
            text-align: center;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 6px 20px;
        }

        /* ============================================================
           HERO
        ============================================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        /* Slider Background */
        .slider-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            background: #000;
        }

        .slider-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
            z-index: 1;
        }

        .slider-bg img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out, transform 8s linear;
            transform: scale(1.05);
        }

        .slider-bg img.active {
            opacity: 0.45;
            transform: scale(1);
        }

        /* Overlay text colors for Hero */
        .hero .display {
            color: var(--text);
        }

        .hero .body-text {
            color: var(--text-muted);
            text-shadow: 0 1px 3px rgba(255,255,255,0.6);
        }

        /* Typewriter Cursor */
        .cursor {
            font-weight: 100;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        @keyframes pulseRed {
            0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5); }
            50% { box-shadow: 0 0 20px 5px rgba(229, 57, 53, 0.3); }
        }

        /* Big diagonal accent slab */
        .hero-slab {
            position: absolute;
            right: -80px;
            top: 0;
            width: 52%;
            height: 100%;
            background: var(--surface);
            transform: skewX(-6deg);
            z-index: 0;
            overflow: hidden;
        }

        .hero-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            perspective: 1000px;
        }

        .hero-visual img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-eco);
            transform: rotateY(-10deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }

        .hero-visual img:hover {
            transform: rotateY(0deg) rotateX(0deg);
        }

        .hero-slab::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--bg) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 560px;
        }

        .hero-content .label {
            display: flex;
            align-items: center;
            margin-bottom: 28px;
        }

        .hero-title {
            font-size: clamp(3.2rem, 7vw, 6.5rem);
            margin-bottom: 24px;
        }

        .hero-title em {
            font-style: normal;
            color: inherit;
            -webkit-text-fill-color: initial;
            -webkit-text-stroke: initial;
        }

        .hero-body {
            font-size: 1.05rem;
            margin-bottom: 36px;
            max-width: 440px;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }


        .badge-item {
            text-align: center;
        }

        .badge-num {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 2.4rem;
            color: var(--accent);
            line-height: 1;
        }

        .badge-label {
            font-size: 0.75rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* ============================================================
           SERVICES STRIP
        ============================================================ */
        .services-strip {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .services-strip .container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            divide-x: 1px solid var(--border);
        }

        .service-item {
            padding: 36px 28px;
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: background var(--transition);
            cursor: default;
        }

        .service-item:last-child {
            border-right: none;
        }

        .service-item:hover {
            background: var(--surface2);
        }

        .service-icon {
            width: 42px;
            height: 42px;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4px;
        }

        .service-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--accent);
        }

        .service-name {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ============================================================
           SECTION HEADER
        ============================================================ */
        .section-header {
            margin-bottom: 60px;
        }

        .section-header .label {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            line-height: 1;
            margin-bottom: 18px;
        }

        .section-title em {
            font-style: normal;
            color: inherit;
        }

        /* ============================================================
           ABOUT
        ============================================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrap {
            position: relative;
        }

        .about-image-wrap img {
            width: 100%;
            border-radius: var(--radius);
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        /* Yellow corner frame */
        .about-image-wrap::before {
            content: '';
            position: absolute;
            top: -16px;
            left: -16px;
            width: 80px;
            height: 100px;
            border-top: 3px solid var(--accent);
            border-left: 3px solid var(--accent);
            z-index: 1;
        }

        .about-image-wrap::after {
            content: '';
            position: absolute;
            bottom: -16px;
            right: -16px;
            width: 80px;
            height: 100px;
            border-bottom: 3px solid var(--accent);
            border-right: 3px solid var(--accent);
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-content p {
            font-size: 0.98rem;
        }

        .pillars {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .pillar {
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pillar-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ============================================================
   CTA BAND
============================================================ */
.cta-band {
    background: var(--surface);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-band::before { display: none; }

.cta-band .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.cta-band-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.1;
}

.cta-band-text #typewriter {
    color: var(--accent);
}

.cta-band-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

        .btn-dark {
            background: #ffffff;
            color: var(--accent);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-dark:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        /* ============================================================
           EXPERTISE CARDS
        ============================================================ */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .expertise-card {
            background: var(--surface);
            backdrop-filter: blur(8px);
            padding: 40px 32px;
            position: relative;
            transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
            overflow: hidden;
        }

        .expertise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-eco));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            box-shadow: var(--glow-eco);
        }

        .expertise-card:hover {
            background: var(--surface2);
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
            transform: translateY(-4px);
        }

        .expertise-card:hover::before {
            transform: scaleX(1);
        }

        .expertise-num {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 900;
            color: rgba(0, 102, 255, 0.1);
            line-height: 1;
            margin-bottom: 16px;
            transition: color var(--transition);
        }

        .expertise-card:hover .expertise-num {
            color: rgba(0, 102, 255, 0.2);
        }

        .expertise-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 24px;
        }

        .expertise-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.35rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .expertise-card p {
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        /* ============================================================
           ZONES SECTION
        ============================================================ */
        .zones-section {
            background: var(--surface);
        }

        .zones-section .section-header {
            text-align: center;
        }

        .zones-section .section-header .label {
            justify-content: center;
        }

        .zones-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .zone-card {
            background: var(--surface);
            backdrop-filter: blur(8px);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
            position: relative;
            overflow: hidden;
        }

        .zone-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-eco), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
            box-shadow: var(--glow);
        }

        .zone-card:hover {
            border-color: var(--accent-eco);
            transform: translateY(-4px);
            box-shadow: var(--glow-eco);
        }

        .zone-card:hover::after {
            transform: scaleX(1);
        }

        .zone-card-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .zone-icon {
            width: 36px;
            height: 36px;
            background: rgba(0, 102, 255, 0.12);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .zone-icon svg {
            width: 16px;
            height: 16px;
            fill: var(--accent);
        }

        .zone-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        .zone-cities {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ============================================================
           CONTACT
        ============================================================ */
        .contact-section {
            background: var(--bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .contact-detail-icon {
            width: 44px;
            height: 44px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-detail-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--accent);
        }

        .contact-detail-text strong {
            display: block;
            font-family: var(--font-display);
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .contact-detail-text a, .contact-detail-text span {
            font-size: 1rem;
            color: var(--text);
            transition: color var(--transition);
        }

        .contact-detail-text a:hover {
            color: var(--accent);
        }

        /* Form */
        .contact-form-wrap {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
        }

        .form-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.6rem;
            text-transform: uppercase;
            margin-bottom: 28px;
            color: var(--text);
            position: relative;
            padding-bottom: 12px;
        }
        
        .form-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .form-group label {
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
            font-family: var(--font-display);
            font-weight: 700;
        }

        select.form-control { cursor: pointer; }
        .form-control {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.12);
            color: var(--text);
            padding: 9px 14px;
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
            transition: all 0.25s ease;
            width: 100%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .form-control::placeholder {
            color: #a0aec0;
        }

        .form-control:focus {
            border-color: var(--accent);
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15), 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        textarea.form-control {
            height: 110px;
            resize: vertical;
            padding-top: 10px;
        }

        /* ============================================================
           FOOTER
        ============================================================ */
        footer {
            background: #ffffff;
            border-top: 1px solid var(--border);
            padding: 60px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 28px;
        }

        .footer-brand img {
            height: 80px;
            margin-bottom: 18px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--muted);
            max-width: 280px;
        }

        .footer-heading {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 18px;
        }

        .footer-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-list li {
            font-size: 0.9rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-list svg {
            width: 14px;
            height: 14px;
            fill: var(--accent);
            flex-shrink: 0;
        }

        .footer-list a {
            color: var(--muted);
            transition: color var(--transition), padding-left var(--transition);
        }

        .footer-list a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            color: #3d4a5c;
        }

        .footer-bottom a {
            color: #3d4a5c;
            transition: color 0.2s;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ============================================================
           SCROLL ANIMATION
        ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        /* ============================================================
           RESPONSIVE
        ============================================================ */
        @media (max-width: 1024px) {
            .hero-slab {
                width: 48%;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .expertise-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }

            .services-strip .container {
                grid-template-columns: 1fr 1fr;
            }

            .service-item:nth-child(2) {
                border-right: none;
            }

            .service-item:nth-child(3) {
                grid-column: span 2;
                border-top: 1px solid var(--border);
                border-right: none;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .zones-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .hero-slab {
                display: none;
            }

            .hero {
                min-height: auto;
                padding: 130px 0 60px;
            }

            .hero-layout {
                flex-direction: column;
            }

            .hero-visual {
                margin-top: 40px;
                justify-content: center;
            }

            .hero-visual img {
                transform: none;
            }

            .cta-band .container {
                flex-direction: column;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-wrap {
                padding: 28px 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .services-strip .container {
                grid-template-columns: 1fr;
            }
            .service-item {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
            .hero-btns {
                flex-direction: column;
            }
            .header-right .btn-outline {
                display: none;
            }
        }

        /* ============================================================
           WA BUBBLE
        ============================================================ */
        .wa-bubble {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
            z-index: 1000;
            transition: transform 0.3s;
        }
        .wa-bubble:hover {
            transform: scale(1.1);
        }

        /* ============================================================
           HORIZONTAL TIMELINE
        ============================================================ */
        .horizontal-timeline-wrap {
            margin: 80px 0 40px 0;
            position: relative;
            width: 100%;
        }

        .ht-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            align-items: center;
        }

        .ht-top {
            margin-bottom: 20px;
        }

        .ht-bottom {
            margin-top: 20px;
        }

        .ht-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ht-image-card {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 280px;
            background: var(--surface);
        }

        .ht-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .ht-image-card:hover img {
            transform: scale(1.05);
        }

        .ht-text-card {
            background: #ffffff;
            padding: 35px 30px;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .ht-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--text);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .ht-desc {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .ht-year {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--accent);
        }

        .ht-divider {
            position: relative;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ht-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: rgba(0,0,0,0.15);
            top: 50%;
            transform: translateY(-50%);
        }

        .ht-dots {
            position: relative;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            justify-items: center;
            z-index: 2;
        }

        .ht-dot {
            width: 20px;
            height: 20px;
            background: var(--text);
            border-radius: 50%;
            border: 4px solid #ffffff;
            box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .ht-dot:hover {
            background: var(--accent);
            transform: scale(1.2);
        }

        @media (max-width: 992px) {
            .ht-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .ht-divider {
                display: none;
            }
            .ht-top, .ht-bottom { margin: 0; }
            .ht-image-card { height: 220px; }
            .horizontal-timeline-wrap {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin: 40px 0 20px 0;
            }
            .ht-bottom .ht-col:nth-child(1) { order: 1; }
            .ht-top .ht-col:nth-child(1) { order: 2; }
            .ht-top .ht-col:nth-child(2) { order: 3; }
            .ht-bottom .ht-col:nth-child(2) { order: 4; }
            .ht-bottom .ht-col:nth-child(3) { order: 5; }
            .ht-top .ht-col:nth-child(3) { order: 6; }
        }

        /* ============================================================
           PROCESS STEPS
        ============================================================ */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .process-step {
            text-align: center;
            position: relative;
            background: var(--surface);
            padding: 20px;
            border-radius: var(--radius);
        }
        .process-step::after {
            content: '>';
            position: absolute;
            right: -15px;
            top: 35px;
            font-weight: 900;
            color: var(--border);
            font-size: 24px;
        }
        .process-step:last-child::after {
            content: none;
        }
        .process-num {
            width: 40px;
            height: 40px;
            background: var(--bg);
            border: 2px solid var(--accent);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 auto 10px;
        }
        .process-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        /* ============================================================
           MAIN NAV
        ============================================================ */
        .main-nav {
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0 auto;
        }
        .main-nav a {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text);
            transition: color var(--transition);
        }
        .main-nav a:hover, .main-nav a.active-link {
            color: var(--accent);
        }

        header .btn-outline {
            border: 1.5px solid rgba(0, 0, 0, 0.3);
            color: var(--text);
        }
        header .btn-outline:hover {
            border-color: var(--accent-eco);
            color: var(--accent-eco);
            box-shadow: var(--glow-eco);
        }

        /* ============================================================
           DROPDOWN & MOBILE MENU
        ============================================================ */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--bg);
            min-width: 260px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: var(--radius);
            top: 100%;
            left: 0;
            border: 1px solid var(--border);
            padding: 10px 0;
        }
        .dropdown-content a {
            color: var(--text);
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            text-transform: none;
            font-size: 0.95rem;
            font-family: var(--font-body);
            font-weight: 500;
            transition: background var(--transition), color var(--transition), padding-left var(--transition);
        }
        .dropdown-content a:hover {
            background-color: var(--surface);
            color: var(--accent-eco);
            padding-left: 25px;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
            padding: 5px;
            margin-left: 10px;
        }

        @media (max-width: 900px) {
            .mobile-menu-btn {
                display: block;
            }
            .social-icons {
                display: none;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background: var(--bg);
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                padding: 20px;
                gap: 20px;
                align-items: flex-start;
                border-top: 1px solid var(--border);
                max-height: calc(100vh - 100px);
                overflow-y: auto;
            }
            .main-nav.active {
                display: flex !important;
            }
            .dropdown-content {
                position: static;
                display: none;
                box-shadow: none;
                border: none;
                border-left: 2px solid var(--accent);
                padding-left: 10px;
                min-width: 100%;
                margin-top: 10px;
            }
        }

        /* ============================================================
           GLOBAL MOBILE RESPONSIVE (About, Services, all pages)
        ============================================================ */
        @media (max-width: 768px) {
            .tagline-bar {
                flex-direction: column !important;
                text-align: center !important;
                gap: 0;
                padding: 0 !important;
            }
            .tagline-bar > div {
                padding: 6px 10px !important;
                text-align: center !important;
                font-size: 0.6rem !important;
                letter-spacing: 1px !important;
            }
            .header-inner { height: 80px; }
            .logo img { height: 60px !important; }
            .hero {
                padding-top: 110px !important;
                min-height: auto !important;
                padding-bottom: 40px !important;
            }
            .slider-bg::after {
                background: linear-gradient(to bottom, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.55) 100%) !important;
            }
            .hero .hero-title,
            .hero h1.display {
                font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
            }
            .about-grid,
            [style*="grid-template-columns: 1fr 1fr"] {
                display: flex !important;
                flex-direction: column !important;
                gap: 30px !important;
            }
            .about-content {
                order: 1 !important;
            }
            .about-image-wrap {
                order: 2 !important;
            }
            .about-image-wrap::before,
            .about-image-wrap::after {
                display: none;
            }
            [style*="grid-template-columns: repeat(4"] {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }
            [style*="font-size: 3.5rem"] {
                font-size: 2.2rem !important;
            }
            [style*="grid-template-columns: repeat(3"] {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            .expertise-card {
                padding: 28px 20px !important;
            }
            .section {
                padding: 50px 0 !important;
            }
            .city-ticker-section {
                padding: 50px 0 !important;
            }
            .city-ticker .city-tag {
                padding: 8px 16px !important;
                font-size: 0.78rem !important;
            }
            .cta-band {
                padding: 36px 0 !important;
            }
            .cta-band .container {
                flex-direction: column !important;
                text-align: center;
                gap: 20px !important;
            }
            .cta-band-text {
                font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
            }
            .wa-bubble {
                width: 50px;
                height: 50px;
                font-size: 26px;
                bottom: 20px;
                right: 20px;
            }
            .btn {
                font-size: 0.82rem;
                padding: 12px 20px;
            }
            .about-content .btn {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .section-title {
                font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
            }
            .section-header {
                margin-bottom: 30px !important;
            }
            .process-grid {
                grid-template-columns: 1fr !important;
            }
            .process-step::after {
                content: 'v';
                right: auto;
                left: 50%;
                bottom: -30px;
                top: auto;
                transform: translateX(-50%);
            }
            .main-nav {
                top: 80px !important;
                max-height: calc(100vh - 80px) !important;
            }
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
        }


