/* =====================================================================
   RUANG LANDSCAPE — Design System (Vertical Garden)
   Palet: hijau daun + putih + aksen amber untuk CTA.
   Font: Plus Jakarta Sans. Mobile-first.
   ===================================================================== */

:root {
    --green-900: #14361f;
    --green-800: #1b4d2b;
    --green-700: #226b39;
    --green-600: #2e7d32;
    --green-500: #3f9142;
    --green-300: #8fd19e;
    --green-100: #e6f4ea;
    --green-50:  #f2f9f4;

    --amber-600: #e08a00;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;

    --ink-900: #14201a;
    --ink-700: #33433b;
    --ink-500: #5b6b62;
    --ink-300: #9aa8a0;

    --paper:   #ffffff;
    --paper-2: #f7faf8;
    --line:    #e2ebe5;

    --wa: #25d366;
    --wa-dark: #128c7e;

    --radius:   16px;
    --radius-sm:10px;
    --shadow:    0 8px 30px rgba(20, 54, 31, .08);
    --shadow-lg: 0 18px 50px rgba(20, 54, 31, .14);

    --container: 1160px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--ink-700);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
p  { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section   { padding: clamp(48px, 8vw, 96px) 0; }
.section--tint { background: var(--paper-2); }
.section--green { background: var(--green-900); color: #dbeadf; }
.section--green h2, .section--green h3 { color: #fff; }

.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green-600); margin-bottom: 12px;
}
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }
.text-muted { color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px; justify-content: center;
    font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
    border: 2px solid transparent; cursor: pointer; transition: .18s ease;
    line-height: 1.2; white-space: nowrap; max-width: 100%; text-align: center;
}
.btn-wa    { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); }
.btn-primary { background: var(--amber-500); color: #3a2600; }
.btn-primary:hover { background: var(--amber-400); color: #3a2600; transform: translateY(-2px); }
.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green-700); border-color: var(--green-300); }
.btn-ghost:hover { background: var(--green-100); color: var(--green-800); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color:#fff; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; white-space: normal; }
/* Di layar sempit, tombol besar boleh turun baris & lebar penuh biar tidak menembus kontainer */
@media (max-width: 560px) {
    .btn-lg { white-space: normal; }
    .hero__cta .btn, .cta-banner .btn { width: 100%; }
}

/* ---------- Navbar ---------- */
.nav {
    position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96);
    backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.nav__brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; color: var(--green-800); }
.nav__brand .leaf { color: var(--green-600); font-size: 1.35rem; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { color: var(--ink-700); font-weight: 600; padding: 9px 11px; border-radius: 10px; font-size: .9rem; white-space: nowrap; }
.nav__links a:hover, .nav__links a.active { color: var(--green-700); background: var(--green-50); }
.nav__links .nav__has-drop > a i { font-size: .62rem; }
.nav__has-drop { position: relative; }
.nav__drop {
    position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff;
    border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .16s ease;
}
.nav__has-drop:hover .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a { display: block; padding: 10px 12px; border-radius: 9px; font-weight: 600; font-size: .92rem; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 11px 18px; font-size: .92rem; }
.nav__menu { display: flex; align-items: center; justify-content: space-between; flex: 1; gap: 14px; margin-left: 16px; }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--green-800); cursor: pointer; }

@media (max-width: 1024px) {
    .nav__toggle { display: block; }
    .nav__menu {
        position: fixed; inset: 68px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
        flex-direction: column; align-items: stretch; padding: 12px 20px 22px; gap: 2px;
        max-height: calc(100vh - 68px); overflow-y: auto; display: none;
    }
    .nav__menu.open { display: flex; }
    .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav__links a { padding: 13px; }
    .nav__drop {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; padding: 0 0 0 14px; min-width: 0;
    }
    .nav__cta { margin-top: 12px; }
    .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(20,54,31,.92) 0%, rgba(20,54,31,.72) 45%, rgba(20,54,31,.35) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: clamp(64px, 12vw, 130px) 0; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #d7e7dc; margin-bottom: 30px; max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #eaf4ed; font-size: .95rem; }
.hero__trust i { color: var(--amber-400); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: .18s ease; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--green-50); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 20px; }
.card__body h3 { margin-bottom: 8px; }
.card__meta { font-size: .85rem; color: var(--ink-500); display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 10px; }
.card__price { font-weight: 800; color: var(--green-700); }
.badge {
    display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
    background: var(--green-100); color: var(--green-800);
}

/* ---------- Feature / why-us ---------- */
.feature { display: flex; gap: 16px; }
.feature__icon {
    flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--green-100); color: var(--green-600); font-size: 1.4rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { color: var(--ink-500); font-size: .95rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step__num {
    width: 46px; height: 46px; border-radius: 50%; background: var(--amber-500); color: #3a2600;
    font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; font-size: 1.15rem;
}

/* ---------- Price teaser ---------- */
.pricecard { text-align: center; padding: 30px 22px; overflow: visible; }
.pricecard.is-featured { border-color: var(--green-500); box-shadow: var(--shadow-lg); position: relative; margin-top: 14px; }
.pricecard.is-featured::before {
    content: 'Terpopuler'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green-600); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.pricecard .amount { font-size: 2rem; font-weight: 800; color: var(--green-700); margin: 8px 0 2px; }
.pricecard .per { color: var(--ink-500); font-size: .9rem; }
.pricecard ul { list-style: none; text-align: left; margin: 18px 0; display: grid; gap: 8px; }
.pricecard li { display: flex; gap: 9px; font-size: .95rem; }
.pricecard li i { color: var(--green-500); margin-top: 3px; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.quote__stars { color: var(--amber-400); margin-bottom: 10px; }
.quote__text { font-style: italic; color: var(--ink-700); margin-bottom: 14px; }
.quote__who { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.quote__where { font-size: .82rem; color: var(--ink-500); }

/* ---------- Area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px;
    background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--ink-700);
}
.chip:hover { border-color: var(--green-500); color: var(--green-700); background: var(--green-50); }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.faq + .faq { margin-top: 12px; }
.faq summary {
    list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink-900);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--green-600); font-weight: 400; }
.faq[open] summary::after { content: '\2212'; }
.faq__body { padding: 0 22px 20px; color: var(--ink-500); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; text-align: center; padding: clamp(52px, 8vw, 88px) 0; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #cfe3d5; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Section divider (daun) ---------- */
.leaf-divide { height: 5px; background: repeating-linear-gradient(90deg, var(--green-500) 0 20px, transparent 20px 40px); opacity: .5; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #b9cdc0; padding: 60px 0 26px; }
.footer a { color: #cfe0d5; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; font-size: .92rem; }
.footer__brand .leaf { color: var(--green-300); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; font-size: .85rem; text-align: center; color: #8ba596; }

/* ---------- WA float ---------- */
.wa-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 90; display: inline-flex; align-items: center; gap: 10px;
    background: var(--wa); color: #fff; padding: 13px 18px; border-radius: 999px; font-weight: 700;
    box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: .2s ease;
}
.wa-float:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); }
.wa-float i { font-size: 1.35rem; }
.wa-float__label { font-size: .95rem; }
@media (max-width: 520px) { .wa-float__label { display: none; } .wa-float { padding: 15px; } }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .85rem; color: var(--ink-500); padding: 16px 0; }
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--green-700); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.hide-mobile { }
@media (max-width: 620px) { .hide-mobile { display: none; } }
