
        /* ========================================== */
        /* CSS VARIABLES & CORE RESET                 */
        /* ========================================== */
        :root {
            --brand-green: #A6CF43;
            --brand-glow: rgba(132, 204, 22, 0.15);
            --bg-dark: #0a0a0a;
            --bg-secondary: #050505;
            --bg-card: #111111;
            --bg-card-hover: #1a1a1a;
            --text-main: #d1d5db;
            --text-muted: #888888;
            --border-color: #222222;
            --nav-height: 80px;
            --curve: cubic-bezier(0.4, 0, 0.2, 1);
            --bouncy-curve: cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --max-container-width: 1440px;
            --section-spacing: clamp(60px, 8vh, 100px);

            /* Slider Controls Variables */
            --slider-arrow-color: #A6CF43; 
            --slider-dot-active: #A6CF43;
            --slider-dot-inactive: rgba(255, 255, 255, 0.2);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw; position: relative; background-color: var(--bg-dark); }
        body { font-family: 'Saira SemiCondensed', sans-serif; color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; transition: background-color 0.4s ease, color 0.4s ease; }
        h1, h2, h3, h4, h5, h6, p, a, span, div, button, li, input, select, textarea { font-family: 'Saira SemiCondensed', sans-serif !important; }
        img, svg, iframe { max-width: 100%; display: block; height: auto; }
        
        .reveal { will-change: transform, opacity; }
        html.gsap-ready .reveal { opacity: 0; transform: translateY(40px); }
        .glow-divider { height: 1px; width: 100%; border: none; background: linear-gradient(90deg, transparent, rgba(166, 207, 67, 0.2), transparent); margin: 0; padding: 0; transition: background 0.4s ease, height 0.4s ease; }

        /* ========================================== */
        /* AMBIENT MOUSE GLOW & BACKGROUND DECOR      */
        /* ========================================== */
        .mouse-glow { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--brand-glow) 0%, transparent 65%); transition: background 0.4s ease; }
        @media (max-width: 1024px) { .mouse-glow { display: none; } }

        .bg-watermark { position: absolute; font-size: clamp(5rem, 10vw, 12rem); font-weight: 900; color: rgba(255, 255, 255, 0.015); white-space: nowrap; pointer-events: none; z-index: 0; text-transform: uppercase; letter-spacing: -5px; user-select: none; transition: color 0.4s ease; }
        .wm-1 { top: 5%; left: -5%; }
        .wm-2 { top: 30%; right: -5%; }
        .wm-3 { bottom: 10%; left: -5%; }

        .ambient-particle { position: absolute; background: var(--brand-green); border-radius: 50%; opacity: 0.1; pointer-events: none; z-index: 0; transition: opacity 0.4s ease, box-shadow 0.4s ease;}
        .ambient-plus { position: absolute; color: var(--brand-green); opacity: 0.1; font-weight: 900; font-size: 2rem; pointer-events: none; z-index: 0; animation: floatSpin 15s linear infinite; transition: opacity 0.4s ease, color 0.4s ease;}
        @keyframes floatSpin { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(180deg); } 100% { transform: translateY(0) rotate(360deg); } }

        /* ========================================== */
        /* WHATSAPP BUTTON                            */
        /* ========================================== */
        .whatsapp-fixed { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 8500; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: 0.3s var(--curve); cursor: pointer; animation: pulse-wa 2s infinite; }
        .whatsapp-fixed:hover { transform: scale(1.15) rotate(10deg); animation: none; box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); }
        .whatsapp-fixed svg { width: 30px; height: 30px; fill: white; }
        @keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

        /* ========================================== */
        /* HEADER & MEGA MENU                         */
        /* ========================================== */
        .navbar { height: var(--nav-height); background-color: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px); padding: 0 2rem; position: fixed; width: 100%; top: 0; left: 0; z-index: 9999; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; transition: 0.4s ease; }
        .navbar.menu-open { background-color: transparent; border-bottom-color: transparent; backdrop-filter: none; }
        .nav-container { max-width: var(--max-container-width); width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; }
        .logo-link { display: flex; align-items: center; z-index: 10000; flex: 1; }
        .logo-link img { height: 50px; width: auto; object-fit: contain; transition: transform 0.4s var(--bouncy-curve); }
        .logo-link:hover img { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(132, 204, 22, 0.4)); }
        .logo-light { display: none !important; }
        .logo-dark { display: block !important; }

        .nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; justify-content: center; flex: 2; height: 100%; }
        .nav-links > li { height: 100%; display: flex; align-items: center; }
        .nav-links a.nav-item { color: #a1a1aa; font-weight: 600; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; position: relative; padding: 10px 0; transition: color 0.3s ease; display: flex; align-items: center; gap: 6px; cursor: pointer; }
        .nav-links a.nav-item:hover, .nav-links a.nav-item.active { color: var(--brand-green); }
        .nav-links a.nav-item::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--brand-green); transition: width 0.4s var(--curve); }
        .nav-links a.nav-item:hover::after, .nav-links a.nav-item.active::after { width: 100%; }

        .has-mega-menu { position: static; }
        .has-mega-menu > a.nav-item::after { display: none !important; } 
        .chevron { font-size: 0.6rem; transition: transform 0.3s ease; display: inline-block; }

        .mega-dropdown { position: absolute; top: var(--nav-height); left: 50%; transform: translateX(-50%) translateY(10px); width: 100%; max-width: 1000px; background-color: rgba(10, 10, 10, 0.98); backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.05); border-top: 1px solid var(--brand-green); border-radius: 0 0 16px 16px; opacity: 0; visibility: hidden; pointer-events: none; display: none; transition: opacity 0.3s var(--curve), transform 0.3s var(--curve), visibility 0.3s var(--curve); z-index: 9998; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.6); min-height: 480px; }
        .mega-dropdown.active-mega { display: flex; opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
        .mega-sidebar { width: 350px; background: rgba(5,5,5,0.9); border-right: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; list-style: none; display: flex; flex-direction: column; }
        .mega-item { width: 100%; }
        .mega-item-link { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.3s; border-left: 3px solid transparent; }
        .mega-item.active .mega-item-link, .mega-item:hover .mega-item-link { background: rgba(166, 207, 67, 0.1); color: var(--brand-green); border-left: 3px solid var(--brand-green); }
        .mega-item-link span { transition: transform 0.3s; opacity: 0; transform: translateX(-10px); }
        .mega-item.active .mega-item-link span, .mega-item:hover .mega-item-link span { opacity: 1; transform: translateX(0); }

        .mega-content { flex-grow: 1; position: relative; background: transparent; padding: 2.5rem 3rem; }
        .mega-pane { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 2.5rem 3rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; transform: translateY(10px); }
        .mega-dropdown.show .mega-pane.active { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }  /* Scoped to .show deliberately. Unscoped, this re-enabled visibility and pointer-events on a descendant of a hidden dropdown, leaving an invisible 648x478 click-catcher pinned near the top of the viewport on every page - it swallowed clicks on whatever sat underneath, footer links included. */
        .mega-pane-title { color: white; font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; transition: color 0.3s ease; }
        .mega-pane-title:hover { color: var(--brand-green); }
        .mega-pane-subtitle { color: var(--brand-green); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem;}
        .pane-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; align-content: start; }
        .pane-grid a { color: #a1a1aa; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s, transform 0.3s; display: block; padding: 0.3rem 0; cursor: pointer; }
        .pane-grid a:hover { color: var(--brand-green); transform: translateX(5px); }

        .header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; z-index: 10000; flex: 1; }
        .theme-toggle { background: transparent; border: none; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; margin-right: 10px;}
        .theme-toggle:hover { background: rgba(255,255,255,0.1); }
        .theme-toggle svg { width: 22px; height: 22px; stroke: #a1a1aa; transition: 0.3s; }
        .theme-toggle:hover svg { stroke: var(--brand-green); transform: rotate(15deg); }
        .social-icons { display: flex; gap: 0.8rem; align-items: center; }
        .social-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background-color: rgba(255,255,255,0.05); transition: 0.3s var(--bouncy-curve); }
        .social-icons a svg { width: 16px; height: 16px; fill: #a1a1aa; transition: 0.3s; }
        .social-icons a:hover { background-color: var(--brand-green); transform: translateY(-4px) scale(1.1); }
        .social-icons a:hover svg { fill: #000; }
        .nav-cta { background-image: linear-gradient(90deg, var(--brand-green) 0%, #b1e54a 100%); color: #000; font-weight: 900; padding: 0.6rem 1.8rem; border-radius: 50px; text-transform: uppercase; font-size: 0.8rem; text-decoration: none; box-shadow: 0 4px 20px rgba(132, 204, 22, 0.3); transition: 0.4s var(--bouncy-curve); display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; }
        .nav-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 30px rgba(132, 204, 22, 0.5); }

        .burger-btn { display: none; cursor: pointer; width: 32px; height: 22px; position: relative; z-index: 10000; }
        .burger-btn span { display: block; width: 100%; height: 2px; background-color: white; position: absolute; transition: 0.4s var(--curve); border-radius: 4px; }
        .burger-btn span:nth-child(1) { top: 0; }
        .burger-btn span:nth-child(2) { top: 10px; width: 75%; right: 0; }
        .burger-btn span:nth-child(3) { top: 20px; }
        .burger-btn.active span:nth-child(1) { transform: rotate(45deg); top: 10px; background-color: var(--brand-green); }
        .burger-btn.active span:nth-child(2) { opacity: 0; width: 0; }
        .burger-btn.active span:nth-child(3) { transform: rotate(-45deg); top: 10px; background-color: var(--brand-green); }
        
        /* Mobile Overlay */
        .nav-overlay { 
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; 
            background-color: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); 
            z-index: 9998; display: flex; flex-direction: column; justify-content: flex-start; 
            padding: 120px 2rem 40px; gap: 1.5rem; opacity: 0; visibility: hidden; 
            transition: opacity 0.5s var(--curve), visibility 0.5s, background-color 0.4s ease; 
            overflow-y: auto; -webkit-overflow-scrolling: touch;
        }
        .nav-overlay.active { opacity: 1; visibility: visible; }
        .nav-overlay > * { flex-shrink: 0; }
        .nav-overlay a.menu-link, .mobile-accordion-btn { color: white; font-size: clamp(1.5rem, 5vw, 2.2rem); font-weight: 900; text-decoration: none; text-transform: uppercase; display: block; background: none; border: none; text-align: left; width: 100%; cursor: pointer; font-family: 'Saira SemiCondensed', sans-serif; transition: color 0.4s ease; flex-shrink: 0; }
        .mobile-accordion-btn { display: flex; justify-content: space-between; align-items: center; padding: 0;}
        .nav-overlay a.menu-link:hover, .mobile-accordion-btn:hover { color: var(--brand-green); }
        
        .mobile-sub-menu { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s ease-in-out; display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
        .mobile-sub-menu.open { max-height: 5000px; opacity: 1; padding-bottom: 1.5rem; padding-top: 1rem;}
        .mobile-umbrella-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; color: var(--brand-green); font-size: 1rem; font-weight: 800; text-transform: uppercase; padding: 1rem 0; cursor: pointer; font-family: 'Saira SemiCondensed', sans-serif; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .mobile-umbrella-btn span { transition: transform 0.3s; font-size: 1.2rem; }
        .mobile-umbrella-btn.active span { transform: rotate(45deg); }
        .mobile-umbrella-content { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease-in-out; display: flex; flex-direction: column; gap: 0.8rem; padding-left: 1rem; flex-shrink: 0; }
        .mobile-umbrella-content.open { max-height: 2000px; opacity: 1; padding-top: 0.5rem; padding-bottom: 1rem; }
        .mobile-umbrella-content a { color: #aaa; text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s; cursor: pointer;}
        .mobile-umbrella-content a:hover { color: white; }
        .view-all-link { color: var(--brand-green) !important; font-weight: 700 !important; margin-bottom: 0.5rem; }

        .mobile-socials { display: flex; justify-content: flex-start; gap: 1.5rem; margin-top: auto; padding-top: 2rem; padding-bottom: 2rem; flex-shrink: 0; }
        .mobile-socials a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background-color: #1a1a1a; transition: background-color 0.3s; }
        .mobile-socials a svg { width: 20px; height: 20px; fill: #a1a1aa; transition: fill 0.3s; }
        .mobile-socials a:hover { background-color: var(--brand-green); }
        .mobile-socials a:hover svg { fill: #000; }

        /* ========================================== */
        /* GENERAL SECTION & HERO SETTINGS            */
        /* ========================================== */
        .container { max-width: var(--max-container-width); margin-left: auto; margin-right: auto; padding-left: clamp(1.5rem, 4vw, 3rem); padding-right: clamp(1.5rem, 4vw, 3rem); position: relative; z-index: 10; }
        .section { padding-top: var(--section-spacing); padding-bottom: var(--section-spacing); position: relative; z-index: 10; width: 100%; overflow: hidden; transition: background-color 0.4s ease; }
        .section-header { text-align: center; margin-bottom: clamp(2rem, 5vh, 4rem); width: 100%; position: relative; z-index: 2;}
        .section-title { font-weight: 900; font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.1; color: white; word-wrap: break-word; margin-bottom: 1rem; transition: color 0.4s ease;}
        .section-subtitle { color: #94a3b8; font-size: clamp(0.95rem, 1.2vw, 1.1rem); max-width: 700px; margin: 0 auto; line-height: 1.6; font-weight: 400; text-align: center; transition: color 0.4s ease;}

        .hero { min-height: 70svh; display: flex; align-items: center; justify-content: center; padding-top: calc(var(--nav-height) + 40px); padding-bottom: 40px; text-align: center; position: relative; z-index: 10; width: 100%; overflow: hidden; }
        .hero-bg-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
        .hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: floatOrb 12s ease-in-out infinite alternate; transition: background 0.4s ease, opacity 0.4s ease, filter 0.4s ease;}
        .orb-1 { width: 40vw; height: 40vw; background: rgba(132, 204, 22, 0.3); top: -10%; left: -5%; animation-delay: 0s; }
        .orb-2 { width: 45vw; height: 45vw; background: rgba(20, 60, 10, 0.5); bottom: -15%; right: -10%; animation-delay: -5s; }
        .hero-grid { position: absolute; bottom: -50%; left: -50%; width: 200%; height: 200%; z-index: 1; opacity: 0.15; background-image: linear-gradient(rgba(166, 207, 67, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(166, 207, 67, 0.3) 1px, transparent 1px); background-size: 50px 50px; transform: perspective(1000px) rotateX(75deg); transform-origin: center center; animation: gridMove 10s linear infinite; mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0) 60%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0) 60%); transition: opacity 0.4s ease, background-image 0.4s ease; }
        
        .hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
        .hero-eyebrow { display: inline-block; color: var(--brand-green); font-weight: 800; font-size: clamp(0.8rem, 1vw, 0.9rem); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; padding: 0.5rem 1.5rem; border: 1px solid rgba(132, 204, 22, 0.3); border-radius: 50px; background: rgba(132, 204, 22, 0.05); backdrop-filter: blur(5px); transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;}
        .hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: white; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.5px; text-transform: uppercase; word-wrap: break-word; transition: color 0.4s ease;}
        .green-shade { color: var(--brand-green); text-shadow: 0 0 30px rgba(132,204,22,0.25); transition: color 0.4s ease, text-shadow 0.4s ease;}
        .hero-p { max-width: 800px; margin: 0 auto 2.5rem; font-size: clamp(1rem, 1.2vw, 1.15rem); color: #a1a1aa; font-weight: 400; line-height: 1.6; transition: color 0.4s ease;}
        
        .hero-anim { opacity: 0; transform: translateY(30px); animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
        .hero-eyebrow.hero-anim { animation-delay: 0.1s; }
        .hero-title.hero-anim { animation-delay: 0.2s; }
        .hero-p.hero-anim { animation-delay: 0.3s; }

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

        /* ========================================== */
        /* CASE STUDY / GALLERY VIEW TOGGLE           */
        /* ========================================== */
        .view-toggle-container { display: flex; justify-content: center; margin-bottom: 3rem; position: relative; z-index: 2; }
        .view-toggle-wrapper { display: inline-flex; background: #d9e5c5; padding: 5px; border-radius: 50px; border: 1px solid #c8d9ae; gap: 5px; transition: background 0.1s ease, border-color 0.1s ease; }
        .view-btn { background: transparent; border: none; color: #555; padding: 10px 25px; border-radius: 50px; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center;}
        .view-btn.active { background: var(--brand-green); color: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
        .view-btn:hover:not(.active) { color: #222; }

        /* ========================================== */
        /* CUSTOM CAROUSEL & SLIDER CONTROLS          */
        /* ========================================== */
        .custom-carousel { width: 100%; position: relative; margin-top: 3rem;}
        .carousel-track {
            display: flex; gap: 2rem; overflow-x: auto; scroll-snap-type: x mandatory;
            scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
            padding-bottom: 1.5rem; 
        }
        .carousel-track::-webkit-scrollbar { display: none; }
        .carousel-slide {
            flex: 0 0 calc(33.333% - 1.34rem); 
            scroll-snap-align: start; display: flex; flex-direction: column; height: auto;
        }

        .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
        .slider-btn { width: 45px; height: 45px; border-radius: 50%; background-color: rgba(17, 17, 17, 0.8); border: 1px solid rgba(255,255,255,0.1); box-shadow: none; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
        .slider-btn:hover { transform: scale(1.1); background-color: var(--brand-green); border-color: var(--brand-green); box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3); }
        .slider-btn:hover svg { stroke: #050505; }
        body.light-theme .slider-btn { background-color: #ffffff; border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        body.light-theme .slider-btn:hover { background-color: #ffffff; border-color: rgba(0,0,0,0.06); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
        body.light-theme .slider-btn:hover svg { stroke: #5a800d; }
        .slider-btn svg { width: 18px; height: 18px; stroke: var(--slider-arrow-color); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
        .slider-counter { display: inline-flex; align-items: baseline; justify-content: center; min-width: 74px; font-weight: 800; font-size: 0.95rem; letter-spacing: 1px; color: var(--slider-dot-active); font-variant-numeric: tabular-nums; }
        .slider-counter .sc-cur { font-size: 1.15rem; }
        .slider-counter .sc-sep { opacity: 0.45; margin: 0 4px; }
        .slider-counter .sc-tot { opacity: 0.6; }
        body.light-theme .slider-counter { color: #5a800d; }

        .slider-dots { display: flex; align-items: center; gap: 10px; }
        .slider-dot { width: 10px; height: 10px; border-radius: 50%; background-color: var(--slider-dot-inactive); border: none; cursor: pointer; transition: background-color 0.3s ease, transform 0.3s ease; padding: 0; }
        .slider-dot.active { background-color: var(--slider-dot-active); transform: scale(1.25); }

        /* ========================================== */
        /* PORTFOLIO CARDS                            */
        /* ========================================== */
        .portfolio-card { background-color: var(--bg-card); border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; box-sizing: border-box; width: 100%; height: 100%; overflow: hidden; transition: transform 0.4s var(--bouncy-curve), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease; }
        .portfolio-card:hover { transform: translateY(-10px); border-color: rgba(166, 207, 67, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.6); z-index: 10; background-color: var(--bg-card-hover); }
        .media-box { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background-color: #000; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .media-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .portfolio-card:hover .media-box img { transform: scale(1.08); } 
        .card-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; box-sizing: border-box; }
        .card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
        .card-meta .location { color: #888; transition: color 0.4s ease; }
        .card-meta .stat { color: var(--brand-green); }
        .card-content h3 { font-size: clamp(1.3rem, 1.8vw, 1.5rem); font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.3; transition: color 0.4s ease; }
        .portfolio-card:hover .card-content h3 { color: var(--brand-green); }
        .card-content p.blog-excerpt { color: #a1a1aa; font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; flex-grow: 1; transition: color 0.4s ease;}
        .project-specs { list-style: none; padding: 0; margin: 0 0 2rem 0; flex-grow: 1; display: flex; flex-direction: column; gap: 0.6rem; }
        .project-specs li { font-size: 0.9rem; color: #aaa; line-height: 1.5; position: relative; padding-left: 15px; transition: color 0.4s ease; }
        .project-specs li::before { content: '•'; position: absolute; left: 0; top: -2px; color: var(--brand-green); font-size: 1.2rem; font-weight: bold; }
        .project-specs strong { color: #fff; font-weight: 700; transition: color 0.4s ease; }
        
        .read-more-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-green); background: none; border: none; padding: 0; font-family: inherit; cursor: pointer; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: gap 0.3s ease; margin-top: auto; }
        .read-more-btn span { text-decoration: none; display: inline-block; }
        .read-more-btn:hover { gap: 12px; color: white;}
        .view-all-btn-container { text-align: center; margin-top: 3rem; width: 100%; }
        .view-all-btn { background-image: linear-gradient(90deg, var(--brand-green) 0%, #b1e54a 100%); color: #000; padding: 1.2rem 3rem; border-radius: 50px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.95rem; text-decoration: none; transition: 0.4s var(--bouncy-curve); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3); }
        .view-all-btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 40px rgba(132, 204, 22, 0.5); filter: brightness(1.08);}

        /* ========================================== */
        /* FEATURED CASE STUDY & NESTED SLIDER        */
        /* ========================================== */
        .featured-cs-wrapper { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: center; position: relative; z-index: 2; margin-top: 2rem; }
        .cs-left-content { display: flex; flex-direction: column; }
        .cs-pre-title { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.5rem; color: #fff; transition: color 0.4s ease; }
        .cs-main-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--brand-green); text-transform: uppercase; line-height: 1.1; margin-bottom: 1.5rem; transition: color 0.4s ease; }
        .cs-description { color: #a1a1aa; font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; transition: color 0.4s ease; }
        .cs-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; transition: border-color 0.4s ease; }
        .cs-metric-item h4 { color: var(--brand-green); font-size: clamp(1.8rem, 2.5vw, 2.2rem); font-weight: 900; margin-bottom: 0.2rem; transition: color 0.4s ease; }
        .cs-metric-item p { color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.4s ease; }
        .cs-metric-item span { color: #888; font-size: 0.75rem; display: block; margin-top: 0.3rem; transition: color 0.4s ease; line-height: 1.4;}
        .cs-bullets { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
        .cs-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #d1d5db; line-height: 1.5; transition: color 0.4s ease; }
        .cs-bullets li svg { width: 20px; height: 20px; color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
        
        .cs-right-image.js-nested-slideshow { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); width: 100%; height: auto; aspect-ratio: 16 / 9; isolation: isolate; }
        .nested-img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; display: block; opacity: 0; visibility: hidden; transition: opacity 1.2s ease-in-out, transform 6s linear; transform: scale(1); z-index: 0; }
        .nested-img.active-img { opacity: 1; visibility: visible; z-index: 1; transform: scale(1.08); }
        .cs-pill { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--brand-green); color: #000; font-weight: 800; font-size: 0.75rem; padding: 0.5rem 1.2rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; z-index: 2; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        /* Featured case study: 3:4 portrait media (portfolio carousel unaffected) */
        .featured-cs-wrapper .cs-right-image.js-nested-slideshow { aspect-ratio: 3 / 4; }


        .cs-slider-container { position: relative; width: 100%; margin-top: 2rem; }
        .cs-slider-viewport { overflow: hidden; width: 100%; border-radius: 16px; }
        .cs-slide-track { display: flex; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); width: 100%; will-change: transform; }
        .cs-slide { flex: 0 0 100%; min-width: 100%; box-sizing: border-box; }

        .cs-slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
        .cs-arrow { background: rgba(17, 17, 17, 0.8); border: 1px solid rgba(255,255,255,0.1); color: var(--brand-green); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.4s var(--bouncy-curve); backdrop-filter: blur(5px); }
        .cs-arrow:hover { background: var(--brand-green); color: #000; border-color: var(--brand-green); transform: scale(1.1); box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3); }
        .cs-dots { display: flex; gap: 10px; }
        .cs-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.4s var(--bouncy-curve); }
        .cs-dot:hover { background: rgba(255,255,255,0.5); }
        .cs-dot.active { background: var(--brand-green); transform: scale(1.4); box-shadow: 0 0 10px rgba(132, 204, 22, 0.4); }

        /* ========================================== */
        /* FAQ SECTION                                */
        /* ========================================== */
        .faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
        .faq-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease; }
        .faq-item:hover { border-color: rgba(166, 207, 67, 0.4); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        .faq-question { width: 100%; text-align: left; padding: 1.5rem 2rem; background: transparent; border: none; color: white; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; font-family: 'Saira SemiCondensed', sans-serif; }
        .faq-question:hover { color: var(--brand-green); }
        .faq-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
        .faq-icon::before, .faq-icon::after { content: ''; position: absolute; background-color: var(--brand-green); transition: transform 0.3s ease, opacity 0.3s ease; }
        .faq-icon::before { top: 11px; left: 4px; width: 16px; height: 2px; }
        .faq-icon::after { top: 4px; left: 11px; width: 2px; height: 16px; }
        .faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
        .faq-item.active .faq-icon::before { transform: rotate(180deg); }
        .faq-item.active .faq-question { color: var(--brand-green); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--curve); }
        .faq-answer-inner { padding: 0 2rem 1.5rem; color: #a1a1aa; line-height: 1.6; font-size: 0.95rem; }

        /* ========================================== */
        /* POPUP FORM MODAL & MINIMIZED CIRCLE        */
        /* ========================================== */
        .popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 100000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; padding: 20px; }
        .popup-overlay.show { opacity: 1; visibility: visible; }
        .popup-container { background: var(--bg-card); border: 1px solid rgba(166, 207, 67, 0.3); border-radius: 20px; width: 100%; max-width: 500px; padding: 2.5rem; position: relative; transform: translateY(50px) scale(0.95); transition: transform 0.5s var(--bouncy-curve); box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
        .popup-overlay.show .popup-container { transform: translateY(0) scale(1); }
        .popup-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; color: white; width: 35px; height: 35px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
        .popup-close:hover { background: var(--brand-green); color: black; transform: rotate(90deg); }
        .popup-header { text-align: center; margin-bottom: 2rem; }
        .popup-header h3 { color: white; font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.5rem; line-height: 1.2; }
        .popup-header p { color: #a1a1aa; font-size: 0.95rem; }
        .popup-form { display: flex; flex-direction: column; gap: 1rem; }
        .popup-form input, .popup-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 1rem; border-radius: 10px; font-family: 'Saira SemiCondensed', sans-serif; font-size: 0.95rem; transition: border-color 0.3s ease, background 0.3s ease; }
        .popup-form input:focus, .popup-form textarea:focus { outline: none; border-color: var(--brand-green); background: rgba(255,255,255,0.08); }
        .popup-form textarea { resize: vertical; }

        .form-floating-btn { position: fixed; bottom: 105px; right: 30px; width: 60px; height: 60px; background-color: var(--brand-green); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 8500; box-shadow: 0 10px 30px rgba(132, 204, 22, 0.4); cursor: pointer; opacity: 0; visibility: hidden; transform: scale(0) rotate(-90deg); transition: all 0.5s var(--bouncy-curve); }
        .form-floating-btn.show { opacity: 1; visibility: visible; transform: scale(1) rotate(0deg); }
        .form-floating-btn:hover { transform: scale(1.15) rotate(10deg); box-shadow: 0 15px 35px rgba(132, 204, 22, 0.6); }
        .form-floating-btn svg { width: 24px; height: 24px; fill: #000; }

        /* ========================================== */
        /* CTA & FOOTER                               */
        /* ========================================== */
        .custom-cta-section { padding: 60px 2rem; background: linear-gradient(145deg, #0a0a0a, #161a0a); border-top: 1px solid rgba(166, 207, 67, 0.3); border-bottom: 1px solid rgba(166, 207, 67, 0.3); width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-sizing: border-box; position: relative; overflow: hidden; transition: background 0.4s ease, border-color 0.4s ease;}
        .cta-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2;}
        .cta-content h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: -0.3px; transition: color 0.4s ease;}
        .cta-content p { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #a1a1aa; line-height: 1.8; margin-bottom: 0; transition: color 0.4s ease;}
        .cta-actions { display: flex; flex-direction: row; gap: 1.5rem; justify-content: center; margin-top: 3rem; width: 100%; flex-wrap: wrap; position: relative; z-index: 2;}
        .cta-btn-primary { background-color: var(--brand-green); color: black; padding: 1.2rem 3rem; border-radius: 50px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; font-size: 0.95rem; text-decoration: none; transition: 0.4s var(--bouncy-curve); box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3); text-align: center; }
        .cta-btn-primary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 40px rgba(132, 204, 22, 0.5); background-color: #b8dc63; }
        .cta-btn-secondary { background-color: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); padding: 1.2rem 3rem; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.95rem; text-decoration: none; transition: 0.4s var(--bouncy-curve); text-align: center; backdrop-filter: blur(5px);}
        .cta-btn-secondary:hover { border-color: white; background-color: rgba(255,255,255,0.05); transform: translateY(-5px) scale(1.05);}

        .footer { background-color: #050505; padding: clamp(60px, 8vh, 100px) clamp(1.5rem, 4vw, 2.5rem) 40px; position: relative; z-index: 100; width: 100%; transition: background-color 0.4s ease;}
        .footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) max-content max-content max-content minmax(190px, 1fr); gap: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem); align-items: start; max-width: var(--max-container-width); margin: 0 auto; box-sizing: border-box; width: 100%; }
    .footer-nav-row { display: contents; }
        .footer-brand img { height: 55px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; display: block; margin-left: -5px; }
        .footer-brand p { color: #808080; margin: 1.25rem 0 0; line-height: 1.7; font-size: 1rem; max-width: 380px; transition: color 0.4s ease;}
        .footer-contact-link { color: #fff; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: 0.2px; transition: color 0.3s ease; word-wrap: break-word; }
    .footer-contact-link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--brand-green); transition: color 0.3s ease; }
        .footer-contact-link:hover { color: var(--brand-green) !important; }
        .footer-address { font-style: normal; color: #808080; margin-top: 0.5rem; font-size: 0.75rem; line-height: 1.6; display: block; transition: color 0.4s ease;}
        .footer-brand-block { margin-top: 2rem; }
    .footer-brand-sub { margin-top: 1.25rem; }
    .footer-office-label { color: var(--text-main); font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; transition: color 0.4s ease; }
    .footer-socials { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
        .footer-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); transition: all 0.4s var(--bouncy-curve); }
        .footer-socials a svg { width: 16px; height: 16px; fill: #888; transition: fill 0.3s ease; }
        .footer-socials a:hover { background-color: var(--brand-green); border-color: var(--brand-green); transform: translateY(-5px) scale(1.1); }
        .footer-socials a:hover svg { fill: #000 !important; }
        .footer h4, .footer .footer-col-title { color: var(--brand-green); font-weight: 900; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; font-size: 1.125rem; transition: color 0.4s ease; }
        .footer-ul { list-style: none; }
        .footer-locations { list-style: none; }
        .footer-locations li { margin-bottom: 0.75rem; color: #808080; font-size: clamp(0.95rem, 1.2vw, 1.05rem); display: block; transition: color 0.4s ease; }
        .footer-ul li { margin-bottom: 0.75rem; }
        .footer-ul a { color: #808080; text-decoration: none; transition: transform 0.4s var(--curve), color 0.4s ease, font-weight 0.4s ease; font-size: 1rem; display: inline-block; }
        .footer-ul a:hover { color: var(--brand-green) !important; transform: translateX(8px); font-weight: 700; }

    /* ---- Footer location discovery system ---- */
    .footer-locations-system { opacity: 1; transform: none; }
    .fls-block + .fls-block { margin-top: 2rem; }
    .fls-countries { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.5rem; }
    .fls-countries a, .fls-countries span { color: #a1a1aa; text-decoration: none; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; transition: color 0.3s ease; }
    .fls-countries a:hover, .fls-countries a:focus-visible { color: var(--brand-green); }
    .fls-countries .fls-dot { color: #333; font-size: 0.7rem; }
    .fls-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem 1.5rem; margin: 0; padding: 0; }
    .fls-list a { color: #808080; text-decoration: none; font-size: 1rem; display: inline-block; transition: transform 0.4s var(--curve), color 0.4s ease, font-weight 0.4s ease; }
    .fls-list a:hover, .fls-list a:focus-visible { color: var(--brand-green); transform: translateX(8px); font-weight: 700; }
    @media (max-width: 480px) { .fls-list { grid-template-columns: 1fr; } }
    @media (prefers-reduced-motion: reduce) {
        .footer-locations-system { transition: none !important; }
        .footer-locations-system { opacity: 1; transform: none; }
    }
        .footer-bottom { display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.85rem; text-align: center; margin-top: clamp(3rem, 5vw, 4.5rem); padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.07); color: #808080; font-size: 0.85rem; letter-spacing: 0.3px; font-weight: 500; width: 100%; transition: color 0.4s ease, border-color 0.4s ease;}
    .footer-bottom p { margin: 0; }
    .footer-cta p { color: #808080; font-size: 0.92rem; line-height: 1.65; margin: 0 0 1.35rem; max-width: 30ch; transition: color 0.4s ease; }
    .footer-cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.5rem; border-radius: 50px; background: var(--brand-green); color: #000; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 0.72rem; text-decoration: none; transition: transform 0.35s var(--bouncy-curve), box-shadow 0.35s ease, filter 0.35s ease; }
    .footer-cta-btn svg { width: 14px; height: 14px; }
    .footer-cta-btn:hover, .footer-cta-btn:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(166,207,67,0.28); filter: brightness(1.06); }
    body.light-theme .footer-cta p { color: #4b5563; }
    .footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 0; padding: 0; }
    .footer-legal a { color: #808080; text-decoration: none; transition: color 0.3s ease; }
    .footer-legal a:hover { color: var(--brand-green); }
    body.light-theme .footer-legal a { color: #4b5563; }

        /* ========================================================= */
        /* LIGHT THEME OVERRIDES                                     */
        /* ========================================================= */
        body.light-theme { --slider-arrow-color: #5a800d; --slider-dot-active: #5a800d; --slider-dot-inactive: #d0dcb9; --bg-dark: #ffffff; --bg-secondary: #f4f4f5; --bg-card: #f9fafb; --bg-card-hover: #ffffff; --text-main: #111827; --text-muted: #4b5563; --border-color: #e5e7eb; background-color: var(--bg-dark); color: var(--text-main); }
        body.light-theme::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; z-index: 0; }
        body.light-theme .logo-dark { display: none !important; }
        body.light-theme .logo-light { display: block !important; }
        body.light-theme .mouse-glow { background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(132, 204, 22, 0.35) 0%, transparent 60%); }
        body.light-theme .hero-orb { opacity: 0.65; filter: blur(70px); }
        body.light-theme .orb-1 { background: rgba(132, 204, 22, 0.45); }
        body.light-theme .orb-2 { background: rgba(166, 207, 67, 0.35); }
        body.light-theme .glow-divider { background: linear-gradient(90deg, transparent, rgba(132, 204, 22, 0.6), transparent); height: 2px;}

        body.light-theme .section-title, body.light-theme h2, body.light-theme .cta-content h2, body.light-theme .portfolio-card h3 { color: #000; }
        body.light-theme .hero-title { color: #000; }
        body.light-theme .hero-p, body.light-theme .section-subtitle, body.light-theme .card-content p.blog-excerpt { color: #4b5563; }
        body.light-theme .green-shade { color: #5a800d; text-shadow: 0 0 25px rgba(132, 204, 22, 0.3); }
        body.light-theme .hero-eyebrow { background: rgba(132, 204, 22, 0.15); color: #5a800d; border-color: rgba(132, 204, 22, 0.4); }
        body.light-theme .bg-watermark { color: rgba(0,0,0,0.04); }
        body.light-theme .hero-grid { opacity: 0.5; background-image: linear-gradient(rgba(132, 204, 22, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(132, 204, 22, 0.5) 1px, transparent 1px); mask-image: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0) 60%); -webkit-mask-image: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0) 60%); }
        body.light-theme .ambient-particle { opacity: 0.4; box-shadow: 0 0 30px rgba(132, 204, 22, 0.5); }
        body.light-theme .ambient-plus { opacity: 0.5; color: #5a800d; }

        body.light-theme .cs-pre-title { color: #000; }
        body.light-theme .cs-main-title { color: #5a800d; }
        body.light-theme .cs-description { color: #4b5563; }
        body.light-theme .cs-metric-item h4 { color: #5a800d; }
        body.light-theme .cs-metric-item p { color: #111; }
        body.light-theme .cs-metric-item span { color: #666; }
        body.light-theme .cs-bullets li { color: #4b5563; }
        body.light-theme .cs-metrics-grid { border-color: rgba(0,0,0,0.1); }

        body.light-theme .portfolio-card { background-color: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
        body.light-theme .portfolio-card:hover { background-color: #ffffff; box-shadow: 0 20px 40px rgba(132, 204, 22, 0.15), 0 10px 20px rgba(0,0,0,0.05); border-color: rgba(132, 204, 22, 0.6); }
        body.light-theme .project-specs li strong { color: #000; }
        body.light-theme .project-specs li { color: #4b5563; }
        body.light-theme .card-meta .location, body.light-theme .card-meta .stat { color: #666; }
        body.light-theme .media-box { background-color: #f3f4f6; border-bottom-color: rgba(0,0,0,0.1); }

        body.light-theme .navbar { background-color: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(0,0,0,0.1); }
        body.light-theme .nav-links a.nav-item { color: #374151; }
        body.light-theme .nav-links a.nav-item:hover, body.light-theme .nav-links a.nav-item.active { color: var(--brand-green); }
        body.light-theme .burger-btn span { background-color: #000; }
        body.light-theme .burger-btn.active span { background-color: var(--brand-green); }
        body.light-theme .social-icons a svg { fill: #374151; }
        body.light-theme .social-icons a:hover svg { fill: #000; }
        body.light-theme .theme-toggle svg { stroke: #4b5563; }
        body.light-theme .theme-toggle:hover stroke { stroke: var(--brand-green); }
        body.light-theme .theme-toggle .sun-icon { display: none; }
        body.light-theme .theme-toggle .moon-icon { display: block !important; stroke: #000; }
        
        body.light-theme .mega-dropdown { background-color: rgba(255, 255, 255, 0.98); border-bottom-color: rgba(0,0,0,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        body.light-theme .mega-sidebar { background: rgba(243, 244, 246, 0.9); border-right-color: rgba(0,0,0,0.05); }
        body.light-theme .mega-item-link { color: #111827; }
        body.light-theme .mega-item.active .mega-item-link, body.light-theme .mega-item:hover .mega-item-link { background: #fff; }
        body.light-theme .mega-pane-title { color: #000; }
        body.light-theme .mega-pane-subtitle { border-bottom-color: rgba(0,0,0,0.1); }
        body.light-theme .pane-grid a { color: #4b5563; }
        body.light-theme .pane-grid a:hover { color: var(--brand-green); }
        body.light-theme .mega-dropdown::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }

        body.light-theme .nav-overlay { background-color: rgba(255, 255, 255, 0.98); }
        body.light-theme .nav-overlay a.menu-link, body.light-theme .mobile-accordion-btn { color: #000; }
        body.light-theme .mobile-socials a { background-color: #f3f4f6; }
        body.light-theme .mobile-socials a svg { fill: #374151; }
        body.light-theme .mobile-socials a:hover svg { fill: #000; }
        body.light-theme .mobile-umbrella-btn { border-bottom-color: rgba(0,0,0,0.1); }
        body.light-theme .mobile-umbrella-content a { color: #4b5563; }
        body.light-theme .mobile-umbrella-content a:hover { color: #000; }

        body.light-theme .faq-item { background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.08); }
        body.light-theme .faq-question { color: #000; }
        body.light-theme .faq-answer-inner { color: #4b5563; }

        /* Pop-up overrides for Light Theme */
        body.light-theme .popup-overlay { background: rgba(255, 255, 255, 0.85); }
        body.light-theme .popup-container { background: #ffffff; border-color: rgba(132, 204, 22, 0.4); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
        body.light-theme .popup-header h3 { color: #000; }
        body.light-theme .popup-header p { color: #4b5563; }
        body.light-theme .popup-close { background: rgba(0,0,0,0.05); color: #000; }
        body.light-theme .popup-close:hover { background: var(--brand-green); color: #fff; }
        body.light-theme .popup-form input, body.light-theme .popup-form textarea { background: #f9fafb; border-color: rgba(0,0,0,0.1); color: #000; }
        body.light-theme .popup-form input:focus, body.light-theme .popup-form textarea:focus { border-color: var(--brand-green); background: #fff; }

        body.light-theme .footer { background-color: #f9fafb; }
        body.light-theme .custom-cta-section { background: linear-gradient(145deg, #ffffff, #f4f5f0); border-color: rgba(132, 204, 22, 0.3); }
        body.light-theme .cta-btn-secondary { color: #000; border-color: rgba(0,0,0,0.2); }
        body.light-theme .cta-btn-secondary:hover { background-color: rgba(0,0,0,0.05); border-color: #000; }
        body.light-theme .footer-brand p, body.light-theme .footer-address { color: #4b5563; }
        body.light-theme .footer-brand strong { color: #000; }
        body.light-theme .footer-contact-link { color: #000; }
        body.light-theme .footer-ul a { color: #4b5563; }
        body.light-theme .footer-locations li { color: #4b5563; }

    body.light-theme .fls-countries a, body.light-theme .fls-countries span { color: #52525b; }
    body.light-theme .fls-list a { color: #4b5563; }
    
        body.light-theme .footer-bottom { color: #4b5563; border-top-color: rgba(0,0,0,0.1); }
        body.light-theme .footer h4, body.light-theme .footer .footer-col-title { color: #5a7a14; }

        /* ========================================================= */
        /* MOBILE OPTIMIZATION                                       */
        /* ========================================================= */
        @media (max-width: 1200px) {
        .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; } .footer-locations-system { grid-column: 1 / -1; }
            
            .carousel-slide { flex: 0 0 calc(50% - 1rem); }
            .featured-cs-wrapper { gap: 2rem; }
        }

        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .header-actions .social-icons { display: none !important; }
            .burger-btn { display: block; margin-left: 1rem; }
            .logo-link img { height: 40px; }
            .navbar { padding: 0.8rem 1.5rem; }
            .header-actions { margin-left: auto; justify-content: flex-end; flex: 0; }
            .bg-watermark { display: none; } 
            .navbar .nav-cta { display: none; } 
            
            .featured-cs-wrapper { grid-template-columns: 1fr; align-items: start;}
            .cs-right-image.js-nested-slideshow { order: -1; aspect-ratio: 16 / 9; height: auto; min-height: 300px; }
        }

        @media (max-width: 768px) {
        .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
            .navbar { padding: 0.8rem 1.2rem; }
            .header-actions .nav-cta { display: none; }
            
            .hero { min-height: auto; padding-top: 140px; padding-bottom: 60px; }
            .hero-grid { transform: perspective(600px) rotateX(75deg) translateY(-50px); }
            .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); letter-spacing: -0.3px; }
            
            .container { padding-left: 1.2rem; padding-right: 1.2rem; }
            
            .carousel-slide { flex: 0 0 100%; }
            .carousel-track { gap: 1.5rem; }

            .portfolio-card { border-radius: 20px; }

            .cs-metrics-grid { grid-template-columns: 1fr; gap: 1.5rem; }

            .cta-actions { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
            .cta-btn-primary, .cta-btn-secondary { max-width: 100%; width: 100%; padding: 1.2rem 2rem; }

            
            .footer { padding: 60px 1.5rem 40px; }
            
            .whatsapp-fixed { width: 50px; height: 50px; bottom: 20px; right: 20px; }
            .whatsapp-fixed svg { width: 25px; height: 25px; }

            .form-floating-btn { width: 50px; height: 50px; bottom: 85px; right: 20px; left: auto; }
            .form-floating-btn svg { width: 20px; height: 20px; }
        }

        @media (max-width: 400px) {
            .logo-link img { height: 35px !important; }
            .burger-btn { width: 28px; margin-left: 0.5rem; }
        }
    