/* ==========================================================================
   WEBSITE UCOSS — Style utama
   Warna brand hijau: #16A34A · Gelap: #052e16 · Terang: #F8FAF8
   ========================================================================== */

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-950: #052e16;
    --dark-card: #112017;
    --light-bg: #f8faf8;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --font-main: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
    --nav-h: 72px;
    --radius: 20px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { scroll-margin-top: var(--nav-h); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--green-600); color: var(--green-50); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--green-50); }
::-webkit-scrollbar-thumb { background: var(--green-600); border-radius: 8px; }

/* ---------- Tombol ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px; border-radius: 999px;
    font-size: 14px; font-weight: 700;
    transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-500); color: var(--green-950); }
.btn-primary:hover { background: var(--green-400); box-shadow: 0 8px 40px rgba(34, 197, 94, 0.45); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--green-400); color: var(--green-400); }
.btn-wa { background: var(--green-600); color: #fff; padding: 10px 20px; font-size: 13px; animation: pulseRing 2.4s infinite; }
.btn-wa:hover { background: var(--green-500); transform: scale(1.05); }
.btn-wa svg { width: 15px; height: 15px; }
.btn-full { width: 100%; justify-content: center; }

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ---------- Navbar ---------- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled, #navbar.menu-open {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(22, 101, 52, 0.1);
}
.nav-inner {
    max-width: 1280px; margin: 0 auto; height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between; padding: 0 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 40px; width: 40px; object-fit: contain; }
.nav-name { font-size: 18px; font-weight: 800; color: #fff; transition: color 0.4s; }
#navbar.scrolled .nav-name, #navbar.menu-open .nav-name { color: var(--green-950); }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a, .nav-guide-btn {
    font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s; display: inline-flex; align-items: center; gap: 6px;
}
.nav-guide-btn svg { width: 15px; height: 15px; }
.nav-links a:hover, .nav-guide-btn:hover { color: var(--green-400); }
#navbar.scrolled .nav-links a, #navbar.scrolled .nav-guide-btn { color: rgba(5, 46, 22, 0.8); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-guide-btn:hover { color: var(--green-600); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
    display: flex; padding: 4px; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px);
}
#navbar.scrolled .lang-toggle { border-color: rgba(5, 46, 22, 0.2); background: #fff; }
.lang-btn {
    padding: 5px 13px; border-radius: 999px; font-size: 11px; font-weight: 800;
    letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.8); transition: all 0.3s;
}
#navbar.scrolled .lang-btn { color: rgba(5, 46, 22, 0.7); }
.lang-btn.active { background: var(--green-600); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
#navbar.scrolled .hamburger span, #navbar.menu-open .hamburger span { background: var(--green-950); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: flex-end;
    background: var(--green-950); overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; transform: scale(1.1); will-change: transform; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.55), rgba(0,0,0,0.3)); }
.hero-bottom-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(to top, var(--green-950), transparent); }

.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 160px; padding-bottom: 96px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 11px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--green-400);
    border: 1px solid rgba(74, 222, 128, 0.4); background: rgba(74, 222, 128, 0.1);
    padding: 9px 18px; border-radius: 999px; backdrop-filter: blur(8px);
    opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); }

.hero-title {
    margin-top: 26px; max-width: 840px;
    font-size: clamp(38px, 6.2vw, 76px); font-weight: 800;
    line-height: 1.05; letter-spacing: -0.02em; color: #fff;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 4px; }
.hero-title .line > span {
    display: block; transform: translateY(115%);
    animation: lineUp 1s var(--ease) forwards;
}
.hero-title .line.accent > span { color: var(--green-400); }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-subtitle {
    margin-top: 24px; max-width: 580px;
    font-size: 16px; line-height: 1.75; color: rgba(255, 255, 255, 0.75);
    opacity: 0; animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.95s forwards; }
.hero-pills { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: fadeUp 1s var(--ease) 1.15s forwards; }
.hero-pills span {
    border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px); color: rgba(255, 255, 255, 0.7);
    font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 999px;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero-video-controls { position: absolute; bottom: 32px; right: 24px; z-index: 5; display: flex; gap: 8px; opacity: 0; animation: fadeUp 1s var(--ease) 1.4s forwards; }
.hero-video-controls button {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.hero-video-controls button:hover { border-color: var(--green-400); color: var(--green-400); }
.hero-video-controls svg { width: 16px; height: 16px; }

.scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255, 255, 255, 0.5); font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    animation: floatSlow 5s ease-in-out infinite, fadeUp 1s var(--ease) 1.6s forwards;
    opacity: 0;
}
.scroll-indicator svg { width: 16px; height: 16px; }
@keyframes floatSlow { 0%, 100% { margin-bottom: 0; } 50% { margin-bottom: 10px; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--green-600); border-top: 1px solid rgba(5,46,22,0.1); border-bottom: 1px solid rgba(5,46,22,0.1); padding: 16px 0; }
.marquee-track { display: flex; width: max-content; gap: 32px; animation: marqueeX 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    display: flex; align-items: center; gap: 32px; white-space: nowrap;
    color: var(--green-50); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.22em;
}
.marquee-track svg { width: 16px; height: 16px; color: rgba(220, 252, 231, 0.7); }
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section umum ---------- */
.section { padding: 110px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--green-950); position: relative; }

