/*
 * ============================================================
 *  Surveillance World - Main Stylesheet
 *  File    : style.css
 *  Used by : index.html
 * ============================================================
 *  SECTIONS
 *   1.  CSS Variables & Reset
 *   2.  Global / Base Styles
 *   3.  Navbar
 *   4.  Mobile Navigation Drawer
 *   5.  Marquee Banner
 *   6.  Hero Banner Slider
 *   7.  Hero Section
 *   8.  Section Headers (shared)
 *   9.  Services Section
 *  10.  Our Work - Project Slider
 *  11.  Brands Associated With Us
 *  12.  Our Esteemed Clients (Flip Card Grid)
 *  13.  Testimonials (Marquee Cards)
 *  14.  Why Choose Us
 *  15.  Candlestick Chart (Why Choose Us right panel)
 *  16.  Contact Us
 *  17.  Storage Calculator Popup
 *  18.  Disclaimer
 *  19.  Footer
 *  20.  Legal Modal (Privacy / Terms / Cookies)
 *  21.  Responsive Breakpoints
 * ============================================================
 */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3c8e4e;
            --primary-dark: #2d6e3c;
            --secondary: #0d1f10;
            --dark: #081208;
            --light: #f0faf2;
            --gray: #7aab85;
            --accent: #5cb870;
            --gold: #d4a017;
            --gold-light: #f4d03f;
            --danger: #ff4444;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(8, 18, 8, 0.97);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(60,142,78,0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            flex-wrap: wrap;
        }

        .logo img {
            max-width: 80px;
            height: auto;
            width: 100%;
        }

        .logo h2 {
            margin: 0;
            font-size: 1.3rem;
        }

        .logo i {
            color: #5cb870;
            font-size: 1.75rem;
        }

        .logo span {
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #5cb870;
        }

        .nav-btn {
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            color: var(--dark);
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }

        /* Storage Calculator button — desktop navbar */
        .nav-calc-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            background: transparent;
            color: #a3e6b0;
            padding: 0.55rem 1.1rem;
            border: 1.5px solid rgba(92,184,112,0.45);
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s ease;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .nav-calc-btn i {
            font-size: 0.78rem;
        }

        .nav-calc-btn:hover {
            background: rgba(60,142,78,0.15);
            border-color: #5cb870;
            color: #c8f5ce;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(60,142,78,0.25);
        }

        /* Mobile storage calc link inside mobile-nav */
        .mobile-calc-link {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(60,142,78,0.1);
            border: 1.5px solid rgba(92,184,112,0.35);
            border-radius: 10px;
            color: #a3e6b0 !important;
            text-decoration: none;
            font-size: 1.1rem !important;
            font-weight: 600 !important;
            transition: all 0.2s;
        }

        .mobile-calc-link i {
            font-size: 1rem;
            color: #5cb870;
        }

        .mobile-calc-link:hover {
            background: rgba(60,142,78,0.2);
            border-color: #5cb870;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }

        /* Marquee Section */
        .marquee-section {
            background: linear-gradient(135deg, #025010, #438b3c);
            border-bottom: 2px solid rgba(212,160,23,0.3);
            padding: 1rem 5%;
            margin-top: 80px;
            overflow: hidden;
        }

        .marquee {
            color: #ffd900;
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
            animation: scroll-left 30s linear infinite;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* ═══════════════════════════════
           Hero Banner Slider
        ═══════════════════════════════ */
        .hero-banner-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #081208;
            height: 420px;
        }

        .hero-banner-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-banner-slide {
            min-width: 100%;
            width: 100%;
            height: 100%;
            flex-shrink: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #081208;
        }

        /* No crop — contain so full image always visible */
        .hero-banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            /* object-position: center; */
            display: block;
        }

        /* Nav buttons */
        .hbs-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.55);
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s, border-color 0.25s;
            font-weight: bold;
        }

        .hbs-nav:hover {
            background: rgba(60,142,78,0.85);
            border-color: #5cb870;
        }

        .hbs-prev { left: 14px; }
        .hbs-next { right: 14px; }

        /* Dots */
        .hbs-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .hbs-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.45);
            border: 2px solid rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.3s;
        }

        .hbs-dot.active {
            background: #5cb870;
            border-color: #5cb870;
            transform: scale(1.3);
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .hero-banner-slider { height: 320px; }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .hero-banner-slider { height: 220px; }
            .hbs-nav { width: 34px; height: 34px; font-size: 0.9rem; }
            .hbs-prev { left: 8px; }
            .hbs-next { right: 8px; }
        }

        @media (max-width: 480px) {
            .hero-banner-slider { height: 175px; }
            .hbs-nav { width: 28px; height: 28px; font-size: 0.8rem; }
        }

        /* ═══════════════════════════════
           Hero / Banner Section
        ═══════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        /* Dark green gradient base */
        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #081208 0%, #0d1f10 45%, #112615 70%, #1a3a20 100%);
            z-index: 0;
        }

        /* Tech-network dot pattern */
        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(60,142,78,0.22) 1px, transparent 1px),
                radial-gradient(circle, rgba(60,142,78,0.12) 1px, transparent 1px);
            background-size: 38px 38px, 76px 76px;
            background-position: 0 0, 19px 19px;
            z-index: 1;
        }

        /* Grid lines overlay */
        .grid-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, transparent 55%, rgba(212,160,23,0.05) 100%),
                linear-gradient(rgba(60,142,78,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(60,142,78,0.04) 1px, transparent 1px);
            background-size: 100% 100%, 50px 50px, 50px 50px;
            z-index: 1;
        }

        /* ── Inner layout: centered on desktop, stacked on mobile ── */
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 30px;
            padding-bottom: 60px;
        }

        .hero-left {
            width: 100%;
            text-align: center;
            animation: fadeInUp 1s ease;
        }

        /* Hide the empty hero-right */
        .hero-right { display: none !important; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(60,142,78,0.15);
            border: 1px solid rgba(60,142,78,0.4);
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #a3e6b0;
            margin-bottom: 1.5rem;
        }

        .hero-badge i { animation: pulse 2s infinite; color: var(--danger); }

        @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

        .hero h1 {
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .hero h1 .highlight,
        .highlight-ed {
            background: linear-gradient(135deg, #5cb870, #a3e6b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.1rem;
            color: #a3c9a8;
            margin-bottom: 2rem;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .btn {
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            color: #fff;
            border: none;
            box-shadow: 0 4px 18px rgba(60,142,78,0.45);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(60,142,78,0.55);
        }

        .btn-secondary {
            background: transparent;
            color: #f4d03f;
            border: 2px solid rgba(212,160,23,0.6);
        }

        .btn-secondary:hover {
            background: rgba(212,160,23,0.1);
            border-color: #f4d03f;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3.5rem;
            margin-top: 3.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(60,142,78,0.2);
        }

        .stat { text-align: center; }

        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #5cb870, #a3e6b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #7aab85;
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        /* ── Right side: 5-image collage ── */
        .hero-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 180px 180px 140px;
            gap: 7px;
            width: 440px;
            flex-shrink: 0;
            position: relative;
        }

        /* 5th image spans full width at bottom */
        .hero-img-cell {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(60,142,78,0.25);
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
        }

        .hero-img-cell:nth-child(5) {
            grid-column: 1 / 3;
        }

        .hero-img-cell img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .hero-img-cell:hover img { transform: scale(1.06); }

        /* Gold corner accent */
        .hero-right::after {
            content: '';
            position: absolute;
            top: -6px; right: -6px;
            width: 60px; height: 60px;
            background: linear-gradient(135deg, #d4a017 0%, transparent 65%);
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            border-radius: 0 8px 0 0;
            pointer-events: none;
        }

        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: var(--secondary);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            color: #5cb870;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-desc {
            color: var(--gray);
        }

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

        .service-card {
            background: var(--dark);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(60,142,78,0.12), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(60,142,78,0.35);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #2d6e3c, #5cb870);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: #f0faf2;
            margin-bottom: 1.5rem;
            position: relative;
            box-shadow: 0 4px 16px rgba(60,142,78,0.35);
        }

        .service-card h3 {
            font-size: 1.375rem;
            margin-bottom: 1rem;
            position: relative;
        }

        .service-card p {
            color: var(--gray);
            position: relative;
        }

        /* Products Section */
        .products {
            padding: 6rem 5%;
            background: var(--dark);
        }

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

        .product-card {
            background: var(--secondary);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            min-height: 520px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: rgba(60,142,78,0.35);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .product-image {
            height: 220px;
            background: linear-gradient(135deg, var(--dark), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #5cb870;
            position: relative;
            overflow: hidden;
            padding: 0.75rem;
        }

        .product-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
            display: block;
        }

        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .product-card:hover .product-image::after {
            transform: translateX(100%);
        }

        .product-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-info h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .product-info p {
            color: var(--gray);
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .product-details {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.75rem;
        }

        .product-details[open] {
            flex-direction: column-reverse;
        }

        .product-details summary {
            list-style: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.25rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            color: var(--dark);
            font-weight: 700;
            border: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            width: fit-content;
            align-self: flex-start;
        }

        .product-details[open] summary {
            align-self: flex-start;
            margin-top: 0.75rem;
        }

        .product-details summary:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
        }

        .product-details summary::-webkit-details-marker {
            display: none;
        }

        .product-info > ul {
            padding-left: 1.25rem;
            margin: 1rem 0;
            color: var(--gray);
            font-size: 0.875rem;
        }

        .product-details ul {
            max-height: 0;
            overflow: hidden;
            padding-left: 1.25rem;
            margin: 0;
            color: var(--gray);
            font-size: 0.875rem;
            transition: max-height 0.35s ease;
        }

        .product-details[open] ul {
            max-height: 450px;
        }

        .product-details ul li {
            margin-bottom: 0.55rem;
            line-height: 1.5;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }

        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .product-btn {
            background: var(--primary);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .product-btn:hover {
            background: var(--accent);
        }

        /* ═══════════════════════════════════════════
           Our Work — Slider Section
           2×2 grid: all 4 cells identical size
           Images: object-fit contain — no crop ever
           Responsive: fluid vw-based sizing
        ═══════════════════════════════════════════ */
        .slider-section {
            padding: 4rem 3%;
            background: var(--dark);
        }

        .slider-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0,0,0,0.5);
            background: #0a1a0d;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
        }

        /* Each slide fills the container width exactly */
        .slide {
            min-width: 100%;
            width: 100%;
            flex-shrink: 0;
            box-sizing: border-box;
            padding: 16px 16px 52px;
        }

        .slide.active { opacity: 1; }

        /* ══════════════════════════════════════
           2×2 GRID — fluid, equal cells
           Row1-Col1 = showcase-item:1
           Row1-Col2 = showcase-item:2
           Row2-Col1 = showcase-item:3
           Row2-Col2 = project-details
           Cell height = (container-width - padding - gap) / 2
           Using clamp so it never overflows on any screen
        ══════════════════════════════════════ */
        .slide-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* rows = auto so height follows content, kept equal by same
               explicit height on both children */
            grid-template-rows: auto auto;
            gap: 15px;
            width: 100%;
        }

        /* Explicit grid placement */
        .slide-content .showcase-item:nth-child(1) { grid-column: 1; grid-row: 1; }
        .slide-content .showcase-item:nth-child(2) { grid-column: 2; grid-row: 1; }
        .slide-content .showcase-item:nth-child(3) { grid-column: 1; grid-row: 2; }
        .project-details                            { grid-column: 2; grid-row: 2; }

        /* All showcase cells: same height via clamp — fluid, never crop (slider image's dimensions container) */
        .showcase-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            background: #1a2a1c;
            box-shadow: 0 4px 14px rgba(0,0,0,0.4);
            /* fluid height: large desktop 280px, scales down with viewport */
            height: clamp(140px, 22vw, 280px);
        }

        /* object-fit contain — full image always visible, no crop (slider image width and height settings) */
        .showcase-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #1a2a1c;
        }

        .item-label {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
            padding: 18px 10px 8px;
            font-size: clamp(0.65rem, 1.2vw, 0.88rem);
            color: #f4d03f;
            font-style: italic;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
        }

        /* Project details — same height as images, all content visible */
        .project-details {
            background: rgba(0,0,0,0.92);
            border: 2px solid #f4d03f;
            border-radius: 10px;
            /* match the exact same fluid height */
            height: clamp(140px, 22vw, 280px);
            padding: clamp(8px, 1.2vw, 16px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 16px rgba(0,0,0,0.5);
            box-sizing: border-box;
            overflow: hidden;
        }

        .details-header {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-bottom: 4px;
        }

        .details-badge {
            background: linear-gradient(135deg, #f4d03f, #d4a017);
            padding: 2px 9px;
            border-radius: 4px;
            font-weight: 700;
            font-size: clamp(0.6rem, 1vw, 0.8rem);
            color: #000;
            box-shadow: 0 2px 6px rgba(244,208,63,0.3);
            white-space: nowrap;
        }

        .detail-row {
            display: flex;
            align-items: flex-start;
            gap: 6px;
            flex: 1;
            padding: 3px 0;
            border-bottom: 1px solid rgba(244,208,63,0.15);
            min-height: 0;
        }

        .detail-row:last-child { border-bottom: none; }

        .detail-icon {
            font-size: clamp(0.7rem, 1.1vw, 1rem);
            min-width: 16px;
            text-align: center;
            color: #f4d03f;
            flex-shrink: 0;
            padding-top: 1px;
        }

        .detail-content {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .detail-label {
            font-size: clamp(0.48rem, 0.75vw, 0.6rem);
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            display: block;
            line-height: 1.2;
        }

        .detail-value {
            font-size: clamp(0.6rem, 1vw, 0.8rem);
            color: #f4d03f;
            font-weight: 700;
            line-height: 1.3;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Slider nav buttons */
        .slider-nav {
            position: absolute;
            top: calc(50% - 20px);
            transform: translateY(-50%);
            background: rgba(244,208,63,0.9);
            color: #000;
            border: none;
            width: 36px; height: 36px;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            z-index: 20;
            transition: background 0.25s, box-shadow 0.25s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
        }

        .slider-nav:hover {
            background: #f4d03f;
            box-shadow: 0 4px 14px rgba(244,208,63,0.55);
        }

        .slider-nav.prev { left: 8px; }
        .slider-nav.next { right: 8px; }

        .slider-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 7px;
            z-index: 10;
        }

        .dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(244,208,63,0.35);
            border: 2px solid rgba(244,208,63,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #f4d03f;
            transform: scale(1.3);
            box-shadow: 0 0 8px rgba(244,208,63,0.55);
        }

        .dot:hover { background: rgba(244,208,63,0.6); }

        /* ══════════════════════════════════
           RESPONSIVE BREAKPOINTS
        ══════════════════════════════════ */

        /* Large desktop: allow taller cells */
        @media (min-width: 1200px) {
            .showcase-item   { height: 270px; }
            .project-details { height: 270px; }
        }

        /* Tablet landscape (769–1024px): compact but same 2×2 layout */
        @media (max-width: 1024px) and (min-width: 769px) {
            .slide { padding: 14px 14px 48px; }
            .slide-content { gap: 10px; }
            .showcase-item   { height: clamp(130px, 20vw, 240px); }
            .project-details { height: clamp(130px, 20vw, 240px); }
        }

        /* ══════════════════════════
           Mobile (≤768px): 1 column
        ══════════════════════════ */
        @media (max-width: 768px) {
            .slider-section { padding: 3rem 3%; }
            .slide { padding: 12px 10px 46px; }

            .slide-content {
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
                gap: 10px;
            }

            .slide-content .showcase-item:nth-child(1),
            .slide-content .showcase-item:nth-child(2),
            .slide-content .showcase-item:nth-child(3),
            .project-details {
                grid-column: 1 !important;
                grid-row: auto !important;
            }

            /* Fixed heights for mobile images */
            .slide-content .showcase-item:nth-child(1),
            .slide-content .showcase-item:nth-child(2),
            .slide-content .showcase-item:nth-child(3) {
                height: 200px !important;
            }

            /* Project details expands to fit content on mobile */
            .project-details {
                height: auto !important;
                min-height: 160px;
                overflow: visible !important;
                padding: 12px 10px !important;
                justify-content: flex-start;
                gap: 4px;
            }

            .detail-row { flex: none; padding: 5px 0; }
            .detail-value { font-size: 0.78rem; }
            .detail-label { font-size: 0.58rem; }
            .item-label   { font-size: 0.72rem; }
            .slider-nav   { width: 30px; height: 30px; font-size: 0.85rem; }
        }

        @media (max-width: 480px) {
            .slide-content .showcase-item:nth-child(1),
            .slide-content .showcase-item:nth-child(2),
            .slide-content .showcase-item:nth-child(3) {
                height: 170px !important;
            }
        }

        /* Clients Section — Animated Flip Card Style */
        .clients {
            padding: 6rem 5%;
            background: var(--secondary);
            overflow: hidden;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.25rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: stretch;
        }

        /* Flip card container */
        .client-logo {
            perspective: 900px;
            height: 120px;
            cursor: pointer;
        }

        .client-logo-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
            transform-style: preserve-3d;
        }

        .client-logo:hover .client-logo-inner {
            transform: rotateY(180deg);
        }

        /* Front face — white card with logo */
        .client-logo-front,
        .client-logo-back {
            position: absolute;
            inset: 0;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .client-logo-front {
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(14,165,233,0.18);
            padding: 1rem;
            overflow: hidden;
        }

        /* Shimmer on front */
        .client-logo-front::after {
            content: '';
            position: absolute;
            top: 0; left: -70%;
            width: 50%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(14,165,233,0.12), transparent);
            animation: client-shimmer 4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes client-shimmer {
            0%       { left: -70%; }
            50%, 100%{ left: 130%; }
        }

        /* Stagger shimmer per child */
        .client-logo:nth-child(even) .client-logo-front::after { animation-delay: 2s; }
        .client-logo:nth-child(3n)   .client-logo-front::after { animation-delay: 1s; }

        /* Back face — gradient with brand initial */
        .client-logo-back {
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            transform: rotateY(180deg);
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(14,165,233,0.35);
            flex-direction: column;
            gap: 0.4rem;
        }

        .client-logo-back .back-check {
            font-size: 1.6rem;
            color: var(--dark);
            font-weight: 900;
        }

        .client-logo-back .back-text {
            font-size: 0.6rem;
            font-weight: 700;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            padding: 0 0.5rem;
        }

        .client-logo img {
            max-width: 88%;
            max-height: 80px;
            width: auto;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

        /* Responsive clients grid */
        @media (max-width: 1100px) {
            .clients-grid { grid-template-columns: repeat(5, 1fr); }
        }
        @media (max-width: 900px) {
            .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
            .client-logo  { height: 105px; }
            .client-logo img { max-height: 70px; }
        }
        @media (max-width: 640px) {
            .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
            .client-logo  { height: 95px; }
            .client-logo img { max-height: 62px; }
        }
        @media (max-width: 420px) {
            .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
            .client-logo  { height: 88px; }
            .client-logo img { max-height: 55px; }
        }

        /* ═══════════════════════════════════════════
           BRANDS ASSOCIATED WITH US SECTION
        ═══════════════════════════════════════════ */
        .brands-section {
            padding: 5rem 5%;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        /* Ambient glow blobs */
        .brands-section::before {
            content: '';
            position: absolute;
            top: -80px; left: 50%;
            transform: translateX(-50%);
            width: 600px; height: 300px;
            background: radial-gradient(ellipse, rgba(60,142,78,0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Marquee outer track — masks overflow */
        .brands-marquee-outer {
            position: relative;
            overflow: hidden;
            margin-top: 2.5rem;
        }

        /* Left & right fade edges */
        .brands-marquee-outer::before,
        .brands-marquee-outer::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 90px;
            z-index: 2;
            pointer-events: none;
        }
        .brands-marquee-outer::before {
            left: 0;
            background: linear-gradient(to right, var(--dark), transparent);
        }
        .brands-marquee-outer::after {
            right: 0;
            background: linear-gradient(to left, var(--dark), transparent);
        }

        /* Scrolling track */
        .brands-marquee-track {
            display: flex;
            gap: 1.2rem;
            width: max-content;
            animation: brandScroll 32s linear infinite;
        }

        .brands-marquee-track:hover { animation-play-state: paused; }

        @keyframes brandScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Individual brand card */
        .brand-card {
            flex-shrink: 0;
            width: 170px;
            height: 100px;
            background: #ffffff;
            border-radius: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 1rem 0.65rem;
            position: relative;
            overflow: hidden;
            cursor: default;
            border: 1.5px solid transparent;
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
            box-shadow: 0 4px 18px rgba(0,0,0,0.18), 0 0 0 1px rgba(60,142,78,0.08);
        }

        .brand-card:hover {
            transform: translateY(-5px) scale(1.03);
            border-color: rgba(60,142,78,0.4);
            box-shadow: 0 14px 36px rgba(0,0,0,0.28), 0 0 0 2px rgba(92,184,112,0.35);
        }

        /* Shimmer sweep on each card */
        .brand-card::before {
            content: '';
            position: absolute;
            top: 0; left: -80%;
            width: 55%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(60,142,78,0.1), transparent);
            animation: brandShimmer 5s ease-in-out infinite;
            pointer-events: none;
        }

        .brand-card:nth-child(even)::before  { animation-delay: 2.5s; }
        .brand-card:nth-child(3n)::before    { animation-delay: 1.2s; }

        @keyframes brandShimmer {
            0%        { left: -80%; }
            50%, 100% { left: 130%; }
        }

        /* Top colour accent bar */
        .brand-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            border-radius: 14px 14px 0 0;
        }

        /* Per-card accent colours */
        .brand-card.bc-green::after  { background: linear-gradient(90deg,#3c8e4e,#5cb870); }
        .brand-card.bc-blue::after   { background: linear-gradient(90deg,#0369a1,#38bdf8); }
        .brand-card.bc-red::after    { background: linear-gradient(90deg,#dc2626,#f87171); }
        .brand-card.bc-gold::after   { background: linear-gradient(90deg,#b45309,#f4d03f); }
        .brand-card.bc-purple::after { background: linear-gradient(90deg,#7c3aed,#c4b5fd); }
        .brand-card.bc-teal::after   { background: linear-gradient(90deg,#0f766e,#6ee7b7); }
        .brand-card.bc-orange::after { background: linear-gradient(90deg,#c2410c,#fdba74); }
        .brand-card.bc-pink::after   { background: linear-gradient(90deg,#9d174d,#f9a8d4); }

        /* Logo image */
        .brand-card img {
            max-width: 90%;
            max-height: 58px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            position: relative;
            z-index: 1;
        }

        /* Brand name label below logo */
        .brand-name-lbl {
            font-size: 0.58rem;
            font-weight: 700;
            color: #374151;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-top: 0.35rem;
            text-align: center;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }

        /* Section note */
        .brands-note {
            text-align: center;
            margin-top: 1.75rem;
            font-size: 0.72rem;
            color: rgba(163,230,176,0.3);
            font-style: italic;
            letter-spacing: 0.3px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .brands-section { padding: 4rem 4%; }
            .brand-card { width: 140px; height: 88px; border-radius: 11px; }
            .brand-card img { max-height: 46px; }
            .brands-marquee-outer::before,
            .brands-marquee-outer::after { width: 50px; }
        }

        @media (max-width: 480px) {
            .brand-card { width: 120px; height: 80px; padding: 0.65rem 0.7rem 0.5rem; }
            .brand-card img { max-height: 40px; }
            .brand-name-lbl { font-size: 0.52rem; }
        }

        /* Why Choose Us */
        .why-us {
            padding: 6rem 5%;
            background: var(--secondary);
        }

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

        .why-us-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .why-us-content p {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(14, 165, 233, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5cb870;
            font-size: 1.25rem;
        }

        .feature-text h4 {
            font-size: 1.125rem;
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            color: var(--gray);
            font-size: 0.875rem;
            margin-bottom: 0;
        }

        .why-us-visual {
            position: relative;
        }

        .visual-card {
            background: var(--dark);
            border-radius: 20px;
            padding: 1.5rem 1.5rem 1rem;
            border: 1px solid rgba(60,142,78,0.22);
            position: relative;
            overflow: hidden;
        }

        /* Subtle ambient glow behind graph */
        .visual-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 80% 15%, rgba(92,184,112,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 15% 85%, rgba(212,160,23,0.06) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 20px;
        }

        /* Graph header row */
        .graph-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .graph-title {
            font-size: 0.68rem;
            font-weight: 700;
            color: rgba(163,230,176,0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .graph-badge {
            display: flex;
            align-items: center;
            gap: 0.40rem;
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--danger);
            background: rgba(60,142,78,0.12);
            border: 1px solid rgba(60,142,78,0.28);
            padding: 0.30rem 0.60rem;
            border-radius: 50px;
            /* margin-top: 40px; */
        }

        .graph-badge-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--danger);
            flex-shrink: 0;
            animation: gbPulse 1.6s ease-in-out infinite;
        }

        @keyframes gbPulse {
            0%,100%{ opacity:1; transform:scale(1);   }
            50%    { opacity:0.3; transform:scale(0.6);}
        }

        /* SVG container */
        .graph-svg-wrap {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .graph-svg-wrap svg { width:100%; height:auto; display:block; overflow:visible; }

        /* Candle grow-in */
        .g-candle-group {
            transform-box: fill-box;
            transform-origin: bottom;
            opacity: 0;
        }

        .g-candle-group.g-in {
            animation: gCandleUp 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
        }

        @keyframes gCandleUp {
            from { opacity:0; transform:scaleY(0.05); }
            to   { opacity:1; transform:scaleY(1); }
        }

        /* Trend line draw */
        .g-trend {
            fill: none;
            stroke-dasharray: 2000;
            stroke-dashoffset: 2000;
        }

        .g-trend.g-draw {
            animation: gDash 2s ease forwards;
        }

        @keyframes gDash { to { stroke-dashoffset: 0; } }

        /* Graph footer stats */
        .graph-stats {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 0.5rem;
            margin-top: 0.85rem;
            position: relative;
            z-index: 1;
        }

        .graph-stat {
            background: rgba(0,0,0,0.28);
            border: 1px solid rgba(60,142,78,0.12);
            border-radius: 8px;
            padding: 0.5rem 0.5rem;
            text-align: center;
        }

        .graph-stat-val {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
        }

        .graph-stat-lbl {
            font-size: 0.56rem;
            color: rgba(163,230,176,0.38);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2px;
        }

        .camera-preview {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 12px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .camera-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            width: 100%;
            height: 100%;
            padding: 0.5rem;
        }

        .camera-feed {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .camera-feed i {
            font-size: 2rem;
            color: var(--gray);
        }

        .camera-feed::before {
            content: 'LIVE';
            position: absolute;
            top: 8px;
            left: 8px;
            background: #ef4444;
            color: white;
            font-size: 0.625rem;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        .visual-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .visual-stat {
            text-align: center;
            padding: 1rem;
            background: rgba(14, 165, 233, 0.05);
            border-radius: 12px;
        }

        .visual-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #5cb870;
        }

        .visual-stat-label {
            font-size: 0.75rem;
            color: var(--gray);
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            background: var(--dark);
            overflow: hidden;
        }

        .testimonials .section-header {
            padding: 0 5%;
        }

        /* Marquee Track */
        .testimonials-marquee-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;      /* same as card-to-card gap inside each row */
            margin-top: 3rem;
        }

        .marquee-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
        }

        .marquee-track-row {
            overflow: hidden;
            position: relative;
            /* vertical padding so card shadows/borders are not clipped —
               this makes the visible space between rows equal to the
               card-to-card gap (1.5rem) rather than appearing as 0 */
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

        /* Fade edges */
        .marquee-track-row::before,
        .marquee-track-row::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-track-row::before {
            left: 0;
            background: linear-gradient(to right, var(--dark), transparent);
        }

        .marquee-track-row::after {
            right: 0;
            background: linear-gradient(to left, var(--dark), transparent);
        }

        /* Row 1: left → (scroll-left) */
        .marquee-track-row.row-ltr .marquee-track {
            animation: marquee-ltr 35s linear infinite;
        }

        /* Row 2: right → (scroll-right) */
        .marquee-track-row.row-rtl .marquee-track {
            animation: marquee-rtl 35s linear infinite;
        }

        @keyframes marquee-ltr {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes marquee-rtl {
            0%   { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* Pause on hover */
        .marquee-track-row:hover .marquee-track {
            animation-play-state: paused;
        }

        .testimonial-card {
            background: var(--secondary);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            width: 360px;
            flex-shrink: 0;
            border: 1px solid transparent;
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
        }

        .testimonial-card:hover {
            border-color: rgba(14, 165, 233, 0.35);
            box-shadow: 0 16px 40px rgba(0,0,0,0.3);
            transform: translateY(-4px);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 2rem;
            font-size: 5rem;
            color: rgba(14, 165, 233, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            color: var(--gray);
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            font-size: 0.875rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--dark);
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.875rem;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: var(--secondary);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(14, 165, 233, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5cb870;
            font-size: 1.25rem;
        }

        .contact-text h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .contact-text p {
            color: var(--gray);
            font-size: 0.875rem;
        }

        .social-links {
            display: flex;
            /* gap: 1rem; */
            margin-top: 2rem;
        }

        .social-link {
            width: 360px;
            height: 45px;
            background: var(--dark);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.25rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .contact-form {
            background: var(--dark);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--light);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #5cb870;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            color: var(--dark);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand p {
            color: var(--gray);
            margin: 1rem 0 1.5rem;
            font-size: 0.875rem;
        }

        .footer-column h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #5cb870;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: #5cb870;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: var(--secondary);
            padding: 5rem 2rem 2rem;
            transition: right 0.3s ease;
            z-index: 999;
        }

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

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 1.5rem;
        }

        .mobile-nav a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 500;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }

        .mobile-overlay.active {
            display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .why-us-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

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

            .logo {
                font-size: 1.2rem;
            }

            .logo h2 {
                font-size: 1.1rem;
            }

            .logo img {
                max-width: 70px;
            }

            .marquee {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-btn,
            .nav-calc-btn {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .mobile-nav {
                display: block;
            }

            .navbar {
                padding: 0.75rem 3%;
            }

            .logo {
                font-size: 1rem;
                gap: 0.5rem;
            }

            .logo h2 {
                font-size: 0.9rem;
            }

            .logo img {
                max-width: 50px;
            }

            .marquee {
                font-size: 0.75rem;
                animation: scroll-left 25s linear infinite;
            }

            .marquee-section {
                padding: 0.75rem 3%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                gap: 1.25rem;
            }

            .product-card {
                min-height: 480px;
            }

            .product-image {
                height: 160px;
            }

            .product-details summary {
                width: 100%;
                padding: 0.9rem 1rem;
            }

            .product-details ul {
                max-height: 0;
            }
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        /* ── Brand Identity Overrides ── */
        #sw-title{
            color: #3c8e4e;
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        }
        .highlight-ed{
            color: #3c8e4e;
        }
        ul li{
            color: #64748b;
            font-size: 14px;
            font-family: sans-serif;
        }

        
        .footer-logo {
            margin-bottom: 1rem;
            flex-wrap: nowrap;
        }
        .footer-logo img {
            max-width: 60px;
            height: auto;
            width: 100%;
            flex-shrink: 0;
        }
        .footer-logo #sw-title {
            font-size: 1.1rem;
            white-space: nowrap;
        }

        
        .testimonials .section-title {
            white-space: nowrap;
            overflow: visible;
            text-overflow: unset;
            font-size: clamp(1.05rem, 3.2vw, 2.5rem);
            display: block;
            width: 100%;
            text-align: center;
        }

        
        .contact-icon {
            width: 50px !important;
            height: 50px !important;
            min-width: 50px !important;
            min-height: 50px !important;
            background: rgba(14, 165, 233, 0.1);
            border-radius: 12px;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #5cb870;
            font-size: 1.2rem !important;
            flex-shrink: 0;
        }

        
        .disclaimer {
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(14, 165, 233, 0.2);
            border-bottom: 1px solid rgba(14, 165, 233, 0.2);
            padding: 2.25rem 5%;
        }

        .disclaimer-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .disclaimer-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: rgba(14, 165, 233, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5cb870;
            font-size: 1rem;
            margin-top: 2px;
            border: 1px solid rgba(14, 165, 233, 0.3);
        }

        .disclaimer-body {
            flex: 1;
        }

        .disclaimer-body h5 {
            font-size: 0.8rem;
            font-weight: 700;
            color: #5cb870;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.5rem;
        }

        .disclaimer-body p {
            font-size: 0.8rem;
            color: var(--gray);
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 480px) {
            .disclaimer { padding: 1.75rem 4%; }
            .disclaimer-inner { flex-direction: column; gap: 0.75rem; }
            .disclaimer-body h5 { font-size: 0.75rem; }
            .disclaimer-body p  { font-size: 0.75rem; }
        }

        
        @media (max-width: 768px) {
            .product-image {
                height: 200px;
                padding: 0.75rem;
            }
            .product-image img {
                object-fit: contain !important;
                width: 100% !important;
                height: 100% !important;
            }
        }
        @media (max-width: 480px) {
            .product-image {
                height: 180px;
                padding: 0.6rem;
            }
        }

        
        .contact-map {
            max-width: 1200px;
            margin: 2.5rem auto 0;
        }

        .map-header {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            font-weight: 700;
            color: #5cb870;
            margin-bottom: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .map-header i { font-size: 1.1rem; }

        .map-wrapper {
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.35);
            border: 1px solid rgba(14,165,233,0.2);
        }

        .map-directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.85rem;
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            color: var(--dark);
            font-weight: 700;
            font-size: 0.88rem;
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .map-directions-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14,165,233,0.35);
        }

        @media (max-width: 768px) {
            .contact-map { margin-top: 2rem; }
            .map-wrapper iframe { height: 260px; }
        }

        
        @media (max-width: 768px) {
            .testimonial-card {
                width: 270px !important;
                padding: 1.25rem !important;
            }
            .testimonial-card::before { font-size: 3.5rem; top: 0.6rem; right: 1.2rem; }
            .testimonial-content { font-size: 0.82rem; margin-bottom: 1rem; }
            .author-avatar { width: 38px !important; height: 38px !important; font-size: 0.75rem; }
            .author-info h4 { font-size: 0.85rem; }
            .author-info p  { font-size: 0.75rem; }
            .stars { font-size: 0.8rem; margin-bottom: 0.6rem; }

            /* Row gap matches card gap on mobile */
            .testimonials-marquee-wrapper {
                gap: 1.25rem;
            }
            .marquee-track {
                gap: 1.25rem;
            }
            .marquee-track-row {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
        }

        /* ═══════════════════════════════════════
           STORAGE CALCULATOR POPUP MODAL
        ═══════════════════════════════════════ */

        /* Backdrop */
        .sc-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.78);
            backdrop-filter: blur(6px);
            z-index: 9000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .sc-backdrop.open { display: flex; }

        /* Modal box */
        .sc-modal {
            background: linear-gradient(160deg, #081208 0%, #0d1f10 50%, #112615 100%);
            border: 1px solid rgba(60,142,78,0.3);
            border-radius: 22px;
            width: 100%;
            max-width: 780px;
            max-height: 92vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(92,184,112,0.1);
            scrollbar-width: thin;
            scrollbar-color: rgba(60,142,78,0.4) transparent;
            animation: scSlideIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
        }

        .sc-modal::-webkit-scrollbar { width: 4px; }
        .sc-modal::-webkit-scrollbar-thumb { background: rgba(60,142,78,0.4); border-radius: 4px; }

        @keyframes scSlideIn {
            from { opacity:0; transform: translateY(30px) scale(0.96); }
            to   { opacity:1; transform: translateY(0) scale(1); }
        }

        /* Dot-pattern overlay inside modal */
        .sc-modal::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(60,142,78,0.16) 1px, transparent 1px),
                radial-gradient(circle, rgba(60,142,78,0.08) 1px, transparent 1px);
            background-size: 36px 36px, 72px 72px;
            background-position: 0 0, 18px 18px;
            pointer-events: none;
            border-radius: 22px;
            z-index: 0;
        }

        /* All inner content above the dot pattern */
        .sc-inner { position: relative; z-index: 1; }

        /* Header */
        .sc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.4rem 1.75rem 1rem;
            border-bottom: 1px solid rgba(60,142,78,0.18);
        }

        .sc-brand {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .sc-logo {
            width: 44px;
            height: 44px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(60,142,78,0.5));
            flex-shrink: 0;
        }

        /* .sc-brand-text {} */

        .sc-brand-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: #3c8e4e;
            font-family: Cambria, Georgia, serif;
            letter-spacing: 1.5px;
            line-height: 1.1;
        }

        .sc-brand-sub {
            font-size: 0.62rem;
            color: rgba(163,230,176,0.6);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 1px;
        }

        .sc-title-block {
            text-align: right;
        }

        .sc-title {
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(163,230,176,0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Close button */
        .sc-close {
            position: absolute;
            top: 1rem; right: 1.1rem;
            background: rgba(60,142,78,0.1);
            border: 1px solid rgba(60,142,78,0.25);
            color: #a3e6b0;
            width: 34px; height: 34px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
            z-index: 10;
        }
        .sc-close:hover {
            background: rgba(60,142,78,0.25);
            border-color: #5cb870;
            transform: rotate(90deg);
        }

        /* Body */
        .sc-body {
            padding: 1.5rem 1.75rem 1.75rem;
        }

        /* Two-column grid on desktop */
        .sc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem 1.5rem;
            margin-bottom: 1.25rem;
        }

        .sc-field {
            display: flex;
            flex-direction: column;
            gap: 0.38rem;
        }

        .sc-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: rgba(163,230,176,0.65);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .sc-label i { color: #d4a017; font-size: 0.65rem; }

        .sc-select,
        .sc-input {
            background: rgba(0,0,0,0.45);
            border: 1.5px solid rgba(60,142,78,0.3);
            border-radius: 10px;
            padding: 0.6rem 0.85rem;
            color: #f0faf2;
            font-family: 'Inter', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            width: 100%;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            appearance: none;
            -webkit-appearance: none;
        }

        .sc-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235cb870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.8rem center;
            background-color: rgba(0,0,0,0.45);
            padding-right: 2.2rem;
            cursor: pointer;
        }

        .sc-select:focus, .sc-input:focus {
            border-color: #5cb870;
            box-shadow: 0 0 0 3px rgba(92,184,112,0.12);
        }

        .sc-select option {
            background: #0d1f10;
            color: #f0faf2;
        }

        .sc-input[type=number]::-webkit-inner-spin-button { opacity: 1; }

        /* Divider */
        .sc-divider {
            border: none;
            border-top: 1px solid rgba(60,142,78,0.15);
            margin: 1.1rem 0;
        }

        /* Calculate button */
        .sc-calc-btn {
            width: 100%;
            padding: 0.85rem;
            background: linear-gradient(135deg, #2d6e3c, #5cb870);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(60,142,78,0.35);
            margin-bottom: 0.65rem;
        }

        .sc-calc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(60,142,78,0.5);
        }

        .sc-reset-btn {
            width: 100%;
            padding: 0.6rem;
            background: transparent;
            color: rgba(163,230,176,0.55);
            border: 1px solid rgba(60,142,78,0.2);
            border-radius: 10px;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }

        .sc-reset-btn:hover {
            color: #a3e6b0;
            border-color: rgba(60,142,78,0.4);
            background: rgba(60,142,78,0.06);
        }

        /* Result box */
        .sc-result {
            display: none;
            margin-top: 1.25rem;
            animation: scFadeIn 0.4s ease forwards;
        }

        .sc-result.visible { display: block; }

        @keyframes scFadeIn {
            from { opacity:0; transform: translateY(8px); }
            to   { opacity:1; transform: translateY(0); }
        }

        .sc-result-main {
            background: rgba(60,142,78,0.08);
            border: 1.5px solid rgba(60,142,78,0.3);
            border-radius: 14px;
            padding: 1.25rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .sc-result-label {
            font-size: 0.65rem;
            font-weight: 700;
            color: rgba(163,230,176,0.55);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.4rem;
        }

        .sc-result-value {
            font-family: Cambria, Georgia, serif;
            font-size: clamp(2.2rem, 6vw, 3.2rem);
            font-weight: 700;
            color: var(--light);
            line-height: 1;
            letter-spacing: 1px;
        }

        .sc-result-unit {
            font-size: 1.82rem;
            color: var(--light);
            margin-top: 0.3rem;
        }

        .sc-result-note {
            font-size: 0.68rem;
            color: rgba(163,230,176,0.4);
            margin-top: 0.4rem;
        }

        /* Result breakdown */
        .sc-breakdown {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.6rem;
        }

        .sc-bd-card {
            background: rgba(0,0,0,0.35);
            border: 1px solid rgba(60,142,78,0.15);
            border-radius: 10px;
            padding: 0.75rem 0.7rem;
            text-align: center;
        }

        .sc-bd-label {
            font-size: 0.58rem;
            font-weight: 700;
            color: rgba(163,230,176,0.45);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 0.25rem;
        }

        .sc-bd-value {
            font-size: 0.95rem;
            font-weight: 700;
            color: #d4a017;
            font-family: Cambria, Georgia, serif;
        }

        .sc-bd-unit {
            font-size: 0.58rem;
            color: rgba(163,230,176,0.35);
        }

        /* Responsive modal */
        @media (max-width: 600px) {
            .sc-modal { border-radius: 16px; max-height: 95vh; }
            .sc-header { padding: 1.1rem 1.1rem 0.85rem; }
            .sc-body { padding: 1.1rem; }
            .sc-grid { grid-template-columns: 1fr; gap: 0.8rem; }
            .sc-breakdown { grid-template-columns: 1fr 1fr; }
            .sc-brand-name { font-size: 0.88rem; letter-spacing: 0.8px; }
            .sc-logo { width: 36px; height: 36px; }
            .sc-result-value { font-size: 2rem; }
        }

        @media (max-width: 380px) {
            .sc-breakdown { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════
           Legal Modal
        ═══════════════════════════════ */
/* ── Legal Modal ── */
        .legal-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.72);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .legal-modal.open { display: flex; }

        .legal-modal-box {
            background: var(--secondary);
            border-radius: 18px;
            max-width: 700px;
            width: 100%;
            max-height: 88vh;
            overflow-y: auto;
            padding: 2.5rem 2.25rem 2rem;
            position: relative;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(14,165,233,0.2);
            scrollbar-width: thin;
            scrollbar-color: rgba(14,165,233,0.3) transparent;
        }
        .legal-modal-box::-webkit-scrollbar { width: 5px; }
        .legal-modal-box::-webkit-scrollbar-thumb { background: rgba(14,165,233,0.3); border-radius: 4px; }

        .legal-modal-close {
            position: absolute;
            top: 1rem; right: 1.25rem;
            background: rgba(14,165,233,0.1);
            border: 1px solid rgba(14,165,233,0.25);
            color: var(--light);
            font-size: 1.4rem;
            line-height: 1;
            width: 36px; height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .legal-modal-close:hover { background: rgba(14,165,233,0.25); }

        .legal-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #5cb870;
            margin-bottom: 1.5rem;
            padding-right: 2rem;
        }

        .legal-modal-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--light);
            margin: 1.4rem 0 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .legal-modal-body h3::before {
            content: '';
            width: 4px; height: 18px;
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .legal-modal-body p {
            font-size: 0.875rem;
            color: var(--gray);
            line-height: 1.75;
            margin: 0 0 0.75rem;
        }
        .legal-modal-body .legal-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark);
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            padding: 3px 10px;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }
        .legal-modal-body .legal-updated {
            font-size: 0.75rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        .legal-modal-body hr {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.07);
            margin: 1rem 0;
        }

        @media (max-width: 480px) {
            .legal-modal-box { padding: 2rem 1.25rem 1.5rem; }
            .legal-modal-title { font-size: 1.2rem; }
        }

/* ============================================================
   20. Legal Modal
   Privacy Policy / Terms of Service / Cookie Policy popup
============================================================ */
        /* ── Legal Modal ── */
        .legal-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.72);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .legal-modal.open { display: flex; }

        .legal-modal-box {
            background: var(--secondary);
            border-radius: 18px;
            max-width: 700px;
            width: 100%;
            max-height: 88vh;
            overflow-y: auto;
            padding: 2.5rem 2.25rem 2rem;
            position: relative;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(14,165,233,0.2);
            scrollbar-width: thin;
            scrollbar-color: rgba(14,165,233,0.3) transparent;
        }
        .legal-modal-box::-webkit-scrollbar { width: 5px; }
        .legal-modal-box::-webkit-scrollbar-thumb { background: rgba(14,165,233,0.3); border-radius: 4px; }

        .legal-modal-close {
            position: absolute;
            top: 1rem; right: 1.25rem;
            background: rgba(14,165,233,0.1);
            border: 1px solid rgba(14,165,233,0.25);
            color: var(--light);
            font-size: 1.4rem;
            line-height: 1;
            width: 36px; height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .legal-modal-close:hover { background: rgba(14,165,233,0.25); }

        .legal-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #5cb870;
            margin-bottom: 1.5rem;
            padding-right: 2rem;
        }

        .legal-modal-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--light);
            margin: 1.4rem 0 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .legal-modal-body h3::before {
            content: '';
            width: 4px; height: 18px;
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .legal-modal-body p {
            font-size: 0.875rem;
            color: var(--gray);
            line-height: 1.75;
            margin: 0 0 0.75rem;
        }
        .legal-modal-body .legal-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark);
            background: linear-gradient(135deg, #3c8e4e, #5cb870);
            padding: 3px 10px;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }
        .legal-modal-body .legal-updated {
            font-size: 0.75rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        .legal-modal-body hr {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.07);
            margin: 1rem 0;
        }

        @media (max-width: 480px) {
            .legal-modal-box { padding: 2rem 1.25rem 1.5rem; }
            .legal-modal-title { font-size: 1.2rem; }
        }
