
        /* ========================================== */
        /* 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: 90px;
            --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);
        }

        * { 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.8; -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 { 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); }

        .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(6rem, 12vw, 15rem); 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%; }

        .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-fixed { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; 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: 35px !important; height: 35px !important; fill: white; flex-shrink: 0; }
        @keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

        /* ========================================== */
        /* HEADER & NAVIGATION                        */
        /* ========================================== */
        .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 { height: var(--nav-height); 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; transition: 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; transition: all 0.3s var(--curve); z-index: 9998; display: flex; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.6); min-height: 480px; }
        .mega-dropdown.active-mega { 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.8rem 2.2rem; border-radius: 50px; text-transform: uppercase; font-size: 0.85rem; 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: 3px; 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: 9px; width: 75%; right: 0; }
        .burger-btn span:nth-child(3) { top: 18px; }
        .burger-btn.active span:nth-child(1) { transform: rotate(45deg); top: 9px; 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: 9px; background-color: var(--brand-green); }

        .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; }

        .container { max-width: var(--max-container-width); margin-left: auto; margin-right: auto; padding-left: clamp(1.5rem, 5vw, 4rem); padding-right: clamp(1.5rem, 5vw, 4rem); 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;}
        
        /* ========================================== */
        /* HERO SECTION                               */
        /* ========================================== */
        .hero { 
            min-height: 100svh; display: flex; align-items: center; justify-content: center; 
            padding-top: var(--nav-height); padding-bottom: 0; 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(90px); 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: 45vw; height: 45vw; background: rgba(132, 204, 22, 0.3); top: -10%; left: -5%; animation-delay: 0s; }
        .orb-2 { width: 55vw; height: 55vw; background: rgba(20, 60, 10, 0.5); bottom: -15%; right: -10%; animation-delay: -5s; }
        @keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, 60px) scale(1.15); } }

        .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: 60px 60px; 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;
        }
        @keyframes gridMove { 0% { transform: perspective(1000px) rotateX(75deg) translateY(0); } 100% { transform: perspective(1000px) rotateX(75deg) translateY(60px); } }

        .hero-content { position: relative; z-index: 2; max-width: 1200px; 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, 1rem); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 2rem; padding: 0.6rem 1.8rem; border: 1px solid rgba(132, 204, 22, 0.3); border-radius: 50px; background: rgba(132, 204, 22, 0.05); backdrop-filter: blur(5px); }
        .hero-title { font-size: clamp(3.5rem, 8vw, 9rem); font-weight: 900; color: white; line-height: 1; margin-bottom: 1.5rem; letter-spacing: -0.75px; text-transform: uppercase; word-wrap: break-word; }
        .green-shade { color: var(--brand-green); text-shadow: 0 0 40px rgba(132,204,22,0.25); }
        .hero-p { max-width: 900px; margin: 0 auto 3rem; font-size: clamp(1.1rem, 2vw, 1.5rem); color: #a1a1aa; font-weight: 400; line-height: 1.7; }
        
        .hero-anim { opacity: 0; transform: translateY(40px); 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.3s; }
        .hero-p.hero-anim { animation-delay: 0.5s; }
        @keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        
        /* ========================================== */
        /* VIEW TOGGLE SYSTEM & FILTERS               */
        /* ========================================== */
        .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.1s linear; 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; }

        .filter-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; width: 100%; position: relative; z-index: 2; }
        .filter-btn { background-color: transparent; border: 1px solid rgba(255,255,255,0.2); color: #a1a1aa; padding: 0.8rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.1s linear; }
        .filter-btn:hover, .filter-btn.active { background-color: var(--brand-green) !important; border-color: var(--brand-green) !important; color: #000 !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3); }

        /* ========================================== */
        /* PORTFOLIO GRID & LAYOUT STRUCTURE          */
        /* ========================================== */
        .portfolio-layout-wrapper { display: flex; gap: 2rem; align-items: flex-start; position: relative; width: 100%; transition: all 0.4s ease; }
        .portfolio-grid { flex: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; width: 100%; align-items: stretch; position: relative; z-index: 2; transition: all 0.4s ease; }
        
        .portfolio-card { cursor: pointer; background-color: var(--bg-card); border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s var(--bouncy-curve); display: flex; flex-direction: column; box-sizing: border-box; width: calc((100% - 5rem) / 3); opacity: 1; position: relative; cursor: pointer; }
        .portfolio-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent); transform: skewX(-20deg); transition: 0.7s ease; z-index: 5; pointer-events: none; }
        .portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 15px rgba(132, 204, 22, 0.1); border-color: rgba(166, 207, 67, 0.4); z-index: 10; background-color: var(--bg-card-hover); }
        .portfolio-card:hover::before { left: 200%; }
        
        .media-box { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background-color: #000; border-bottom: 1px solid rgba(255,255,255,0.05); transition: border-color 0.4s ease; }
        .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.15); } 

        /* NESTED THUMBNAIL NAV BUTTONS */
        .card-nav { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 15px; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; z-index: 10; }
        .portfolio-card:hover .card-nav { opacity: 1; }
        .c-btn { background: rgba(10, 10, 10, 0.7); border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.1s linear; pointer-events: auto; backdrop-filter: blur(5px); }
        .c-btn:hover { background: var(--brand-green); color: #000; border-color: var(--brand-green); transform: scale(1.15); }

        .card-content { padding: 2.5rem; display: flex; flex-direction: column; flex-grow: 1; word-wrap: break-word; box-sizing: border-box; }
        .card-meta { display: flex; justify-content: space-between; margin-bottom: 1.5rem; font-size: 0.85rem; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; flex-wrap: wrap; gap: 0.5rem; }
        .card-meta span { transition: color 0.4s ease; }
        .card-content h3 { font-size: clamp(1.4rem, 2vw, 1.6rem); font-weight: 900; color: #fff; margin-bottom: 1.5rem; line-height: 1.3; transition: color 0.4s ease; }
        .portfolio-card:hover .card-content h3 { color: var(--brand-green); }
        
        .project-specs { list-style: none; padding: 0; margin: 0 0 1.5rem 0; flex-grow: 1; display: flex; flex-direction: column; gap: 0.6rem; }
        .project-specs li { font-size: 0.95rem; color: #a1a1aa; line-height: 1.5; position: relative; padding-left: 15px; transition: color 0.4s ease;}
        .project-specs li::before { content: ''; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background-color: var(--brand-green); }
        .project-specs strong { color: #d1d5db; font-weight: 600; transition: color 0.4s ease;}

        .read-more-btn .ext { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; margin-left: 2px; flex-shrink: 0; }
        .read-more-btn { background-color: transparent; border: none; color: var(--brand-green); padding: 0; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.4s var(--bouncy-curve); margin-top: auto; display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; width: fit-content; }
        .portfolio-card:hover .read-more-btn { color: white; gap: 15px; transform: translateX(5px); }

        /* ========================================== */
        /* MODAL POP-UP (CASE STUDY)                  */
        /* ========================================== */
        .modal-overlay { position: fixed; inset: 0; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 100000; display: none; align-items: center; justify-content: center; padding: 2rem; opacity: 0; transition: opacity 0.4s var(--curve), background-color 0.4s ease; }
        .modal-overlay.active { opacity: 1; display: flex; }
        .modal-box { background-color: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); max-width: 900px; width: 100%; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); padding: clamp(2rem, 5vw, 4rem); position: relative; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); transform: scale(0.95); transition: transform 0.4s var(--bouncy-curve), background-color 0.4s ease, border-color 0.4s ease; }
        .modal-box::-webkit-scrollbar { width: 0px; background: transparent; }
        .modal-box { scrollbar-width: none; -ms-overflow-style: none; }
        .modal-overlay.active .modal-box { transform: scale(1); }
        .modal-close { position: absolute; top: 20px; right: 25px; font-size: 2.5rem; color: white; cursor: pointer; transition: color 0.3s ease; line-height: 1; z-index: 10; }
        .modal-close:hover { color: var(--brand-green); }

        #mTitle { color: white; margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; line-height: 1.2; text-transform: uppercase; letter-spacing:-1px; transition: color 0.4s ease; }
        #mMeta { color: var(--brand-green); margin-bottom: 2rem; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: color 0.4s ease; }
        #mContent { color: #a1a1aa; line-height: 1.8; font-size: 1.05rem; transition: color 0.4s ease; }
        .modal-image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 2rem; width: 100%; }
        .modal-image-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 15px; border: 1px solid var(--border-color); transition: border-color 0.4s ease;}
        .modal-text-container { display: block; width: 100%; clear: both; }

        .share-row { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #222; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; transition: border-color 0.4s ease;}
        .share-label { color: #a1a1aa; font-weight: 600; font-size: 0.9rem; transition: color 0.4s ease; }
        .share-btn { padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; text-decoration: none; display: flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: transform 0.3s ease, opacity 0.3s ease; color: white; }
        .share-btn:hover { transform: translateY(-3px); opacity: 0.9; }
        .ln-btn { background-color: #0077b5; }
        .fb-btn { background-color: #1877F2; }
        .wa-btn { background-color: #25D366; color: black; }
        .wa-btn svg { fill: black !important; }

        /* ========================================== */
        /* FULL-SCREEN CTA & FOOTER                   */
        /* ========================================== */
        .custom-cta-section { padding: var(--section-spacing) 2rem; background: linear-gradient(145deg, #0a0a0a, #161a0a); 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;}
        .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); }
        .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; }
        .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); 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 .card h3, 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 p, body.light-theme .card-content p.blog-excerpt { color: #4b5563; }
        body.light-theme .green-shade { color: #7fba14; 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 .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: #7fba14; }

        body.light-theme .card, 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 .card:hover, 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 span { color: #666; }
        body.light-theme .media-box { background-color: #f3f4f6; border-bottom-color: rgba(0,0,0,0.1); }
        body.light-theme .filter-btn { border-color: rgba(0,0,0,0.2); color: #4b5563; }
        
        body.light-theme .view-toggle-wrapper { background: #d9e5c5; border-color: #c8d9ae; }
        body.light-theme .c-btn { background: rgba(255, 255, 255, 0.8); color: #000; border-color: rgba(0,0,0,0.1); }
        body.light-theme .c-btn:hover { background: var(--brand-green); }

        body.light-theme .modal-overlay { background-color: rgba(255, 255, 255, 0.4); }
        body.light-theme .modal-box { background-color: rgba(255, 255, 255, 0.85); border-color: rgba(0,0,0,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
        body.light-theme #mTitle { color: #000; }
        body.light-theme #mContent, body.light-theme #mContent p { color: #4b5563; }
        body.light-theme .share-label { color: #4b5563; }
        body.light-theme .share-row { border-top-color: rgba(0,0,0,0.1); }
        body.light-theme .modal-close { color: #000; }

        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 svg { 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 .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; }
        
        body.light-theme .nav-overlay { background-color: rgba(255, 255, 255, 0.98); }
        body.light-theme .nav-overlay a.menu-link { 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 .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 .mobile-accordion-btn { color: #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; }

        /* ========================================================= */
        /* MOBILE OPTIMIZATION & STRICT MEDIA QUERIES                */
        /* ========================================================= */
        @media (max-width: 1200px) {
            .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; } .footer-locations-system { grid-column: 1 / -1; }
        }

        @media (max-width: 1024px) {
            .portfolio-card { width: calc((100% - 2.5rem) / 2); } 
            .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; } 
            .portfolio-layout-wrapper { flex-direction: column; }
        }

        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; } .footer-locations-system { grid-column: 1 / -1; }
                        .navbar { padding: 0.8rem 1.2rem; }
            .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; }
            .portfolio-grid { flex-direction: column; gap: 2rem; width: 100%; display: flex; align-items: center; }
            .portfolio-card { width: 100%; border-radius: 20px;}
            
            .card-nav { display: none; } /* Hide nested hover buttons on mobile */
            
            .card-content { padding: 1.5rem; }
            .card-content h3 { font-size: 1.3rem; }
            
            .view-toggle-container { margin-bottom: 1.5rem; }
            .filter-container { padding: 1rem 1.2rem 1rem; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; margin-bottom: 2rem;}
            .filter-btn { padding: 0.6rem 1rem; font-size: 0.75rem; flex: 0 0 auto; }
            .view-btn { padding: 0.6rem 1rem; font-size: 0.75rem; }
            
            .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; }
            
            .modal-box { padding: 2rem 1.5rem; width: 95%; max-height: 90vh; }
            .modal-close { top: 10px; right: 15px; font-size: 2rem; }
            
            .modal-image-grid { grid-template-columns: 1fr; }
            .modal-image-grid img { height: auto; aspect-ratio: 16/9; }

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

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