.eyebrow {
    font-family: var(--font-mono); font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.28em; color: var(--green-600);
}
.eyebrow.light { color: var(--green-400); }
.section-title {
    margin-top: 16px; font-size: clamp(26px, 3.4vw, 40px); font-weight: 700;
    letter-spacing: -0.02em; line-height: 1.25; color: var(--green-950);
}
.section-title.light { color: #fff; }
.section-sub { margin-top: 16px; font-size: 16px; color: rgba(220, 252, 231, 0.6); max-width: 640px; }
.body-text { margin-top: 24px; font-size: 16px; line-height: 1.8; color: var(--text-muted); }

/* Animasi muncul saat scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Tentang ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
.about-cards { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.card {
    background: #fff; border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: var(--radius); padding: 26px;
    box-shadow: 0 2px 24px rgba(22, 163, 74, 0.06);
}
.card h3 { font-size: 18px; font-weight: 600; color: var(--green-700); }
.card p { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.card ul { margin-top: 10px; list-style: none; }
.card li { display: flex; gap: 10px; font-size: 14px; line-height: 1.65; color: var(--text-muted); margin-bottom: 8px; }
.card li::before { content: "✓"; color: var(--green-600); font-weight: 800; flex-shrink: 0; }

.pillar-grid { margin-top: 16px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.pillar {
    background: #fff; border: 1px solid rgba(22, 163, 74, 0.15); border-radius: var(--radius);
    padding: 22px; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(34, 197, 94, 0.45); box-shadow: 0 14px 34px rgba(22, 163, 74, 0.13); }
.pillar svg { width: 24px; height: 24px; color: var(--green-600); }
.pillar h4 { margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--green-950); }
.pillar p { margin-top: 6px; font-size: 12.5px; line-height: 1.6; color: var(--text-muted); }

.about-photos { position: relative; }
.about-photo-main { border-radius: 32px; overflow: hidden; border: 1px solid rgba(22,163,74,0.15); box-shadow: 0 24px 64px rgba(5, 46, 22, 0.18); position: relative; }
.about-photo-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.7s var(--ease); }
.about-photo-main:hover img { transform: scale(1.05); }
.photo-badge {
    position: absolute; top: 16px; right: 16px;
    font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
    background: rgba(5, 46, 22, 0.82); color: var(--green-400);
    padding: 9px 16px; border-radius: 999px; backdrop-filter: blur(6px);
}
.about-photo-secondary {
    display: none; position: absolute; bottom: -32px; left: -24px; width: 210px;
    border-radius: 18px; overflow: hidden; border: 4px solid var(--light-bg); box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.about-photo-secondary img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.photo-caption { margin-top: 52px; font-size: 12px; font-style: italic; color: #94a3b8; }

/* ---------- Layanan ---------- */
.section-dark::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
    background-image: radial-gradient(circle at 1px 1px, var(--green-500) 1px, transparent 0);
    background-size: 36px 36px;
}
.services-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; }
.service-card {
    display: flex; flex-direction: column; height: 100%;
    border: 1px solid rgba(34, 197, 94, 0.15); background: rgba(17, 32, 23, 0.85);
    backdrop-filter: blur(8px); border-radius: 26px; padding: 34px;
    transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s, box-shadow 0.45s;
}
.service-card:hover {
    transform: translateY(-7px); border-color: rgba(74, 222, 128, 0.5);
    background: #14291d; box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon {
    padding: 14px; border-radius: 18px;
    border: 1px solid rgba(74, 222, 128, 0.2); background: rgba(74, 222, 128, 0.1);
    transition: transform 0.45s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(6deg) scale(1.1); }
