        /*
        ==========================================================================
        *   CONTENTS
        *
        *   1.  CSS Custom Properties & Theming
        *   2.  Global Styles & Resets
        *   3.  Utility & Layout Classes
        *   4.  Components (Button, Card, etc.)
        *   5.  Header & Navigation
        *   6.  Page Sections (Hero, About, Solutions, etc.)
        *   7.  Footer
        *   8.  Animations & Effects
        *   9.  Responsive Design (Media Queries)
        ==========================================================================
        */

        /* 
        *  1. CSS Custom Properties & Theming
        *  ------------------------------------------------- 
        */
        :root {
            --primary-bg: #060606;
            --secondary-bg: #1a1a1a;
            --primary-text: #a9a9a9;
            --secondary-text: #a9a9a9;
            --accent-color: #FFFFFF;
            --accent-color-light: #CCCCCC;
            --border-color: #333333;
            --error-color: #ff4757;
            --success-color: #2ed573;
            
            --header-height: 80px; /* Default, will be updated by JS */
            
            --container-max-width: 1200px;
            --container-narrow-width: 900px;
            
            --section-padding: clamp(60px, 10vw, 100px);
            --card-padding: clamp(30px, 5vw, 40px);
            
            --border-radius-md: 8px;
            --border-radius-lg: 12px;
            /* Unified vertical spacing for form fields */
            --form-space: clamp(14px, 2.5vw, 20px);
        }
        /* --- Services Section (single card) (#our-services) --- */
        #our-services { background-color: var(--secondary-bg); }
        .services-header { text-align: center; }
        .service-figure {
            position: relative;
            width: min(100%, 900px);
            margin: 30px auto 16px auto;
            padding: clamp(12px, 3vw, 24px);
            aspect-ratio: 2.1 / 1; /* fixed canvas proportion */
            min-height: 360px; /* fallback for older browsers */
            overflow: hidden; /* keep inner content clipped to canvas */
            container-type: inline-size; /* enable container queries */
        }
        .serviceArabic-svg-ar { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
        .serviceArabic-svg-ar svg { width: 100%; height: 100%; display: block; }
        [dir="ltr"] .serviceArabic-svg-ar svg { transform: scaleX(-1); transform-origin: center; }
        .service-card-content {
            position: absolute;
            inset: 0; /* fill figure area */
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap; /* never wrap so structure stays fixed */
            gap: clamp(12px, 3vw, 24px);
            padding: clamp(12px, 3vw, 24px);
        }
        [dir="rtl"] .service-card-content .text-container { text-align: right; max-width: clamp(220px, 42%, 420px); }
        [dir="ltr"] .service-card-content .text-container { text-align: left; max-width: clamp(220px, 42%, 420px); }
        .service-card-content h3 { margin-bottom: 10px; }
        .service-card-content .description { color: var(--secondary-text); }
        .services-icon {
            width: 110px; height: 110px;
            display: inline-flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, var(--accent-color-light), var(--accent-color));
            color: var(--primary-bg);
            border-radius: 12px;
            font-size: 2.2rem;
        }
        .services-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 18px;
        }
        .arrow-btn {
            width: 56px; height: 56px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 12px; /* rounded square */
            background: var(--primary-bg);
            color: var(--accent-color);
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 24px rgba(0,0,0,0.22);
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }
        .arrow-btn:hover, .arrow-btn:focus-visible {
            transform: translateY(-2px);
            background: var(--accent-color);
            color: var(--primary-bg);
            border-color: var(--accent-color);
        }

        /* --- Story/About replacement styles --- */
        #about { background-color: var(--primary-bg); }
        .story-behind-div {
            border-radius: 40px;
            background: #000; /* solid black as requested */
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            border: 1px solid var(--border-color);
        }
        .story-behind-container {
            padding: clamp(24px, 4vw, 48px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .story-behind-heading { color: var(--accent-color); font-size: clamp(1.8rem, 4vw, 2.2rem); }
        .story-text .story-behind-text,
        .story-behind-text-arabic { color: var(--secondary-text); font-size: clamp(1.05rem, 2.5vw, 1.25rem); }
        .horse-img { flex: 0 0 33%; max-width: 33%; align-self: stretch; display: flex; }
        .horse-img img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* fill area; may crop */
            object-position: left center; /* prefer left side; crop from right */
            display: block;
            transform: none;
            transform-origin: center;
        }
        /* About photo styling (desktop): larger width, rounded, padded, full image (no border/background) */
        #about .horse-img.about-small { flex: 0 0 45%; max-width: 45%; padding: 14px; border-radius: 24px; background: transparent; border: none; }
        #about .horse-img.about-small img { height: auto; object-fit: contain; transform: none; border-radius: 24px; }
        /* Nudge the desktop About Us image slightly to the right and ensure rounded corners */
        #about .horse-img.about-team img { transform: translateX(10px); border-radius: 24px; }
        /* Desktop-only tweak: reduce team image size by 15% and ensure rounded corners */
        @media (min-width: 993px) {
            #about .horse-img.about-team img.horse-img-style-ar {
                transform: translateX(10px) scale(0.85); /* 15% smaller */
                border-radius: 24px; /* make sure corners are rounded */
                width: 100%;
                height: auto;
            }
        }
        @media (max-width: 992px) {
            .story-behind-div { flex-direction: column; gap: 8px; } /* stack image below text and reduce spacing */
            .horse-img { flex: 0 0 auto; max-width: 100%; width: 100%; display: flex; justify-content: center; }
            .horse-img img { width: 100%; height: auto; max-width: none; object-fit: contain; object-position: center; }
            /* About mobile tweaks */
            #about .horse-img.about-small { flex: 0 0 100%; max-width: 100%; }
            #about .horse-img.about-team { display: none; }
            #about .horse-img.about-team img { width: 100%; object-fit: contain; border-radius: 18px; }
            #about .horse-img.about-meaning { padding: 0; overflow: hidden; border-radius: 24px; height: clamp(200px, 50vw, 420px); }
            #about .horse-img.about-meaning img {
                width: 200%;
                height: 100%;
                max-width: none;
                object-fit: cover; /* fill container */
                object-position: left top; /* start at left; we will shift left by 50% */
                transform: translateX(-50%); /* show only the right 50% of the image */
                transform-origin: center;
                margin: 0;
            }
            /* Reduce space between the text and the meaning image specifically on the second card */
            .desktop-storyBehind > .story-behind-div:nth-of-type(2) .story-behind-container { padding-bottom: 10px; }
            /* Show the inline mobile image under the first paragraph */
            .about-inline-mobile { display: block; width: 100%; padding: 8px; border-radius: 24px; }
        }
        .story-subheading { color: var(--accent-color); margin-top: 18px; margin-bottom: 6px; font-size: clamp(1.1rem, 3vw, 1.3rem); }
        /* wrapper to mimic provided example */
        .desktop-storyBehind {
            max-width: 1280px;
            padding: clamp(24px, 4vw, 48px);
            margin: 0 auto;
        }


        /* 
        *  2. Global Styles & Resets
        *  ------------------------------------------------- 
        */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.menu-open { overflow: hidden; }
        main { display: block; }
        img, svg { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }

        a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover { color: var(--accent-color); }

        h1, h2, h3, h4 {
            line-height: 1.3;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 300; }
        h2 { font-size: clamp(2rem, 7vw, 3.5rem); }
        h3 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
        p { font-size: clamp(1rem, 2.5vw, 1.1rem); margin-bottom: 20px; color: var(--secondary-text); }
        
        /* Accessibility Focus Outline */
        :focus-visible {
            outline: 2px dashed var(--accent-color);
            outline-offset: 4px;
            border-radius: 4px;
        }

        /* 
        *  3. Utility & Layout Classes
        *  ------------------------------------------------- 
        */
        .container {
            width: 90%;
            max-width: var(--container-max-width);
            margin-inline: auto;
        }

        .container-narrow { max-width: var(--container-narrow-width); }

        section {
            padding-block: var(--section-padding);
            position: relative;
            overflow: hidden;
            scroll-margin-top: calc(var(--header-height) + 20px);
        }
        
        /* Grid system for consistent layouts */
        .grid {
            display: grid;
            gap: clamp(20px, 4vw, 30px);
            grid-template-columns: 1fr;
        }

        .section-title {
            text-align: center;
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 90px;
            height: 3px;
            background: linear-gradient(135deg, var(--accent-color-light), var(--accent-color));
            transition: transform 600ms ease;
            transform-origin: center;
        }
        
        .section-subtitle {
            max-width: 800px;
            text-align: center;
            color: var(--secondary-text);
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin: -15px auto 50px auto;
        }

        /* 
        *  4. Components (Button, Card, etc.)
        *  ------------------------------------------------- 
        */
        .cta-button {
            display: flex; /* fixed (non-inline) flex element */
            align-items: center;
            justify-content: center;
            padding: 0 30px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 1rem;
            line-height: 1; /* rely on flex for perfect vertical centering */
            /* removed vertical-align: not applicable for block/flex buttons */
            height: 44px; /* fixed height for exact vertical centering */
            white-space: nowrap; /* keep single line like the submit button */
            cursor: pointer;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
            text-align: center;
        }

        .cta-button:hover, .cta-button:focus-visible {
            background-color: transparent;
            color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(255,255,255,0.05);
        }

        .cta-button.secondary {
            background: transparent;
            border-color: var(--border-color);
            color: var(--primary-text);
        }

        .cta-button.secondary:hover, .cta-button.secondary:focus-visible {
            background: var(--accent-color);
            color: var(--primary-bg);
            border-color: var(--accent-color);
        }

        /* Date input icon: force white calendar in WebKit and use dark UI */
        .form-group input[type="date"] { color-scheme: dark; }
        .form-group input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1) brightness(2) saturate(200%);
            opacity: 1;
            cursor: pointer;
        }

        /* Mobile date input fixes */
        @media (max-width: 576px) {
            .form-group input[type="date"] {
                /* Keep readable and avoid iOS zoom */
                font-size: 16px;
                line-height: 1.2;
                min-height: 48px;
                padding: 14px 18px;
                color-scheme: dark; /* ensure native picker contrasts on dark bg */
                -webkit-appearance: none;
                appearance: none;
            }
            .form-group input[type="date"]::-webkit-calendar-picker-indicator {
                filter: invert(1); /* make calendar icon visible on dark */
                opacity: 0.9;
            }
            .form-group input[type="date"]::-webkit-date-and-time-value {
                text-align: start; /* better alignment for LTR date within RTL UI */
            }
        }
        
        /* Base Card Styling */
        .card {
            background-color: var(--primary-bg);
            padding: var(--card-padding);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--border-color);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.3s ease;
            position: relative;
            will-change: transform;
            transform: translateZ(0);
        }
        .card:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: transparent; /* Prepare for glowing border */
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        /* Enhanced hover border glow using ::before and CSS masking */
        .card::before,
        .why-card::before,
        .metric::before,
        .service-category::before,
        .testimonial-card::before {
            content: '';
            position: absolute;
            inset: -1px; /* Slightly outside to cover original border */
            border-radius: inherit;
            padding: 2px; /* Border thickness */
            background: conic-gradient(from var(--angle), transparent, var(--accent-color), transparent 25%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            animation: rotate-border 5s linear infinite paused;
        }

        /* Ensure these components can host the ::before layer and animate cleanly */
        .why-card, .metric, .service-category, .testimonial-card { position: relative; }

        /* Start the glow on hover and hide base border to avoid double border */
        .card:hover::before,
        .why-card:hover::before,
        .metric:hover::before,
        .service-category:hover::before,
        .testimonial-card:hover::before { opacity: 1; animation-play-state: running; }

        .why-card:hover, .metric:hover, .service-category:hover, .testimonial-card:hover { border-color: transparent; }

        /* Always-on animated border for why-card */
        .why-card::before { opacity: 1; animation-play-state: running; }
        .why-card { border-color: transparent; }

        @media (hover: none) {
            .card::before,
            .why-card::before,
            .metric::before,
            .service-category::before,
            .testimonial-card::before { opacity: 1; animation-play-state: running; }

            .card,
            .why-card,
            .metric,
            .service-category,
            .testimonial-card { border-color: transparent; }
        }
        
        /* 
        *  5. Header & Navigation
        *  ------------------------------------------------- 
        */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--primary-bg);
            border-bottom: 1px solid var(--border-color);
            padding-top: env(safe-area-inset-top);
            transition: background-color 0.3s ease;
        }

        .scroll-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            width: 0;
            background: var(--accent-color);
            z-index: 1002;
            transition: width 0.1s linear;
        }

        .main-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-block: 16px;
            padding-inline: 16px;
            width: 100%;
        }

        .logo-link { display: block; }
        .logo-img { height: 70px; width: auto; display: block; }

        .header-nav { display: none; }
        .header-cta { display: none; }

        .menu-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-color);
            z-index: 1002;
            padding: 10px;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100dvh;
            background: var(--primary-bg);
            z-index: 1001;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .mobile-nav.active { right: 0; }

        /* Close button inside the mobile drawer */
        .mobile-nav .mobile-close {
            position: absolute;
            top: 16px;
            left: 16px; /* RTL: close on the visual left */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--secondary-bg);
            color: var(--accent-color);
            border: 1px solid var(--border-color);
            cursor: pointer;
            z-index: 1002;
        }
        [dir="ltr"] .mobile-nav .mobile-close { right: 16px; left: auto; }
        .mobile-nav .mobile-close:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 2px; }

        .mobile-nav-link {
            font-size: clamp(1.5rem, 5vw, 2rem);
            color: var(--primary-text);
            font-weight: 500;
            padding: 10px 20px;
        }

        /* New Header Layout (requested structure) */
        .header-div { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-content: center; gap: 20px; padding: 0; width: 100%; position: relative; }
        .inner-div { display: flex; align-items: center; gap: 16px; }
        /* In RTL document flow, grid column 1 is visual right, 3 is visual left */
        .right-block { grid-column: 1; justify-self: start; }
        .left-block { grid-column: 3; justify-self: end; }
        .menu-container .menu-toggle-button, .menu-toggle.menu-toggle-button { background: transparent; border: none; color: var(--accent-color); font-size: 1.4rem; padding: 8px; cursor: pointer; }
        .logo-div .logo-img { height: 56px; width: auto; }
        .elements-div { display: flex; gap: 12px; }
        .nav-links .nav-text { color: var(--secondary-text); font-weight: 700; padding: 8px 10px; display: inline-block; transition: color 0.25s ease, transform 0.25s ease; }
        .nav-links .nav-text:hover { color: var(--accent-color); transform: translateY(-2px); }
        .gapping-div { display: flex; align-items: stretch; gap: clamp(8px, 2vw, 16px); }
        .border-left { width: 1px; background: var(--border-color); display: inline-block; align-self: stretch; }
        .lang-toggle { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--accent-color); border: none; cursor: pointer; padding: 6px 10px; border-radius: 6px; }
        .lang-toggle:hover { background: rgba(255,255,255,0.06); }

        /* Mobile adjustments: keep blocks aligned to start */
        @media (max-width: 768px) {
            .main-header-inner {
                justify-content: flex-start;
                padding-inline-start: 0;
                padding-inline-end: 12px;
            }
            .header-div {
                grid-template-columns: 1fr;
                justify-items: flex-start;
                row-gap: 8px;
                width: 100%;
            }
            .inner-div.right-block,
            .right-block {
                justify-self: flex-start;
                justify-content: flex-start;
                width: auto;
            }
            .inner-div,
            .left-block,
            .gapping-div {
                justify-content: flex-start;
                width: 100%;
            }
            .border-left { display: none; }
            .logo-div .logo-img { height: 48px; }
        }

        /* Button variant to match request */
        .header-button.primary-btn {
            display: flex; /* fixed (non-inline) flex element */
            align-items: center;
            justify-content: center;
            padding-inline: clamp(14px, 2.4vw, 24px);
            border-radius: 6px;
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1rem);
            height: 44px;
            line-height: 1; /* rely on flex for perfect vertical centering */
            white-space: nowrap;
            cursor: pointer;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        /* Our Services: image replaces icon */
        .services-icon {
            width: clamp(56px, 10vw, 96px);
            height: clamp(56px, 10vw, 96px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 12px;
        }
        .services-icon .service-photo {
            max-width: 100%;
            max-height: 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Our Services: enlarge and align image w/ text */
        .service-card-content { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: clamp(12px, 3vw, 24px); flex-wrap: nowrap; padding: clamp(12px, 3vw, 24px); transform-origin: center; }
        [dir="rtl"] .service-card-content .text-container { text-align: right; max-width: clamp(220px, 42%, 420px); min-width: 200px; flex: 1 1 42%; transform: translateX(-30px); }
        [dir="ltr"] .service-card-content .text-container { text-align: left; max-width: clamp(220px, 42%, 420px); min-width: 200px; flex: 1 1 42%; transform: translateX(30px); }
        .service-card-content .service-photo { width: clamp(220px, 36vw, 420px); height: auto; max-width: 50%; object-fit: contain; border-radius: 16px; flex: 0 1 50%; }
        .header-button.primary-btn:hover,
        .header-button.primary-btn:focus-visible {
            background-color: transparent;
            color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255,255,255,0.05);
        }

        @media (max-width: 768px) {
            /* Keep structure fixed; just scale down spacing and sizes */
            [dir="rtl"] .service-card-content { flex-direction: row; align-items: center; text-align: right; flex-wrap: nowrap; gap: 12px; }
            [dir="ltr"] .service-card-content { flex-direction: row; align-items: center; text-align: left; flex-wrap: nowrap; gap: 12px; }
            [dir="rtl"] .service-card-content .text-container { max-width: clamp(200px, 48%, 360px); text-align: right; transform: translateX(6px); }
            [dir="ltr"] .service-card-content .text-container { max-width: clamp(200px, 48%, 360px); text-align: left; transform: translateX(-6px); }
            .service-card-content .service-photo { width: min(44vw, 300px); height: auto; }
        }

        /* Container-based scaling to preserve layout while shrinking content */
        @container (max-width: 680px) {
            .service-card-content { gap: 10px; }
            .service-card-content .text-container { min-width: 170px; }
        }
        @container (max-width: 540px) {
            .service-card-content { transform: scale(0.92); }
        }
        @container (max-width: 460px) {
            .service-card-content { transform: scale(0.85); }
        }
        @container (max-width: 400px) {
            .service-card-content { transform: scale(0.78); }
        }

        /* Services Modal (RTL) */
        .services-modal { position: fixed; inset: 0; display: none; align-items: flex-start; justify-content: center; z-index: 1100; height: 100dvh; overflow: hidden; }
        .services-modal.active { display: flex; }
        .services-modal .backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.3s ease; }
        .services-modal.active .backdrop { opacity: 1; }
        .services-modal .modal-shell { position: relative; width: min(100%, 940px); margin: 16px; max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); }
        .services-modal .modal-card { background: #000; border-radius: 40px; padding: 24px; color: var(--primary-text); transform: translateY(20px) scale(0.98); opacity: 0; transition: transform 0.35s ease, opacity 0.3s ease; max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow: auto; -webkit-overflow-scrolling: touch; touch-action: pan-y; overscroll-behavior: contain; }
        .services-modal.active .modal-card { transform: translateY(0) scale(1); opacity: 1; }
        .services-modal .close-btn { display: inline-block; border-radius: 8px; cursor: pointer; background: var(--primary-text); padding: 6px; margin-inline-start: auto; position: sticky; top: 0; z-index: 2; }
        .services-modal .close-btn:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 2px; }
        .services-modal .header-row { display: flex; gap: 16px; justify-content: space-between; align-items: center; margin-top: 12px; flex-wrap: wrap; }
        .services-modal .text-col { display: flex; flex-direction: column; gap: 10px; padding-inline: 8px; padding-top: 8px; text-align: start; }
        .services-modal .img-col { display: flex; justify-content: center; }
        .services-modal .img-col img { width: clamp(260px, 40vw, 380px); height: clamp(260px, 40vw, 380px); object-fit: contain; }
        .services-modal .img-col .img-placeholder { width: clamp(260px, 40vw, 380px); height: clamp(260px, 40vw, 380px); }
        .services-modal h3 { font-size: 1.6rem; font-weight: 800; color: var(--primary-text); }
        .services-modal .pop-desc { max-width: 320px; font-size: 1rem; }
        .services-modal .section-title-sm { font-weight: 800; font-size: 1.4rem; padding-inline: 56px; text-align: start; margin-top: 12px; }
        .services-modal .steps { display: flex; justify-content: center; gap: clamp(16px, 6vw, 64px); flex-wrap: wrap; margin: 24px 0; }
        .services-modal .step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
        .services-modal .step img { display: block; }
        .services-modal .step p { margin-top: 10px; max-width: 220px; }
        .services-modal .step-number {
            display: inline-block;
            font-weight: 900;
            font-size: clamp(1.4rem, 3.2vw, 1.9rem);
            line-height: 1;
            margin-bottom: 10px;
            white-space: nowrap;
            color: var(--accent-color);
        }
        .services-modal .img-placeholder { width: clamp(140px, 24vw, 210px); height: clamp(100px, 18vw, 180px); border-radius: 12px; background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); border: 1px dashed rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--secondary-text); font-size: 0.95rem; }
        .services-modal .step-title { margin-top: 10px; font-weight: 800; color: var(--accent-color); font-size: 1.05rem; }

        /* Render real images cleanly inside placeholders */
        .services-modal .img-placeholder.with-image {
            background: none;
            border: none;
            color: inherit;
        }
        .services-modal .img-placeholder.with-image img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* show full image without cropping */
            border-radius: 12px;
            display: block;
            background: transparent;
        }

        /* Minimal support for inserted utility-like classes */
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .justify-center { justify-content: center; }
        .gap-4 { gap: 1rem; }
        .gap-2 { gap: 0.5rem; }
        .cursor-pointer { cursor: pointer; }
        .text-sm { font-size: 0.875rem; }
        .font-bold { font-weight: 700; }

        /* Make 'استكشف الخدمة' clearly clickable */
        .valet-button {
            color: #ffffff;
            text-decoration-line: underline;
            text-decoration-color: #ffffff;
            text-decoration-thickness: 2px;
            text-underline-offset: 0.5px; /* tightest gap */
            font-weight: 700;
            display: inline-block;
            cursor: pointer;
        }
        .text-container:hover .valet-button,
        .valet-button:hover,
        .valet-button:focus-visible {
            color: var(--accent-color);
            text-decoration-color: var(--accent-color);
            outline: 2px solid transparent; /* remove default */
        }
        .valet-button:focus-visible {
            box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
            border-radius: 4px;
        }

        .center-nav { grid-column: 2; display: none; gap: 24px; align-items: center; justify-content: center; }
        .center-nav .nav-text { color: var(--secondary-text); font-weight: 700; padding: 8px 10px; transition: color 0.25s ease, transform 0.25s ease; }
        .center-nav .nav-text:hover { color: var(--accent-color); transform: translateY(-2px); }
        @media (max-width: 992px) {
            .center-nav { display: none; }
        }
        @media (min-width: 992px) {
            .center-nav { display: flex; }
        }
        /* Keep CTA visible on all screens; adjust spacing automatically via clamp */

        /* 
        *  6. Page Sections
        *  ------------------------------------------------- 
        */

        /* --- Hero Section (#home) --- */
        #home {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: calc(var(--section-padding) + var(--header-height) + env(safe-area-inset-top));
        }

        #home h1 {
            margin-bottom: 20px;
            opacity: 0; /* Initially hidden for JS sizing/animation */
        }
        /* Hero: inline image below subtitle (no border) */
        #home .hero-inline-image {
            display: block;
            margin: 12px auto 8px auto;
            width: clamp(220px, 60vw, 720px);
            border-radius: 24px;
        }
        /* Align hero buttons row and ensure consistent vertical centering */
        .hero-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        /* Make hero image wider on small phones */
        @media (max-width: 576px) {
            #home .hero-inline-image { width: 92vw; }
            /* Minimize padding in Our Services on small phones */
            #our-services { padding-block: 36px; }
            #our-services .service-figure { padding: 8px; margin: 16px auto 8px auto; }
            #our-services .service-card-content { padding: 8px; gap: 10px; }
        }
        /* About: show full image for the team photo on desktop and prevent flipping */
        .horse-img img.about-image { height: auto; object-fit: contain; transform: none; border-radius: 24px; }
        /* Inline mobile-only About image: visible on phones, hidden on desktop */
        @media (min-width: 993px) { .about-inline-mobile { display: none; } }
        
        /* About Meaning image (desktop): anchor to top and crop bottom portion */
        #about .horse-img.about-meaning { overflow: hidden; }
        #about .horse-img.about-meaning img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left top; /* start from left side */
            transform: none; /* do not flip */
            transform-origin: center;
        }
        
        .hero-car-viewport {
            overflow: hidden;
            height: clamp(220px, 48vh, 520px);
            margin-block: 18px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            will-change: transform;
        }
        
        /* IMPROVED: CSS for new motion effect */
        .hero-car {
            height: 100%;
            width: auto;
            max-width: min(95vw, 1100px);
            margin-inline: auto;
            filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
            opacity: 0.9;
            /* Static position: animation disabled */
            transform: none;
            will-change: auto;
            transition: none; 
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        /* --- About Section (#about) --- */
        #about p {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        /* --- Solutions Section (#solutions) --- */
        #solutions { background-color: var(--secondary-bg); }
        #solutions .solution-card {
            position: relative;
            overflow: hidden;
        }
        [dir="rtl"] #solutions .solution-card { text-align: right; }
        [dir="ltr"] #solutions .solution-card { text-align: left; }
        .solution-card h3 { color: var(--accent-color); }
        .solution-card-icon {
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.08;
            font-size: 10rem;
            color: var(--accent-color);
            transition: opacity 0.3s ease, transform 0.4s ease;
        }
        .solution-card:hover .solution-card-icon {
            opacity: 0.12;
            transform: translateY(-50%) rotate(-10deg) scale(1.1);
        }
        .solution-card > * { position: relative; z-index: 2; }

        /* --- Why Us Section (#why-us) --- */
        #why-us { background-color: var(--primary-bg); }
        [dir="rtl"] #why-us .container > p { text-align: right; }
        [dir="ltr"] #why-us .container > p { text-align: center; }
        .why-card, .metric {
            background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--border-radius-lg);
            text-align: center;
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
            backdrop-filter: saturate(140%) blur(6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            will-change: transform;
            transform: translateZ(0);
        }
        .why-card:hover, .metric:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: transparent; /* allow glowing rim to replace base border */
            box-shadow: 0 16px 35px rgba(0,0,0,0.25);
        }
        .why-card { padding: var(--card-padding); }
        .why-icon { font-size: 2.2rem; color: var(--accent-color); margin-bottom: 12px; }
        
        .metrics {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: center;
        }
        .metric { padding: 25px; }
        /* Keep transform consistent with unified card hover */
        .metric:hover { transform: translateY(-12px) scale(1.03); }
        .metric .value { font-size: clamp(2rem, 6vw, 2.6rem); color: var(--accent-color); font-weight: 800; }
        .metric .label { color: var(--secondary-text); font-size: 0.95rem; }

        /* --- Comprehensive Services Section (#valet-services) --- */
        #valet-services { background-color: var(--secondary-bg); }
        [dir="rtl"] #valet-services .container > p { text-align: right; }
        [dir="ltr"] #valet-services .container > p { text-align: center; }
        .service-category {
            background: var(--primary-bg);
            padding: var(--card-padding);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--border-color);
            text-align: center;
            position: relative;
            transition: transform 0.35s ease, border-color 0.35s ease;
            will-change: transform;
            transform: translateZ(0);
        }
        .service-category:hover { transform: translateY(-10px) scale(1.02); border-color: transparent; }
        .category-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color-light), var(--accent-color));
            border-radius: 8px; /* square with slight rounding */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-bg);
            transform: rotate(45deg); /* diamond by default */
            transition: transform 0.35s ease;
        }
        .category-icon i { transform: rotate(-45deg); transition: transform 0.35s ease; }
        .service-category:hover .category-icon { transform: rotate(0deg); }
        .service-category:hover .category-icon i { transform: rotate(0deg); }
        
        /* --- Testimonials Section (#testimonials) --- */
        #testimonials { background-color: var(--primary-bg); }
        .testimonial-card {
            background: var(--secondary-bg);
            padding: 30px;
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.35s ease, border-color 0.35s ease;
            position: relative;
            will-change: transform;
            transform: translateZ(0);
        }
        .testimonial-card:hover { transform: translateY(-10px) scale(1.02); border-color: transparent; }
        .stars { display: flex; gap: 5px; margin-bottom: 15px; color: #f9ca24; }
        .testimonial-content p { font-style: italic; }
        
        /* Horizontal marquee scroller */
        .scroller { width: 100%; overflow: hidden; padding-block: 20px; }
        .scroller[data-animated="true"] .scroller-inner {
            display: flex;
            align-items: stretch; /* Make cards same height */
            flex-wrap: nowrap; /* Prevent wrapping to ensure seamless loop */
            gap: 24px;
            width: max-content;
            will-change: transform;
            transform: translateZ(0); /* Force GPU compositing for smoother animation */
            animation: scroll-left var(--animation-duration, 40s) linear infinite;
        }
        .scroller:hover .scroller-inner { animation-play-state: paused; }
        .testimonial-card { flex: 0 0 360px; max-width: 360px; }
        
        /* --- Contact/Booking Section (#contact-info) --- */
        #contact-info { background-color: var(--secondary-bg); }
        .booking-form-container {
            background: var(--primary-bg);
            padding: clamp(28px, 4vw, 48px);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--border-color);
        }
        /* Prevent card hover lift in contact/booking section */
        #contact-info .why-card {
            transform: none;
            box-shadow: none;
        }
        #contact-info .why-card:hover {
            transform: none;
            box-shadow: none;
        }
        .grid-form {
            display: grid;
            gap: var(--form-space);
            margin-bottom: var(--form-space); /* equal spacing below the grid block */
        }
        /* Inside the grid, let gap control spacing, avoid double margins */
        .grid-form .form-group { margin-bottom: 0; }
        .form-group { position: relative; margin-bottom: var(--form-space); }
        .form-group label {
            display: block;
            margin-bottom: var(--form-space);
            font-weight: 500;
        }
        [dir="rtl"] #contact-info .form-group label { text-align: right; }
        [dir="ltr"] #contact-info .form-group label { text-align: left; }
        .form-group.form-spaced { margin-top: 0; padding-top: 10px; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 16px 18px;
            min-height: 48px;
            background: var(--secondary-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: 'Tajawal', sans-serif;
            font-size: 1rem;
            color: var(--primary-text);
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        
        .error-message { color: var(--error-color); font-size: 0.85rem; padding-top: 6px; display: none; }
        .submit-btn { width: 100%; font-size: 1.1rem; padding: 14px 22px; margin-top: 0; }
        .submit-btn[disabled] { opacity: 0.7; cursor: wait; }

        /* Remove trailing margin after last field for clean bottom spacing */
        .booking-form-container .form-group:last-child { margin-bottom: 0; }

        .success-container { text-align: center; padding: 48px 24px; display: none; }
        .success-container .cta-button { margin-inline: auto; }
        .success-container .success-icon {
            width: 70px; height: 70px;
            border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            border: 1px solid var(--border-color);
            color: var(--accent-color);
            font-size: 2.2rem; font-weight: 800;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 6px 26px rgba(255,255,255,0.08);
            position: relative;
            animation: pop-in 0.5s ease-out;
        }
        
        /* --- Clients Section (#clients) --- */
        #clients .scroller { position: relative; }
        #clients .scroller-inner { gap: 60px; }
        /* Visual overlays to fade edges (replaces CSS mask) */
        #clients .marquee-overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            width: clamp(40px, 10vw, 120px);
            pointer-events: none;
            z-index: 2;
        }
        #clients .marquee-overlay.left { left: 0; background: linear-gradient(to right, var(--primary-bg), transparent); }
        #clients .marquee-overlay.right { right: 0; background: linear-gradient(to left, var(--primary-bg), transparent); }
        .client-logo {
            height: 90px;
            width: auto;
            object-fit: contain;
            opacity: 1;
            flex-shrink: 0;
            /* Silver look on dark background */
            filter: grayscale(1) brightness(1.45) contrast(0.95);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .client-logo:hover { transform: scale(1.05); }

        /* --- FAQ Section (#faq) --- */
        #faq { background-color: var(--primary-bg); }
        .faq-list { display: flex; flex-direction: column; gap: 10px; }
        .faq-item {
            background: var(--secondary-bg);
            border-radius: var(--border-radius-md);
            border: 1px solid var(--border-color);
            transition: margin 0.2s ease;
        }
        .faq-item[open] { margin-bottom: 10px; }
        .faq-item summary {
            padding: 18px 20px;
            font-weight: 700;
            cursor: pointer;
            list-style: none; /* Hide default marker */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary .faq-icon { transition: transform 0.2s ease; }
        .faq-item[open] summary .faq-icon { transform: rotate(180deg); }
        .faq-answer { padding: 0 20px 20px; }

        /* 
        *  7. Footer
        *  ------------------------------------------------- 
        */
        .main-footer {
            background-color: var(--primary-bg);
            color: var(--primary-text);
            padding: clamp(60px, 8vw, 100px) 0 30px;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-section h4 { font-size: 1.2rem; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { text-decoration: underline; }

        .socials { display: flex; gap: 10px; flex-wrap: wrap; }
        .social-link {
            display: inline-flex; align-items: center; justify-content: center;
            width: 48px; height: 48px;
            border-radius: var(--border-radius-md);
            background: rgba(255,255,255,0.06);
            color: var(--accent-color);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .social-link:hover { background: var(--accent-color); color: var(--primary-bg); transform: translateY(-3px); }
        /* Social icon color behavior */
        .socials .social-link i,
        .socials .social-link svg {
            color: #999;
            fill: #999;
            transition: color 0.3s ease, fill 0.3s ease;
            font-size: 20px;
            width: 20px;
            height: 20px;
        }
        .socials .social-link:hover i,
        .socials .social-link:focus-visible i { color: #000; }
        .socials .social-link:hover svg,
        .socials .social-link:focus-visible svg { fill: #000; }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
        }

        /* 
        *  8. Animations & Effects
        *  ------------------------------------------------- 
        */
        
        /* General section entrance animation */
        body.enable-animations .animated-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        body.enable-animations .animated-section.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Animate section title underline when section becomes visible */
        body.enable-animations .animated-section.animate .section-title::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Word-by-word reveal for headings */
        .words-reveal-target .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 600ms ease, transform 600ms ease;
            transition-delay: calc(var(--wi, 0) * 90ms);
            will-change: opacity, transform;
        }
        body.enable-animations .animated-section.animate .words-reveal-target .word {
            opacity: 1;
            transform: none;
        }
        
        .whatsapp-fab {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 999;
            background-color: #111111; /* default: black button */
            color: #ffffff; /* default: white icon */
            border-radius: 50%;
            border: 2px solid #ffffff; /* white ring on black */
            box-shadow: 0 8px 24px rgba(0,0,0,0.22);
            width: 58px;
            height: 58px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: fixed;
            will-change: transform;
            animation: whatsapp-bob 3.2s ease-in-out infinite;
        }
        .whatsapp-fab:hover,
        .whatsapp-fab:focus-visible {
            transform: translateY(-2px) scale(1.06);
            background-color: #ffffff; /* hover: white button */
            color: #111111; /* hover: black icon */
            border-color: #111111; /* hover: black ring */
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
            outline: none;
        }
        .whatsapp-fab::after {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.45); /* white breathing ring */
            opacity: 0;
            transform: scale(0.8);
            animation: whatsapp-pulse 2.4s ease-out infinite;
            pointer-events: none;
        }

        /* --- Motion & Keyframe Animations --- */
        @keyframes scroll-left {
            /* Move exactly a segment of the track to ensure a seamless loop with duplicated content */
            to { transform: translate3d(var(--loop-distance, -50%), 0, 0); }
        }
        
        @keyframes pop-in {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* WhatsApp attention animations */
        @keyframes whatsapp-bob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
        @keyframes whatsapp-pulse {
            0% { opacity: 0; transform: scale(0.8); }
            40% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(1.4); }
        }

        @property --angle {
          syntax: '<angle>';
          inherits: false;
          initial-value: 0deg;
        }
        @keyframes rotate-border {
          to { --angle: 360deg; }
        }
        
        /* --- [CREATIVE UPDATE] Custom Cursor & Spotlight --- */
        @media (pointer: fine) {
          body { cursor: auto; }
          /* When modal is open, restore system cursor and hide custom cursor elements */
          body.modal-open { cursor: auto; }
          body.modal-open #cursor-dot,
          body.modal-open #cursor-circle,
          body.modal-open #spotlight { display: none; }
          #cursor-dot, #cursor-circle, #spotlight { pointer-events: none; }

          #cursor-dot {
            position: fixed;
            top: 0; left: 0;
            width: 6px; height: 6px;
            background: var(--accent-color);
            border-radius: 50%;
            z-index: 1100;
            transform: translate(-50%, -50%);
            transition: transform 160ms ease, opacity 160ms ease;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
            will-change: transform, left, top;
          }

          #cursor-circle {
            position: fixed;
            top: 0; left: 0;
            width: 80px; height: 80px;
            border: 1px solid rgba(255,255,255,0.35);
            border-radius: 50%;
            z-index: 1099;
            opacity: 0.75;
            transform: translate(-50%, -50%);
            transition: width 300ms ease, height 300ms ease, opacity 260ms ease;
            will-change: transform, width, height, left, top;
          }

          body.cursor-hover #cursor-dot { transform: translate(-50%, -50%) scale(1.4); }
          body.cursor-hover #cursor-circle { width: 115px; height: 115px; opacity: 0.9; }

          #spotlight {
            position: fixed;
            inset: 0;
            z-index: 998;
            background: radial-gradient(
              120px 120px at var(--sx, -200px) var(--sy, -200px),
              rgba(255,255,255,0.25) 0%,
              rgba(255,255,255,0.07) 35%,
              rgba(255,255,255,0) 70%
            );
            mix-blend-mode: screen;
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
          }

          body.cursor-hover #spotlight {
            background: radial-gradient(
              84px 84px at var(--sx, -200px) var(--sy, -200px),
              rgba(255,255,255,0.18) 0%,
              rgba(255,255,255,0.05) 45%,
              rgba(255,255,255,0) 70%
            );
            opacity: 1;
          }

          body.menu-open #cursor-dot,
          body.menu-open #cursor-circle,
          body.menu-open #spotlight {
            display: none;
          }
        }


/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroller[data-animated="true"] .scroller-inner { animation: none !important; }
  #cursor-dot, #cursor-circle, #spotlight { display: none !important; }
}

@media (min-width: 576px) {
    .grid-form { grid-template-columns: 1fr 1fr; }
    #solutions .grid, #why-us .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    #valet-services .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .metrics { grid-template-columns: repeat(4, 1fr); }
    .footer-content { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

        @media (max-width: 768px) {
            .testimonial-card { flex-basis: 260px; max-width: 260px; }
            .client-logo { height: 60px; }
            #clients .scroller-inner { gap: 40px; }
        }

        @media (min-width: 992px) {
            .menu-toggle { display: none; }
            .header-nav { display: flex; gap: 35px; align-items: center; }
            .header-cta { display: inline-flex; }
            
            .nav-link {
                font-weight: 500;
                font-size: 1rem;
                position: relative;
                padding-bottom: 5px;
            }
        }
