:root {
            --bg: #FAFAFA; --surface: #F0F0F2; --card: #FFFFFF;
            --text-main: #0A0A0A; --text-muted: #52525B; --text-dim: #A1A1AA;
            --accent: #0A0A0A; --accent-hover: #171717; --accent-green: #84CC16;
            --border: rgba(0,0,0,0.08); --border-strong: rgba(0,0,0,0.12);
            --font: 'Inter', sans-serif; --max-w: 1600px; --nav-h: 80px;
            --radius-sm: 4px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 9999px;
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font); background: var(--bg); color: var(--text-main); overflow-x: hidden; line-height: 1.5; }
        a { text-decoration: none; color: inherit; }
        img { display: block; max-width: 100%; }
        button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
        ul { list-style: none; }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: #D4D4D8; border-radius: 3px; }

        .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
        .flex { display: flex; } .flex-col { flex-direction: column; }
        .items-center { align-items: center; } .items-end { align-items: flex-end; }
        .justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
        .gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
        .gap-6 { gap: 24px; } .gap-8 { gap: 32px; } .gap-10 { gap: 40px; }
        .gap-12 { gap: 48px; } .gap-16 { gap: 64px; }
        .relative { position: relative; } .absolute { position: absolute; }
        .fixed { position: fixed; } .inset-0 { top:0; right:0; bottom:0; left:0; }
        .z-10 { z-index: 10; } .z-40 { z-index: 40; } .z-50 { z-index: 50; }
        .w-full { width: 100%; } .h-full { height: 100%; }
        .overflow-hidden { overflow: hidden; } .pointer-events-none { pointer-events: none; }
        .shrink-0 { flex-shrink: 0; } .min-w-0 { min-width: 0; }
        .whitespace-nowrap { white-space: nowrap; } .object-cover { object-fit: cover; }
        .cursor-pointer { cursor: pointer; } .text-center { text-align: center; } .text-left { text-align: left; }

        .text-hero { font-size: clamp(48px, 8vw, 96px); font-weight: 600; line-height: 0.9; letter-spacing: -0.04em; }
        .text-h2 { font-size: clamp(30px, 4vw, 56px); font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; }
        .text-counter { font-size: clamp(36px, 4vw, 56px); font-weight: 600; letter-spacing: -0.04em; }
        .text-body { font-size: 16px; font-weight: 500; line-height: 1.625; color: var(--text-muted); }
        .text-label { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim); }
        .text-tag { font-size: 13px; font-family: 'Inter', monospace; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #2b2c29; }
        .text-sm-semibold { font-size: 14px; font-weight: 500; color: var(--text-main); }
        .text-sm-light { font-size: 14px; font-weight: 300; color: var(--text-muted); }
        .text-footer-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

        .grid-bg {
            background-image: linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
            background-size: 4rem 4rem;
            mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
        }

        .grid-12 { display: grid; grid-template-columns: 1fr; gap: 48px; }
        .grid-4 { display: grid; grid-template-columns: 1fr; gap: 32px; }
        .grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
        .grid-img { display: flex; flex-direction: column; gap: 16px; }
        .col-span-5, .col-span-7 { grid-column: span 1; }
        @media (min-width: 768px) {
            .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 80px; }
            .col-span-5 { grid-column: span 5; } .col-span-7 { grid-column: span 7; }
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .grid-2 { grid-template-columns: repeat(2, 1fr); }
            .form-grid { grid-template-columns: repeat(2, 1fr); }
            .service-desc { display: block; }
        }
        @media (min-width: 1024px) {
            .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
            .process-connector { display: block; }
            .grid-img { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
            .img-stack-offset { padding-top: 48px !important; }
        }

        /* NAVBAR */
        .navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); display: flex; align-items: center; transition: all 0.5s ease; background: transparent; z-index: 50; }
        .navbar.scrolled { background: rgba(250,250,250,0.85) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); }
        .nav-inner { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
        .nav-logo { display: flex; align-items: center; gap: 8px; }
        .nav-logo-icon { width: 32px; height: 32px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
        .nav-logo:hover .nav-logo-icon { transform: rotate(45deg); }
        .nav-logo-icon i { color: #fff; font-size: 14px; }
        .nav-logo-text { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
        .nav-links { display: none; align-items: center; gap: 40px; }
        .nav-links li { list-style: none; }
        .nav-links a { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: var(--text-muted); transition: color 0.3s ease; }
        .nav-links a:hover, .nav-links a.active { color: var(--text-main); }
        .nav-right { display: flex; align-items: center; gap: 16px; }
        .nav-cta { display: none; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 12px 24px; border-radius: var(--radius-sm); transition: all 0.3s ease; }
        .nav-cta:hover { background: var(--accent-hover); box-shadow: 0 0 30px rgba(0,0,0,0.2); }
        .nav-cta i { font-size: 12px; }
        .hamburger { width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; background: none; border: none; }
        .hamburger span { display: block; height: 1px; background: var(--text-main); transition: all 0.3s ease; transform-origin: center; }
        .hamburger span:nth-child(1), .hamburger span:nth-child(2) { width: 24px; }
        .hamburger span:nth-child(3) { width: 16px; transition: width 0.3s ease; }
        .hamburger:hover span:nth-child(3) { width: 24px; }
        .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); width: 24px; }
        @media (min-width: 768px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .hamburger { display: none; } }

        /* MOBILE MENU */
        .mobile-menu { position: fixed; inset: 0; z-index: 40; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; clip-path: inset(0 0 100% 0); transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
        .mobile-menu.open { clip-path: inset(0 0 0% 0); }
        .mobile-menu li { list-style: none; margin: 0; padding: 0;}
        .mobile-menu a { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-muted); transition: color 0.3s ease; }
        .mobile-menu a:hover { color: var(--text-main); }
        .mobile-menu .mobile-cta { margin-top: 16px; background: var(--accent); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 32px; border-radius: var(--radius-sm); }

        /* BUTTONS */
        .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 32px; border-radius: var(--radius-sm); transition: all 0.3s ease; cursor: pointer; border: none; }
        .btn-primary:hover { background: var(--accent-hover); box-shadow: 0 0 30px rgba(0,0,0,0.2); }
        .btn-primary i { font-size: 14px; }
        .btn-circle { width: 56px; height: 56px; border-radius: var(--radius-full); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; cursor: pointer; background: none; }
        .btn-circle:hover { border-color: var(--accent-green); background: rgba(132,204,22,0.05); }
        .btn-circle i { font-size: 16px; color: var(--text-muted); }
        .btn-outline { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.3s ease; cursor: pointer; background: none; border: none; }
        .btn-outline:hover { color: var(--text-main); }

        /* ===== HERO CAROUSEL (Native) ===== */
        .hero { position: relative; height: 100vh; overflow: hidden; }
        .hero-carousel { position: relative; width: 100%; height: 100vh; }
        .hero-slide { position: absolute; inset: 0; height: 100vh; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
        .hero-slide.active { opacity: 1; pointer-events: auto; }
        .hero-slide-bg { position: absolute; inset: 0; }
        .hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transform: scale(1.08); transition: transform 8s ease-out; }
        .hero-slide.active .hero-slide-bg img { transform: scale(1.0); }
        .hero-slide-bg .hero-gradient { position: absolute; inset: 0; }
        .hero-slide-bg .grid-bg { position: absolute; inset: 0; }
        .hero-slide-content { position: relative; z-index: 10; max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 35px 24px 120px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
        .noslide {
		    height: 30px;
            background: #FAFAFA;
        }
        @media (min-width: 768px) { .hero-slide-content { padding-bottom: 140px; } }
        .hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
        .hero-tag .line { width: 32px; height: 1px; background: var(--accent-green); }
        .hero-title { max-width: 48rem; margin-bottom: 32px; }
        .hero-title .green { color: var(--accent-green); }
        .hero-bottom { display: flex; flex-direction: column; gap: 32px; }
        .hero-bottom .text-body { max-width: 400px; }
        .hero-actions { display: flex; align-items: center; gap: 16px; }
        @media (min-width: 768px) { .hero-bottom { flex-direction: row; align-items: flex-end; gap: 64px; } }
        .hero-slide .slide-anim { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .hero-slide.active .slide-anim { opacity: 1; transform: translateY(0); }
        .hero-slide.active .slide-anim:nth-child(1) { transition-delay: 0.15s; }
        .hero-slide.active .slide-anim:nth-child(2) { transition-delay: 0.3s; }
        .hero-slide.active .slide-anim:nth-child(3) { transition-delay: 0.45s; }
        .hero-slide .text-reveal-mask { overflow: hidden; }
        .hero-slide .text-reveal-mask .text-reveal-content { transform: translateY(110%); transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94) 0.25s; }
        .hero-slide.active .text-reveal-mask .text-reveal-content { transform: translateY(0); }

        /* Hero Custom Navigation */
        .hero-nav { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 14px; }
        @media (min-width: 768px) { .hero-nav { bottom: 44px; } }
        .hero-nav-row { display: flex; align-items: center; gap: 16px; }
        .hero-nav-btn { width: 44px; height: 44px; border-radius: var(--radius-full); border: 1px solid rgba(0,0,0,0.15); background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: var(--text-main); }
        .hero-nav-btn:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
        .hero-nav-btn i { font-size: 14px; }
        .hero-dots { display: flex; align-items: center; gap: 8px; }
        .hero-dot { position: relative; width: 36px; height: 36px; border-radius: var(--radius-full); border: 1px solid rgba(0,0,0,0.1); background: rgba(255,255,255,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.4s ease; color: var(--text-dim); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; overflow: hidden; }
        .hero-dot.active { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(0,0,0,0.15); }
        .hero-dot:hover:not(.active) { border-color: rgba(0,0,0,0.3); color: var(--text-main); }
        .hero-counter { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--text-dim); font-variant-numeric: tabular-nums; }
        .hero-dot-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--accent-green); border-radius: 1px; width: 0%; }
        .hero-dot.active .hero-dot-progress { animation: dotProgress var(--autoplay-duration, 6s) linear forwards; }
        @keyframes dotProgress { from { width: 0%; } to { width: 100%; } }

        /* MARQUEE */
        .marquee-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; background: rgba(255,255,255,0.6); }
        .marquee-track { display: flex; align-items: center; gap: 64px; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
        .marquee-track:hover { animation-play-state: paused; }
        .marquee-item { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: var(--text-dim); display: flex; align-items: center; gap: 12px; }
        .marquee-dot { width: 6px; height: 6px; border-radius: var(--radius-full); background: var(--accent-green); box-shadow: 0 0 8px rgba(132,204,22,0.5); }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* SECTIONS */
        .section { padding: 96px 0; position: relative; }
        .section-bg { background: rgba(255,255,255,0.7); }
        .section-header { margin-bottom: 64px; }
        .section-header-row { display: flex; flex-direction: column; gap: 32px; }
        .section-header-center { text-align: center; margin-bottom: 80px; }
        .section-header-center .text-body { max-width: 32rem; margin: 24px auto 0; }
        .section-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
        .section-tag .line { width: 32px; height: 1px; background: var(--accent-green); }
        .section-tag-center { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
        .section-tag-center .line { width: 32px; height: 1px; background: var(--accent-green); }
        @media (min-width: 768px) { .section { padding: 128px 0; } .section-header-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

        .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
        .stat-item { border-left: 2px solid rgba(132,204,22,0.4); padding-left: 20px; }
        .stat-item .text-counter { color: var(--text-main); }
        .stat-item .text-label { margin-top: 8px; }

        .img-stack { display: flex; flex-direction: column; gap: 16px; }
        .img-stack-offset { padding-top: 0; }
        .img-reveal { clip-path: inset(0 50% 0 0); transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1); }
        .img-reveal.visible { clip-path: inset(0 0% 0 0); }
        .img-reveal img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 0.7s ease; }
        .img-reveal:hover img { filter: grayscale(0); }
        .img-box { border-radius: var(--radius-xl); overflow: hidden; }
        .img-box-shadow { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
        .img-box-glow { box-shadow: 0 0 60px rgba(0,0,0,0.12), 0 0 120px rgba(0,0,0,0.04); }
        .aspect-video { aspect-ratio: 16/9; } .aspect-square { aspect-ratio: 1/1; } .aspect-portrait { aspect-ratio: 3/4; }

        .service-item { display: flex; align-items: center; gap: 24px; padding: 32px; cursor: pointer; border-top: 1px solid var(--border); background: transparent; transition: all 0.5s ease; }
        .service-item:last-child { border-bottom: 1px solid var(--border); }
        .service-item:hover { border-color: rgba(132,204,22,0.3); background: rgba(132,204,22,0.03); }
        .service-num { font-size: clamp(48px, 6vw, 72px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: rgba(161,161,170,0.4); width: 96px; flex-shrink: 0; transition: color 0.5s ease; }
        .service-item:hover .service-num { color: var(--accent-green); }
        .service-body { flex: 1; min-width: 0; }
        .service-body h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; letter-spacing: -0.02em; color: var(--text-main); }
        .service-body p { font-size: 14px; font-weight: 300; color: var(--text-muted); margin-top: 8px; }
        .service-desc { display: none; }
        .service-arrow { font-size: 20px; color: var(--accent-green); transform: translateX(-16px); opacity: 0; transition: all 0.4s ease; flex-shrink: 0; }
        .service-item:hover .service-arrow { transform: translateX(0); opacity: 1; }
        @media (min-width: 768px) { .service-item { gap: 48px; padding: 40px 32px; } .service-num { width: 160px; } .service-desc { display: block; } }

        .project-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; box-shadow: 0 20px 60px rgba(0,0,0,0.1); aspect-ratio: 16/10; }
        .project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
        .project-card:hover img { transform: scale(1.05); }
        .project-overlay { position: absolute; inset: 0; opacity: 0; background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.3), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; transition: opacity 0.5s ease; }
        .project-card:hover .project-overlay { opacity: 1; }
        .project-overlay h3 { font-size: clamp(24px, 2.5vw, 30px); font-weight: 600; letter-spacing: -0.02em; color: var(--text-main); }
        .project-overlay p { font-size: 14px; font-weight: 300; color: var(--text-muted); margin-top: 8px; }
        .project-arrow { position: absolute; top: 32px; right: 32px; width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--accent); display: flex; align-items: center; justify-content: center; transform: translate(-10px, 10px); opacity: 0; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s; }
        .project-arrow i { color: #fff; font-size: 16px; }
        .project-card:hover .project-arrow { transform: translate(0,0); opacity: 1; }

        .process-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; height: 100%; position: relative; z-index: 1; transition: all 0.5s ease; }
        .process-card:hover { border-color: rgba(132,204,22,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
        .process-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(132,204,22,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background 0.3s ease; }
        .process-card:hover .process-icon { background: rgba(132,204,22,0.2); }
        .process-icon i { font-size: 22px; color: var(--accent-green); }
        .process-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-main); margin-bottom: 12px; }
        .process-card p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.625; }
        .process-connector { display: none; position: absolute; top: 50%; right: -12px; width: 24px; height: 1px; background: rgba(132,204,22,0.3); }

        /* ===== QUOTE OWL CAROUSEL ===== */
        .quote-section { padding: 96px 0; position: relative; overflow: hidden; }
        .quote-section .quote-owl-wrapper {
            max-width: 56rem;
            margin: 0 auto;
        }
        .quote-slide {
            text-align: center;
            padding: 0 16px;
        }
        .quote-icon { font-size: 48px; color: var(--accent-green); opacity: 0.3; margin-bottom: 32px; }
        .quote-text { font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; color: var(--text-main); }
        .quote-author { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
        .quote-avatar { width: 48px; height: 48px; border-radius: var(--radius-full); overflow: hidden; border: 2px solid rgba(132,204,22,0.3); }
        .quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .quote-author-info .name { font-size: 14px; font-weight: 600; color: var(--text-main); }
        .quote-author-info .role { font-size: 12px; color: var(--text-dim); }

        /* Owl Carousel Overrides */
        .quote-section .owl-carousel { display: block; }
        .quote-section .owl-carousel .owl-stage-outer { overflow: hidden; }
        .quote-section .owl-carousel .owl-item { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .quote-section .owl-carousel .owl-item.active { opacity: 1; transform: translateY(0); }
        .quote-section .owl-carousel .owl-dots { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 48px; }
        .quote-section .owl-carousel .owl-dot { width: 8px; height: 8px; border-radius: var(--radius-full); background: rgba(161,161,170,0.3); transition: all 0.4s ease; border: none; outline: none; cursor: pointer; }
        .quote-section .owl-carousel .owl-dot.active { background: var(--accent-green); box-shadow: 0 0 8px rgba(132,204,22,0.5); width: 28px; }
        .quote-section .owl-carousel .owl-dot:hover:not(.active) { background: rgba(161,161,170,0.6); }
        .quote-section .owl-carousel .owl-nav { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; max-width: 56rem; margin: 0 auto; padding: 0 -12px; }
        .quote-section .owl-carousel .owl-nav button { width: 48px; height: 48px; border-radius: var(--radius-full); border: 1px solid var(--border) !important; background: rgba(255,255,255,0.8) !important; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex !important; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; pointer-events: auto; font-size: 16px; color: var(--text-muted) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
        .quote-section .owl-carousel .owl-nav button:hover { border-color: var(--accent) !important; background: var(--accent) !important; color: #fff !important; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
        /* .quote-section .owl-carousel .owl-nav button span { display: none; } */
        .quote-section .owl-carousel .owl-prev { margin-left: -24px; }
        .quote-section .owl-carousel .owl-next { margin-right: -24px; }

        /* ===== FAQ ACCORDION ===== */
        .faq-section { padding: 96px 0; position: relative; background: rgba(255,255,255,0.7); }
        .faq-wrapper { max-width: 48rem; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-item:first-child { border-top: 1px solid var(--border); }
        .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; cursor: pointer; background: none; border: none; text-align: left; transition: color 0.3s ease; }
        .faq-question:hover { color: var(--accent-green); }
        .faq-question h3 { font-size: clamp(16px, 1.5vw, 18px); font-weight: 500; letter-spacing: -0.01em; color: inherit; transition: color 0.3s ease; line-height: 1.4; }
        .faq-item.open .faq-question h3 { color: var(--accent-green); }
        .faq-icon { width: 36px; height: 36px; border-radius: var(--radius-full); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s ease; }
        .faq-icon i { font-size: 12px; color: var(--text-dim); transition: all 0.4s ease; }
        .faq-item.open .faq-icon { border-color: var(--accent-green); background: rgba(132,204,22,0.1); transform: rotate(45deg); }
        .faq-item.open .faq-icon i { color: var(--accent-green); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease; opacity: 0; }
        .faq-item.open .faq-answer { opacity: 1; }
        .faq-answer-inner { padding: 0 0 28px; }
        .faq-answer-inner p { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
        @media (min-width: 768px) {
            .faq-section { padding: 128px 0; }
            .faq-question { padding: 36px 0; }
            .faq-answer-inner { padding: 0 0 36px; }
            .faq-question h3 { font-size: 20px; }
        }

        /* ===== PARTNERS (PNG Images) ===== */
        .partners-section { padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.5); }
        .partners-title { text-align: center; margin-bottom: 40px; }
        .partners-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; }
        .partners-grid a {
            display: flex; align-items: center;
            transition: all 0.5s ease;
            /* filter: grayscale(100%) brightness(0.55); */
            opacity: 1;
        }
        .partners-grid a:hover {
            filter: grayscale(100%) brightness(0.8);
        }
        .partners-grid a img {
            height: 60px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .contact-section { padding: 96px 0; position: relative; }
        .contact-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60%; height: 60%; border-radius: var(--radius-full); background: rgba(132,204,22,0.05); filter: blur(150px); pointer-events: none; }
        .contact-info-item { display: flex; align-items: center; gap: 16px; }
        .contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(132,204,22,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .contact-info-icon i { font-size: 16px; color: var(--accent-green); }

        /* MAP CONTAINER */
        .map-container { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); height: 100%; min-height: 400px; position: relative; }
        .map-container iframe { width: 100%; height: 100%; min-height: 400px; border: none; display: block; filter: grayscale(0.6) contrast(1.05); transition: filter 0.7s ease; }
        .map-container:hover iframe { filter: grayscale(0) contrast(1); }
        .map-container .map-pin-badge { position: absolute; bottom: 20px; left: 20px; z-index: 5; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); pointer-events: none; }
        .map-pin-badge .pin-dot { width: 10px; height: 10px; border-radius: var(--radius-full); background: var(--accent-green); box-shadow: 0 0 10px rgba(132,204,22,0.5); animation: pinPulse 2s ease-in-out infinite; }
        @keyframes pinPulse { 0%, 100% { box-shadow: 0 0 10px rgba(132,204,22,0.5); } 50% { box-shadow: 0 0 20px rgba(132,204,22,0.8); } }
        .map-pin-badge span { font-size: 13px; font-weight: 500; color: var(--text-main); white-space: nowrap; }
        @media (min-width: 768px) { .map-container { min-height: 520px; } .map-container iframe { min-height: 520px; } .contact-section { padding: 128px 0; } }

        /* FOOTER */
        .footer { background: var(--text-main); color: #fff; position: relative; overflow: hidden; }
        .footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-green), transparent); }
        .footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 80px 24px 0; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; } .footer-inner { padding: 96px 24px 0; } }
        .footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
        .footer-brand .footer-logo-icon { width: 36px; height: 36px; background: var(--accent-green); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
        .footer-brand .footer-logo:hover .footer-logo-icon { transform: rotate(45deg); }
        .footer-brand .footer-logo-icon i { color: var(--text-main); font-size: 16px; }
        .footer-brand .footer-logo-text { font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
        .footer-brand .footer-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; margin-bottom: 28px; }
        .footer-social { display: flex; align-items: center; gap: 12px; }
        .footer-social a { width: 42px; height: 42px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all 0.3s ease; }
        .footer-social a:hover { border-color: var(--accent-green); background: rgba(132,204,22,0.1); color: var(--accent-green); transform: translateY(-2px); }
        .footer-social a i { font-size: 14px; }
        .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
        .footer-links { display: flex; flex-direction: column; gap: 14px; }
        .footer-links a { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.55); transition: all 0.3s ease; position: relative; display: inline-block; }
        .footer-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent-green); transition: width 0.3s ease; }
        .footer-links a:hover { color: #fff; }
        .footer-links a:hover::after { width: 100%; }
        .footer-contact { display: flex; flex-direction: column; gap: 16px; }
        .footer-contact p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; }
        .footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.3s ease; }
        .footer-contact a:hover { color: var(--accent-green); }
        .footer-bottom { padding: 32px 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
        .footer-bottom-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); }
        .footer-bottom-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px; }
        .footer-bottom-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); transition: color 0.3s ease; }
        .footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
        .footer-bottom-links .dot { width: 3px; height: 3px; border-radius: var(--radius-full); background: rgba(255,255,255,0.15); flex-shrink: 0; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

        .back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); z-index: 50; cursor: pointer; border: none; opacity: 0; transform: translateY(16px); pointer-events: none; transition: all 0.5s ease; }
        .back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
        .back-to-top:hover { background: var(--accent-hover); }
        .back-to-top i { font-size: 16px; }

        /* ANIMATIONS */
        .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
        .fade-in-up.visible { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .text-reveal-mask { overflow: hidden; }
        .text-reveal-content { transform: translateY(110%); transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
        .text-reveal-mask.visible .text-reveal-content { transform: translateY(0); }

        /* Owl global reset */
        .owl-theme .owl-nav [class*=owl-], .owl-theme .owl-dots .owl-dot span, .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { 
            color: black; background: none; }

        .owl-theme .owl-nav [class*=owl-]:hover {
            color: #fff;
            background: none;
        }