.service-icon svg { width: 28px; height: 28px; color: var(--green-400); }
.service-arrow { width: 20px; height: 20px; color: rgba(220, 252, 231, 0.3); transition: 0.3s; }
.service-card:hover .service-arrow { color: var(--green-400); transform: translate(4px, -4px); }
.service-tag {
    margin-top: 26px; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em; color: var(--green-500);
}
.service-card h3 { margin-top: 10px; font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.service-card p:last-of-type { margin-top: 12px; font-size: 14px; line-height: 1.7; color: rgba(220, 252, 231, 0.6); }

/* ---------- Cara kerja ---------- */
.steps-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 44px; position: relative; }
.step-num {
    width: 56px; height: 56px; border-radius: 18px; background: #fff;
    border: 1px solid rgba(22, 163, 74, 0.2); box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--green-700);
    transition: 0.45s var(--ease); position: relative; z-index: 2;
}
.step:hover .step-num { background: var(--green-600); color: #fff; transform: rotate(6deg); }
.step h3 { margin-top: 24px; font-size: 18px; font-weight: 600; color: var(--green-950); letter-spacing: -0.01em; }
.step p { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* ---------- Dampak ---------- */
.section-impact { background: var(--green-700); position: relative; overflow: hidden; }
.impact-bg-text {
    position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
    font-size: 18vw; font-weight: 800; line-height: 1; white-space: nowrap;
    color: transparent; -webkit-text-stroke: 1.5px rgba(74, 222, 128, 0.3);
    pointer-events: none; user-select: none;
}
.stats-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 28px; position: relative; }
.stat { border-left: 2px solid rgba(220, 252, 231, 0.35); padding-left: 22px; }
.stat-value { font-size: clamp(34px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.stat-value .suffix { color: var(--green-400); }
.stat p { margin-top: 12px; font-size: 14px; font-weight: 500; line-height: 1.5; color: rgba(240, 253, 244, 0.8); }
.impact-note { margin-top: 48px; font-size: 12px; font-style: italic; color: rgba(220, 252, 231, 0.5); position: relative; }

/* ---------- Galeri ---------- */
.gallery-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.gallery-hint { margin-top: 8px; font-size: 12px; font-style: italic; color: #94a3b8; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
    padding: 9px 18px; border-radius: 999px; font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
    border: 1px solid rgba(5, 46, 22, 0.15); background: #fff; color: rgba(5, 46, 22, 0.7);
    transition: 0.3s;
}
.filter-btn:hover { border-color: var(--green-500); }
.filter-btn.active { background: var(--green-600); border-color: var(--green-600); color: #fff; }

.gallery-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-item {
    position: relative; overflow: hidden; border-radius: 18px; padding: 0;
    border: 1px solid rgba(22, 163, 74, 0.1); cursor: zoom-in; display: block;
    opacity: 1; transform: scale(1); transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.hidden { display: none; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item.big img { aspect-ratio: auto; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5, 46, 22, 0.85), transparent 55%);
    opacity: 0; transition: opacity 0.45s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 16px; font-size: 12.5px; font-weight: 600; color: #fff; text-align: left;
    opacity: 0; transform: translateY(12px); transition: 0.45s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 200; display: none;
    align-items: center; justify-content: center;
    background: rgba(5, 46, 22, 0.96); backdrop-filter: blur(10px); padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: 900px; max-height: 84vh; animation: lbIn 0.4s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lightbox img { max-height: 72vh; width: 100%; object-fit: contain; border-radius: 18px; }
.lightbox figcaption { margin-top: 16px; text-align: center; font-size: 14px; font-weight: 500; color: rgba(220, 252, 231, 0.8); }
.lb-close, .lb-prev, .lb-next {
    position: absolute; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; font-size: 24px;
    display: flex; align-items: center; justify-content: center; transition: 0.3s; line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--green-400); color: var(--green-400); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- Kontak ---------- */
.contact-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact-card {
    display: flex; flex-direction: column; height: 100%;
    border: 1px solid rgba(74, 222, 128, 0.25); background: rgba(74, 222, 128, 0.08);
    backdrop-filter: blur(8px); border-radius: 26px; padding: 34px;
    transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.contact-card:hover { transform: translateY(-5px); border-color: rgba(74, 222, 128, 0.6); background: rgba(74, 222, 128, 0.16); }
.contact-icon { width: 36px; height: 36px; color: var(--green-400); }
.contact-card h3 { margin-top: 22px; font-size: 20px; font-weight: 600; color: #fff; }
.contact-card p { margin-top: 8px; font-size: 14px; color: rgba(220, 252, 231, 0.6); }
.contact-email-addr { font-family: var(--font-mono); font-size: 12px; color: rgba(74, 222, 128, 0.85); }
.contact-link { margin-top: 30px; font-size: 14px; font-weight: 700; color: var(--green-400); }
.contact-link::after { content: " ↗"; }

.inquiry-form {
    border: 1px solid rgba(74, 222, 128, 0.25); background: rgba(17, 32, 23, 0.85);
    backdrop-filter: blur(8px); border-radius: 26px; padding: 38px;
}
.inquiry-form h3 { font-size: 20px; font-weight: 600; color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    width: 100%; padding: 15px 17px; border-radius: 14px;
    border: 1px solid rgba(74, 222, 128, 0.2); background: rgba(255, 255, 255, 0.05);
    color: #fff; font-family: inherit; font-size: 14px; outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: rgba(220, 252, 231, 0.35); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--green-400); background: rgba(255, 255, 255, 0.1); }
.inquiry-form select { margin-top: 14px; appearance: none; }
.inquiry-form select option { background: var(--dark-card); color: #fff; }
.inquiry-form textarea { margin-top: 14px; resize: none; }
.inquiry-form .btn { margin-top: 24px; }
.form-note { margin-top: 14px; text-align: center; font-size: 12px; color: rgba(220, 252, 231, 0.4); }

/* ---------- Footer ---------- */
footer { background: var(--green-950); border-top: 1px solid rgba(34, 197, 94, 0.15); padding: 56px 0 40px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-logo { height: 64px; width: 64px; object-fit: contain; }
.footer-brand { font-size: 18px; font-weight: 800; color: #fff; }
.footer-tagline { max-width: 380px; font-size: 12px; line-height: 1.7; color: rgba(220, 252, 231, 0.5); }
.footer-meta { font-size: 12px; color: rgba(220, 252, 231, 0.5); }
.footer-rights { font-size: 11px; color: rgba(220, 252, 231, 0.3); }

/* ---------- Modal panduan ---------- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 300; display: none;
    align-items: center; justify-content: center;
    background: rgba(5, 46, 22, 0.6); backdrop-filter: blur(6px); padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    position: relative; width: 100%; max-width: 560px; max-height: 85vh; overflow-y: auto;
    background: #fff; border-radius: 24px; padding: 36px;
    border: 1px solid rgba(22, 163, 74, 0.2); animation: lbIn 0.35s var(--ease);
}
.modal-box h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--green-950); }
.modal-sub { margin-top: 6px; font-size: 14px; color: var(--text-muted); }
.modal-close {
    position: absolute; top: 18px; right: 18px; width: 38px; height: 38px;
    border-radius: 50%; border: 1px solid rgba(22, 163, 74, 0.3); color: var(--green-700);
    font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.guide-steps { margin-top: 26px; list-style: none; }
.guide-steps li { display: flex; gap: 16px; margin-bottom: 22px; }
.guide-num {
    width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
    background: var(--green-600); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 12px; font-weight: 700;
}
.guide-steps h4 { font-size: 14px; font-weight: 700; color: var(--green-950); }
.guide-steps p { margin-top: 5px; font-size: 13.5px; line-height: 1.65; color: var(--text-muted); }
.modal-hint {
    margin-top: 8px; padding: 16px; border-radius: 14px; background: var(--green-50);
    font-family: var(--font-mono); font-size: 12px; color: var(--green-700);
}

/* ---------- Responsif ---------- */
@media (min-width: 640px) {
    .about-cards { grid-template-columns: 1fr 1fr; }
    .pillar-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .about-photo-secondary { display: block; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .lb-prev { left: 32px; } .lb-next { right: 32px; }
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .steps-grid::before {
        content: ""; position: absolute; top: 28px; left: 0; right: 0;
        border-top: 2px dashed rgba(22, 163, 74, 0.25);
    }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-grid { grid-template-columns: 2fr 3fr; }
    .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 1023px) {
    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; align-items: flex-start; gap: 4px;
        background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(22, 101, 52, 0.1);
        padding: 12px 24px 22px; display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a, .nav-guide-btn { color: rgba(5, 46, 22, 0.85) !important; padding: 12px 0; font-size: 16px; }
    .hamburger { display: flex; }
    .btn-wa span { display: none; }
    .btn-wa { padding: 10px 13px; }
    .scroll-indicator { display: none; }
}
@media (max-width: 640px) {
    .section { padding: 80px 0; }
    .hero-content { padding-bottom: 80px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .contact-cards { grid-template-columns: 1fr; }
}
