        /* ======================================== */
        /* 1. ROOT & THEME VARIABLES              */
        /* ======================================== */
        :root {
            /* Color Palette - HIGH CONTRAST LIGHT THEME */
            --primary: #0D47A1;
            --secondary: #1976D2;
            --accent: #64B5F6;
            --dark: #1A2A3A;
            --light: #F5F7FA;
            --gray: #DDE2E6;
            --steel: #495057;
            --metal: #8A9AAB;
            --bg-soft: #F8F9FA;
            --white-rgb: 255, 255, 255;

            /* Theming Variables (Light Mode) */
            --header-bg: rgba(var(--white-rgb), 0.85);
            --header-text: var(--dark);
            --body-bg: #E6EAED;
            --text-color: #212529;
            --card-bg: #FFFFFF;
            --section-bg-alt: #FFFFFF;
            --shadow-color: rgba(13, 71, 161, 0.1);
            --shadow-color-hover: rgba(13, 71, 161, 0.2);
            --grid-line-color: rgba(13, 71, 161, 0.07);
            --input-bg: #FFFFFF;
            --input-border: #ced4da;

            /* Typography */
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

            /* Effects */
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body.dark-mode {
            /* Theming Variables (Dark Mode) */
            --header-bg: rgba(17, 24, 39, 0.85);
            --header-text: #FFFFFF;
            --text-color: #E6EDF5;
            --body-bg: #111827;
            --gray: #1f2937;
            --steel: #9ca3af;
            --metal: #6b7280;
            --card-bg: #1F2937;
            --section-bg-alt: #111827;
            --shadow-color: rgba(0, 0, 0, 0.3);
            --shadow-color-hover: rgba(0, 0, 0, 0.5);
            --grid-line-color: rgba(255, 255, 255, 0.06);
            --input-bg: #2b3548;
            --input-border: #4b5563;
            --primary: #42A5F5;
            --secondary: #64B5F6;
        }

        /* ======================================== */
        /* 2. BASE & RESET STYLES                 */
        /* ======================================== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--body-bg);
            overflow-x: hidden;
            min-height: 100vh;
            scroll-behavior: smooth;
            transition: background-color 0.4s ease, color 0.4s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ======================================== */
        /* 3. UTILITY CLASSES                     */
        /* ======================================== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .reveal-on-scroll.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .underline-title {
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .underline-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }

        /* ======================================== */
        /* 4. GLOBAL COMPONENTS                   */
        /* ======================================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--secondary);
            z-index: 900;
            width: 0%;
            transition: width 0.2s ease-out;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .back-to-top .icon {
            width: 1.5rem;
            height: 1.5rem;
            flex-shrink: 0;
        }

        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .btn {
            padding: 1rem 2.2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px var(--shadow-color);
            gap: 0.75rem;
        }

        .btn .icon {
            width: 1.2em;
            height: 1.2em;
            flex-shrink: 0;
        }

        .btn:hover {
            box-shadow: 0 8px 20px var(--shadow-color-hover);
            transform: translateY(-5px);
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, var(--primary), #002171);
        }

        .banner .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .banner .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            padding-bottom: 1rem;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-header p {
            color: var(--steel);
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* ======================================== */
        /* 5. HEADER & NAVIGATION                 */
        /* ======================================== */
        header {
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.8rem 5%;
            /* This padding accounts for the mobile status bar/notch area */
            padding-top: calc(0.8rem + env(safe-area-inset-top));
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 800;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid var(--gray);
            transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
        }

        header.scrolled {
            padding-top: calc(0.6rem + env(safe-area-inset-top));
            padding-bottom: 0.6rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .logo img {
            height: 48px;
            transition: height 0.3s ease;
        }

        .logo span {
            color: var(--header-text);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: 1px;
            transition: font-size 0.3s ease;
        }

        header.scrolled .logo img {
            height: 42px;
        }

        header.scrolled .logo span {
            font-size: 1.4rem;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 0.8rem;
        }

        nav ul li a {
            color: var(--header-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 1rem;
            transition: var(--transition);
            position: relative;
            border-radius: 4px;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--secondary);
            transition: var(--transition);
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--secondary);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .search-btn,
        .menu-toggle,
        .theme-toggle {
            background: none;
            border: none;
            color: var(--header-text);
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn .icon,
        .menu-toggle .icon,
        .theme-toggle .icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
        }

        .theme-toggle .fas {
            width: 1.2em;
            height: 1em;
            font-size: 1.1rem;
            text-align: center;
            line-height: 1;
        }

        .search-btn:hover,
        .menu-toggle:hover,
        .theme-toggle:hover {
            background: var(--light);
            color: var(--secondary);
        }

        body.dark-mode .search-btn:hover,
        body.dark-mode .menu-toggle:hover,
        body.dark-mode .theme-toggle:hover {
            background: var(--gray);
        }

        .menu-toggle {
            display: none;
        }

        /* ======================================== */
        /* 6. BANNER SECTION                      */
        /* ======================================== */
        .banner {
            /* Uses the JS-calculated viewport height to avoid issues with mobile browser bars */
            height: calc(var(--vh, 1vh) * 100);
            min-height: 500px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            color: white;
        }

        .banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(13, 71, 161, 0.7) 40%, rgba(25, 118, 210, 0.4));
            z-index: 1;
        }

        .banner-background-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
            position: relative;
            z-index: 2;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out forwards;
        }

        .banner h1 {
            font-family: var(--font-heading);
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            max-width: 800px;
            line-height: 1.2;
        }

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

        .banner p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 0 2.5rem;
            font-weight: 300;
            opacity: 0.9;
            line-height: 1.7;
        }

        .banner-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        /* ======================================== */
        /* 6.5 INTEGRATED BANNER SEARCH           */
        /* ======================================== */
        .banner-search-integrated {
            margin-top: 2.5rem;
            max-width: 700px;
        }

        .banner-search-box {
            position: relative;
            width: 100%;
        }

        .banner-search-form {
            width: 100%;
        }

        .banner-search-icon {
            color: var(--primary);
            width: 1.2rem;
            height: 1.2rem;
            flex-shrink: 0;
            display: flex !important;
            margin-left: 0.75rem;
        }

        .banner-search-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 0.4rem;
            border: 2px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            gap: 0.5rem;
        }

        .banner-search-input-wrapper:focus-within {
            border-color: var(--secondary);
            box-shadow: 0 12px 40px rgba(25, 118, 210, 0.3);
            transform: translateY(-2px);
        }

        .banner-search-icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            color: var(--primary);
            width: 1.2rem;
            height: 1.2rem;
            pointer-events: none;
            z-index: 10;
            flex-shrink: 0;
            display: flex !important;
        }

        .banner-search-input {
            width: 100%;
            padding: 1rem 3.5rem 1rem 0.5rem;
            font-size: 1.05rem;
            font-family: var(--font-body);
            border: none;
            border-radius: 10px;
            background: transparent;
            color: var(--text-color);
            outline: none;
        }

        .banner-search-input::placeholder {
            color: var(--metal);
        }

        .banner-search-submit-btn {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            border: none;
            border-radius: 8px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .banner-search-submit-btn svg {
            width: 2rem;
            height: 2rem;
            fill: white;
            flex-shrink: 0;
        }

        .banner-search-submit-btn svg path {
            fill: white;
        }

        .banner-search-submit-btn:hover {
            background: linear-gradient(45deg, var(--primary), #002171);
            transform: scale(1.05);
            box-shadow: 0 4px 16px rgba(13, 71, 161, 0.4);
        }

        .banner-search-hints {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
            font-size: 0.85rem;
        }

        .banner-search-hints span {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }

        .banner-search-hint-tag {
            color: white;
            text-decoration: none;
            padding: 0.4rem 0.85rem;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .banner-search-hint-tag:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* Responsive adjustments for banner search */
        @media (max-width: 768px) {
            .banner-search-integrated {
                max-width: 100%;
            }

            .banner-search-input {
                font-size: 1rem;
                padding: 0.9rem 3rem 0.9rem 3rem;
            }

            .banner-search-submit-btn {
                width: 44px;
                height: 44px;
            }

            .banner-search-hints {
                justify-content: center;
            }

            .banner-search-hints span {
                width: 100%;
                text-align: center;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .banner-search-input-wrapper {
                padding: 0.3rem;
            }

            .banner-search-input {
                font-size: 0.95rem;
                padding: 0.8rem 2.75rem 0.8rem 2.75rem;
            }

            .banner-search-submit-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* ======================================== */
        /* 7. PRODUCT CATEGORIES SECTION          */
        /* ======================================== */
        .product-categories {
            padding: 6rem 5%;
            background-color: var(--body-bg);
            background-image:
                linear-gradient(var(--grid-line-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-line-color) 1px, transparent 1px);
            background-size: 30px 30px;
            border-top: 1px solid var(--gray);
            border-bottom: 1px solid var(--gray);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-link-wrapper {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .category-card {
            background: var(--card-bg);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 6px 20px var(--shadow-color);
            transition: var(--transition);
            border: 1px solid var(--gray);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .category-link-wrapper:hover .category-card {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px var(--shadow-color-hover);
            border-color: var(--secondary);
        }

        .card-image {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--bg-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-bottom: 1px solid var(--gray);
            position: relative;
        }

        body.dark-mode .card-image {
            background: #252e3d;
        }

        .card-image img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: transform 0.4s ease-out;
        }

        .category-link-wrapper:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 1.5rem 1.8rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .card-content h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin: 0 0 0.75rem 0;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .category-link-wrapper:hover .card-content h3 {
            color: var(--secondary);
        }

        .card-content p {
            color: var(--steel);
            line-height: 1.6;
            font-size: 1rem;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        .card-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-cta i,
        .card-cta .icon {
            width: 1.2rem;
            height: 1.2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            color: var(--secondary);
        }

        .category-link-wrapper:hover .card-cta i,
        .category-link-wrapper:hover .card-cta .icon {
            opacity: 1;
            transform: translateX(0);
        }

        /* ======================================== */
        /* 8. 'WHY US' SECTION                    */
        /* ======================================== */
        .why-us-section {
            padding: 6rem 5%;
            background: var(--section-bg-alt);
            overflow: hidden;
        }

        .why-us-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: stretch;
            /* Make columns equal height */
        }

        .why-us-image-wrapper {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 15px 40px var(--shadow-color-hover);
            min-height: 350px;
        }

        .why-us-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .why-us-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .why-us-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .why-us-content h2 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .why-us-content .subtitle {
            font-size: 1.2rem;
            color: var(--steel);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .value-props-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .value-prop-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .value-prop-icon {
            color: var(--secondary);
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: transparent;
            border: 1px solid var(--gray);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .value-prop-icon .icon {
            width: 2rem;
            height: 2rem;
            flex-shrink: 0;
        }

        .value-prop-item:hover .value-prop-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .value-prop-text h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--text-color);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .value-prop-text p {
            color: var(--steel);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ======================================== */
        /* 9. TEAM SECTION                        */
        /* ======================================== */
        .team-section {
            padding: 6rem 5%;
            background: var(--body-bg);
            border-top: 1px solid var(--gray);
            border-bottom: 1px solid var(--gray);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-card {
            background: var(--card-bg);
            border-radius: 8px;
            box-shadow: 0 6px 20px var(--shadow-color);
            transition: var(--transition);
            text-align: center;
            padding: 2.5rem 1.5rem;
            border: 1px solid var(--gray);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px var(--shadow-color-hover);
        }

        .team-card-image {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--secondary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .team-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card-name {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .team-card-title {
            color: var(--steel);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .team-social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .team-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--light);
            border-radius: 50%;
            color: var(--primary);
            transition: var(--transition);
            text-decoration: none;
        }

        .team-social-links a .icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
        }

        .team-social-links a:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        body.dark-mode .team-social-links a {
            background: var(--gray);
        }

        /* ======================================== */
        /* 10. ABOUT US SECTION                   */
        /* ======================================== */
        .about-us {
            padding: 6rem 5%;
            background: var(--section-bg-alt);
            border-top: 1px solid var(--gray);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 1400px;
            margin: 0 auto;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 992px) {
            .about-container {
                grid-template-columns: 1fr 1.2fr;
            }
        }

        .about-image-wrapper {
            min-width: 300px;
        }

        .about-content {
            min-width: 300px;
        }

        .about-image {
            width: 100%;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 15px 35px var(--shadow-color-hover);
            /* Removed fixed height, using aspect-ratio for responsiveness */
            aspect-ratio: 1 / 1;
            max-height: 500px;
        }

        @media (min-width: 992px) {
            .about-image {
                aspect-ratio: 4 / 5;
            }
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 2rem;
            position: relative;
            text-transform: uppercase;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 0;
        }

        .about-subtitle {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 1.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .about-text {
            color: var(--steel);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .stat-card {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 6px;
            text-align: center;
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
            border: 1px solid var(--gray);
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px var(--shadow-color-hover);
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .stat-text {
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ======================================== */
        /* 10.5. COMPANY VIDEO SECTION              */
        /* ======================================== */
        .company-video-section {
            padding: 6rem 5%;
            /* This background matches the 'About Us' section */
            background: var(--section-bg-alt);
            border-top: 1px solid var(--gray);
        }

        .video-container {
            max-width: 1200px;
            /* Limits the max video width */
            margin: 0 auto;
        }

        .video-wrapper-16-9 {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            /* Matches the border radius of your cards */
            border: 1px solid var(--gray);
            box-shadow: 0 10px 30px var(--shadow-color-hover);
            /* Uses your existing shadow variable */
        }

        .video-wrapper-16-9 iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-caption {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 1rem;
            color: var(--steel);
            font-style: italic;
        }

        /* ======================================== */
        /* 11. FAQ SECTION                        */
        /* ======================================== */
        .faq-section {
            padding: 6rem 5%;
            background: var(--body-bg);
            border-top: 1px solid var(--gray);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--gray);
            border-radius: 6px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-color);
            transition: var(--transition);
            list-style: none;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question:hover {
            color: var(--secondary);
        }

        .faq-question i,
        .faq-question .icon {
            width: 1rem;
            height: 1rem;
            color: var(--secondary);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            flex-shrink: 0;
        }

        .faq-item[open] .faq-question i,
        .faq-item[open] .faq-question .icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--steel);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* ======================================== */
        /* 12. CONTACT SECTION                    */
        /* ======================================== */
        .contact-section {
            padding: 6rem 5%;
            background: var(--section-bg-alt);
            border-top: 1px solid var(--gray);
            border-bottom: 1px solid var(--gray);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: flex-start;
        }

        .contact-form-wrapper h3,
        .contact-info-wrapper h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            font-family: var(--font-body);
            border: 1px solid var(--input-border);
            border-radius: 4px;
            transition: var(--transition);
            background: var(--input-bg);
            color: var(--text-color);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.2);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
        }

        .contact-form-status {
            margin-top: 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            background: #e8f5e9;
            color: #1b5e20;
            border: 1px solid #a5d6a7;
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-form-status-error {
            background: #ffebee;
            color: #b71c1c;
            border-color: #ef9a9a;
        }

        .contact-info-list {
            list-style: none;
        }

        .contact-info-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            gap: 1rem;
        }

        .contact-info-list i,
        .contact-info-list .icon {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--secondary);
            background: #FFFFFF;
            border: 1px solid var(--gray);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Dark mode override for contact icons */
        body.dark-mode .contact-info-list i,
        body.dark-mode .contact-info-list .icon {
            background: var(--gray);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .contact-info-list a,
        .contact-info-list span {
            color: var(--steel);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-list a:hover {
            color: var(--secondary);
        }

        /* ======================================== */
        /* 13. FOOTER                             */
        /* ======================================== */
        footer {
            background: var(--dark);
            color: white;
            padding: 5rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 3rem;
        }

        .footer-column h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }

        .footer-column p {
            color: #d1e0f0;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #d1e0f0;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-column .footer-links li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-column .footer-links svg {
            color: var(--secondary);
            flex-shrink: 0;
            width: 1em;
            height: 1em;
            margin-top: 4px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: white;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a .icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom p {
            color: #aabfd0;
            font-size: 0.95rem;
        }

        /* ======================================== */
        /* 14. OVERLAYS (DRAWER, SEARCH)          */
        /* ======================================== */
        .drawer {
            position: fixed;
            top: 0;
            right: -350px;
            width: 350px;
            max-width: 90%;
            height: 100%;
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1100;
            transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
        }

        .drawer.open {
            right: 0;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray);
        }

        body.dark-mode .drawer-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .drawer-header h3 {
            color: var(--header-text);
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-drawer-btn {
            background: none;
            border: none;
            color: var(--header-text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-drawer-btn:hover {
            color: var(--secondary);
            transform: rotate(90deg);
        }

        .drawer-content {
            padding: 1.5rem;
            overflow-y: auto;
            flex-grow: 1;
            -webkit-overflow-scrolling: touch;
        }

        .drawer-links {
            list-style: none;
        }

        .drawer-links li {
            margin-bottom: 0.8rem;
        }

        .drawer-links a {
            color: var(--steel);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--gray);
        }

        body.dark-mode .drawer-links a {
            color: #E6EDF5;
            /* Ensure good contrast in dark mode */
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .drawer-links a:hover {
            color: var(--secondary);
            transform: translateX(10px);
        }

        .drawer-links a i,
        .drawer-links a .icon {
            width: 1.25em;
            height: 1.25em;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(3px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Search Overlay */
        .search-overlay {
            position: fixed;
            inset: 0;
            background: rgba(var(--white-rgb), 0.98);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 15vh;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        body.dark-mode .search-overlay {
            background: rgba(17, 24, 39, 0.98);
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-container {
            position: relative;
            width: 90%;
            max-width: 800px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .search-overlay.active .search-container {
            opacity: 1;
            transform: translateY(0);
        }

        .search-overlay input {
            width: 100%;
            padding: 20px 60px 20px 30px;
            font-size: 1.8rem;
            border: none;
            border-bottom: 3px solid var(--secondary);
            background: transparent;
            color: var(--text-color);
            outline: none;
            font-family: var(--font-heading);
        }

        .search-overlay input::placeholder {
            color: var(--metal);
        }

        body.dark-mode .search-overlay input {
            color: white;
        }

        body.dark-mode .search-overlay input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .search-overlay .close-search-btn {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        body.dark-mode .search-overlay .close-search-btn {
            color: white;
        }

        .search-overlay .close-search-btn:hover {
            color: var(--secondary);
            transform: translateY(-50%) rotate(90deg);
        }

        /* SEARCH RESULT STYLES */
        .search-results-container {
            width: 90%;
            max-width: 800px;
            margin-top: 1rem;
            background: var(--card-bg);
            border: 1px solid var(--gray);
            border-radius: 4px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            max-height: 50vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .search-result-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--gray);
            text-decoration: none;
            color: var(--text-color);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover {
            background-color: var(--light);
            transform: scale(1.02);
        }

        .search-result-item img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-right: 1.5rem;
            background-color: #FFFFFF;
            border-radius: 4px;
            padding: 5px;
            border: 1px solid var(--gray);
        }

        .search-result-item .details {
            display: flex;
            flex-direction: column;
        }

        .search-result-item .search-result-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 0.35rem;
        }

        .search-result-item .sku {
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--text-color);
            flex-grow: 1;
        }

        .search-result-price {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .search-result-item .sku strong {
            color: var(--secondary);
            font-weight: 800;
        }

        .search-result-item .category {
            font-size: 0.85rem;
            color: var(--metal);
        }

        .search-result-preview {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-top: 0.5rem;
            padding: 0.6rem 0.75rem;
            background: rgba(25, 118, 210, 0.05);
            border-radius: 6px;
            border-left: 2px solid var(--secondary);
        }

        .search-result-preview i,
        .search-result-preview .icon {
            width: 0.85rem;
            height: 0.85rem;
            color: var(--secondary);
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        .search-result-preview span {
            font-size: 0.85rem;
            color: var(--steel);
            line-height: 1.5;
        }

        .search-result-preview strong {
            color: var(--secondary);
            background: rgba(25, 118, 210, 0.15);
            padding: 0.05rem 0.25rem;
            border-radius: 2px;
        }

        .search-status-message {
            color: var(--steel);
            padding: 2rem;
            text-align: center;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .search-status-message .icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
        }

        /* Dark Mode Search Result Overrides */
        body.dark-mode .search-results-container {
            background: #1F2937;
            border: 1px solid #374151;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .search-result-item {
            color: var(--text-color);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .search-result-item:hover {
            background-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .search-result-item img {
            background-color: #2b3548;
            border: 1px solid #4b5563;
        }

        body.dark-mode .search-result-item .sku {
            color: var(--header-text);
        }

        body.dark-mode .search-result-item .sku strong {
            color: var(--accent);
        }

        body.dark-mode .search-result-price {
            color: var(--accent);
        }

        body.dark-mode .search-result-item .category {
            color: var(--steel);
        }

        body.dark-mode .search-result-preview {
            background: rgba(66, 165, 245, 0.08);
            border-left-color: var(--accent);
        }

        body.dark-mode .search-result-preview i,
        body.dark-mode .search-result-preview .icon {
            color: var(--accent);
        }

        body.dark-mode .search-result-preview span {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-mode .search-result-preview strong {
            color: var(--accent);
            background: rgba(66, 165, 245, 0.2);
        }

        body.dark-mode .search-status-message {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ======================================== */
        /* 10.5. COMPANY VIDEO SECTION              */
        /* ======================================== */
        .video-thumbnail-wrapper {
            position: relative;
            cursor: pointer;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px var(--shadow-color-hover);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            aspect-ratio: 16 / 9;
            background: #000;
        }

        .video-thumbnail-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px var(--shadow-color-hover);
        }

        .video-thumbnail-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-play-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
            pointer-events: none;
        }

        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .video-play-button i,
        .video-play-button .icon {
            width: 1em;
            height: 1em;
            flex-shrink: 0;
        }

        .video-play-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            border: 4px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: pulse 2s infinite;
            pointer-events: none;
        }

        .video-thumbnail-wrapper:hover .video-play-button {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
            color: var(--secondary);
        }

        .video-thumbnail-wrapper:focus-visible {
            outline: 4px solid var(--secondary);
            outline-offset: 4px;
        }

        /* Dark mode tweaks */
        body.dark-mode .video-play-button {
            background: rgba(30, 41, 59, 0.95);
            color: var(--accent);
        }

        body.dark-mode .video-play-pulse {
            border-color: rgba(100, 181, 246, 0.6);
        }

        /* Pulse animation */
        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.8);
                opacity: 0;
            }
        }

        .company-video-element {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.6s ease;
            background: #000;
        }

        /* When video is playing */
        .video-thumbnail-wrapper.playing .company-video-element {
            opacity: 1;
        }

        /* ======================================== */
        /* 15. ANIMATIONS                         */
        /* ======================================== */
        @keyframes fadeInUp {
            from {
                /* opacity: 0; */
                transform: translateY(20px);
            }

            to {
                /* opacity: 1; */
                transform: translateY(0);
            }
        }

        @keyframes bounce-right {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(8px);
            }
        }

        /* ======================================== */
        /* 16. RESPONSIVE DESIGN & MEDIA QUERIES  */
        /* ======================================== */
        @media (max-width: 992px) {

            .section-header h2,
            .why-us-content h2,
            .about-content h2 {
                font-size: 2.2rem;
            }

            .banner h2 {
                font-size: 3rem;
            }

            nav ul {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .about-container,
            .why-us-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 400px;
            }

            .why-us-image-wrapper {
                min-height: 350px;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .banner {
                height: auto;
                padding-block: 5rem;
                padding-top: calc(5rem + 80px);
                /* Add space for header */
            }

            .banner h2 {
                font-size: 2.2rem;
            }

            .banner p {
                font-size: 1.1rem;
            }

            .banner-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            /* --- Convert Product Categories to Mobile Carousel --- */
            .product-categories {
                position: relative;
            }

            .categories-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 1.5rem;
                scrollbar-width: none;
            }

            .categories-grid::-webkit-scrollbar {
                display: none;
            }

            .categories-grid .category-link-wrapper {
                flex: 0 0 85%;
                max-width: 320px;
                scroll-snap-align: start;
            }

            /* --- Carousel Scroll Hint --- */
            .product-categories::after {
                content: '\f061';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                right: 20px;
                top: 60%;
                transform: translateY(-50%);
                font-size: 1.5rem;
                color: var(--primary);
                background: var(--body-bg);
                padding: 10px 12px;
                border-radius: 50%;
                box-shadow: 0 0 15px rgba(13, 71, 161, 0.2);
                opacity: 0.8;
                z-index: 2;
                pointer-events: none;
                animation: bounce-right 1.5s infinite;
                transition: opacity 0.4s ease-out;
            }

            body.dark-mode .product-categories::after {
                color: white;
                background: var(--gray);
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            }

            .product-categories.scrolled::after {
                opacity: 0;
            }
        }

        @media (max-width: 576px) {
            .logo span {
                font-size: 1.3rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .banner h2 {
                font-size: 1.8rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .drawer {
                width: 300px;
            }
        }

        /* ==================== MOBILE BANNER FIX ==================== */
        @media (max-width: 992px) {
            .banner h1 {
                font-size: 2.6rem !important;
                /* was ~3.8rem */
                line-height: 1.15;
                margin-bottom: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .banner {
                min-height: 580px;
                /* prevents it from being too short */
                padding-top: calc(5rem + env(safe-area-inset-top));
            }

            .banner h1 {
                font-size: 2.35rem;
                /* ≈38–42 px – perfect for phones */
                max-width: 90%;
            }

            .banner p {
                font-size: 1.1rem !important;
                /* was 1.3rem */
                line-height: 1.6;
                max-width: 95%;
                margin-bottom: 2rem;
            }

            .banner-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .banner-buttons .btn {
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
                text-align: center;
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .banner h1 {
                font-size: 2.1rem;
                /* 33–36 px on very small screens */
            }

            .banner p {
                font-size: 1.05rem;
            }
        }

        /* Video Banner Styles */
        .banner-background-video,
        .banner-fallback-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .banner-fallback-image {
            opacity: 1;
            transition: opacity 0.45s ease;
        }

        /* Hide video completely until it's loaded and ready */
        .banner-background-video {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.45s ease, visibility 0.45s ease;
        }

        .banner.has-video .banner-fallback-image {
            opacity: 0;
        }

        .banner.has-video .banner-background-video {
            opacity: 1;
            visibility: visible;
        }

        /* Ensure fallback image is always visible on mobile/slow connections */
        @media (max-width: 992px) {
            .banner-background-video {
                display: none;
            }

            .banner.has-video .banner-fallback-image {
                opacity: 1;
            }
        }

        /* Dark overlay – adjust opacity if needed */
        .banner-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background: linear-gradient(90deg, rgba(13, 71, 161, 0.80) 40%, rgba(25, 118, 210, 0.55));
            z-index: 1;
        }

        /* Ensure content stays above video & overlay */
        .banner-content {
            position: relative;
            z-index: 2;
        }

        /* Mobile optimization – reduce video quality impact */
        @media (max-width: 768px) {
            .banner-background-video {
                object-fit: cover;
            }

            /* Optional: you can serve a lighter/mobile version here if you create one */
        }
