:root {
    --forest: #1b3a1e;
    --forest-deep: #0e2010;
    --forest-mid: #264d2a;
    --moss: #3d6e42;
    --sage: #6a9e6f;
    --mint: #a8d4a8;
    --cream: #f0ede4;
    --warm: #e8e0d0;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --text-dark: #0e1a0f;
    --text-muted: #7a9e7c;
    --text-light: #c5d8c6;
    --card-bg: rgba(27, 58, 30, 0.6);
    --border: rgba(168, 212, 168, 0.15);
    --border-hover: rgba(168, 212, 168, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #0e1a10;
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: .6;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1.25rem;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 26, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 18px;
    height: 18px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 1.6;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--mint);
    letter-spacing: .5px;
}

.nav-wa {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--moss);
    color: #fff;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.nav-wa:active {
    transform: scale(.96);
}

.nav-wa svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 1.25rem 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(170deg, rgba(14, 32, 16, 0.2) 0%, rgba(14, 26, 16, 0.6) 50%, rgba(14, 20, 14, 0.98) 100%),
        url('../background.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(61, 110, 66, 0.25);
    border: 1px solid rgba(168, 212, 168, 0.3);
    color: var(--mint);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
    animation: fadeUp .8s .1s both;
}

.hero-badge::before {
    content: '🌿';
    font-size: 12px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 11vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: .9rem;
    animation: fadeUp .8s .2s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--mint);
    display: block;
}

.hero-sub {
    font-size: .9rem;
    color: rgba(240, 237, 228, 0.75);
    max-width: 340px;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    animation: fadeUp .8s .3s both;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp .8s .4s both;
}

.btn-primary {
    background: var(--moss);
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-primary:active {
    transform: scale(.97);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.btn-ghost {
    border: 1.5px solid rgba(168, 212, 168, 0.4);
    color: var(--mint);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-ghost:active {
    background: rgba(168, 212, 168, .08);
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 2.25rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(14, 26, 16, 0.5);
    backdrop-filter: blur(12px);
    overflow: hidden;
    animation: fadeUp .8s .5s both;
}

.stat {
    flex: 1;
    padding: .9rem .5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.stat-l {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: .8px;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    animation: bounce 2s 1.5s infinite;
}

.scroll-hint span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.alert {
    margin-bottom: 1rem;
    border-radius: 8px;
}

/* ── SECTIONS ── */
section {
    padding: 4rem 1.25rem;
}

.sec-label {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .6rem;
}

.sec-sub {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── WHY ── */
.why {
    background: linear-gradient(180deg, #0e1a10 0%, #111e12 100%);
}

.feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 2rem;
}

.feat {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .2s;
}

.feat:active {
    transform: scale(.98);
}

.feat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 212, 168, .25), transparent);
}

.feat-ico {
    width: 38px;
    height: 38px;
    background: rgba(61, 110, 66, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
}

.feat-ico svg {
    width: 20px;
    height: 20px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 1.7;
}

.feat h3 {
    font-size: .82rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: .3rem;
}

.feat p {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.feat-wide {
    grid-column: 1/-1;
}

/* ── KATALOG ── */
.katalog {
    background: #0a1509;
}

.tabs-wrap {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 1.5rem 0 .75rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tabs-wrap::-webkit-scrollbar {
    display: none;
}

.tab {
    flex-shrink: 0;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
    color: var(--text-muted);
    font-size: 12.5px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .2s;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-box {
    width: 100%;
    max-width: 420px;
    background: #132016;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.25rem;
    animation: fadeUp .25s ease;
}

.modal-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--mint);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: .8rem;
    margin-bottom: .4rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0d160f;
    border: 1px solid var(--border);
    color: #fff;
    padding: .85rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-size: .88rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(61, 110, 66, .15);
}

/* ── CUSTOM SELECT ── */
.custom-select-wrap {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    background: #0d160f;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: .85rem 2.75rem .85rem 1rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: border-color .2s, box-shadow .2s, color .2s;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
}

.custom-select-trigger.has-value {
    color: var(--cream);
}

.custom-select-trigger.open {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(61, 110, 66, .15);
}

.custom-select-trigger .select-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.6;
    opacity: .7;
}

.custom-select-trigger .select-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-trigger .select-stock-badge {
    font-size: .7rem;
    background: rgba(61,110,66,.25);
    color: var(--mint);
    border: 1px solid rgba(168,212,168,.2);
    padding: 2px 8px;
    border-radius: 100px;
    flex-shrink: 0;
    font-weight: 500;
}

.chevron-wrap {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform .25s;
}

.chevron-wrap svg {
    width: 16px;
    height: 16px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 2;
    display: block;
}

.custom-select-trigger.open ~ .chevron-wrap,
.custom-select-wrap.open .chevron-wrap {
    transform: translateY(-50%) rotate(180deg);
}

.custom-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0f1c11;
    border: 1px solid rgba(168,212,168,.2);
    border-radius: 12px;
    z-index: 10000;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.3);
    animation: dropIn .2s cubic-bezier(.16,1,.3,1) both;
    display: none;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.custom-dropdown.open {
    display: block;
}

.dropdown-search {
    padding: .65rem .85rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.dropdown-search svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.dropdown-search input {
    background: transparent;
    border: none;
    color: var(--cream);
    font-size: .82rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    width: 100%;
    padding: 0;
    box-shadow: none;
}

.dropdown-search input::placeholder {
    color: var(--text-muted);
}

.dropdown-list {
    max-height: 210px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--moss) transparent;
}

.dropdown-list::-webkit-scrollbar {
    width: 4px;
}
.dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-list::-webkit-scrollbar-thumb {
    background: var(--moss);
    border-radius: 4px;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    cursor: pointer;
    transition: background .15s;
    border-bottom: 1px solid rgba(168,212,168,.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover,
.dropdown-option.focused {
    background: rgba(61,110,66,.18);
}

.dropdown-option.selected {
    background: rgba(61,110,66,.25);
}

.dropdown-option .opt-icon {
    width: 30px;
    height: 30px;
    background: rgba(61,110,66,.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-option .opt-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 1.8;
}

.dropdown-option .opt-info {
    flex: 1;
    overflow: hidden;
}

.dropdown-option .opt-name {
    font-size: .84rem;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.dropdown-option .opt-stock {
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.dropdown-option .opt-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .15s;
}

.dropdown-option .opt-check svg {
    width: 16px;
    height: 16px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 2.5;
}

.dropdown-option.selected .opt-check {
    opacity: 1;
}

.dropdown-empty {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: .8rem;
    color: var(--text-muted);
    display: none;
}

.dropdown-empty.show {
    display: block;
}

/* Hidden real select (tetap ada untuk form submit) */
.form-group select.hidden-select {
    display: none;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.btn-close {
    flex: 1;
    background: #222;
    color: #fff;
    border: none;
    padding: .9rem;
    border-radius: 10px;
}

.btn-send {
    flex: 1;
    background: var(--moss);
    color: #fff;
    border: none;
    padding: .9rem;
    border-radius: 10px;
}

.nav-wa {
    border: none;
    cursor: pointer;
}

.tab.active {
    background: var(--moss);
    color: #fff;
    border-color: var(--moss);
}

.products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prod-card {
    background: rgba(20, 38, 22, 0.7);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    transition: border-color .25s, transform .2s;
    position: relative;
}

.prod-card:active {
    transform: scale(.99);
}

.prod-card[data-cat].hidden {
    display: none;
}

.prod-img-side {
    width: 105px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a3020, #0d1f0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-img-side svg {
    width: 48px;
    height: 48px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.1;
    opacity: .75;
}

.prod-info {
    padding: .85rem 1rem;
    flex: 1;
}

.prod-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
    display: block;
}

.prod-name {
    font-size: .92rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: .25rem;
}

.prod-desc {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: .6rem;
}

.prod-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mint);
}

.prod-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: .65rem;
    color: var(--text-muted);
    font-weight: 400;
}

.prod-sewa {
    background: var(--moss);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.prod-sewa:active {
    transform: scale(.95);
    background: #2e6236;
}

/* ── CARA SEWA ── */
.cara {
    background: linear-gradient(180deg, #0a1509 0%, #0e1a10 100%);
}

.steps {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.step:last-child {
    border-bottom: none;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1.5px solid var(--moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mint);
    background: rgba(61, 110, 66, 0.12);
}

.step-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, var(--border), transparent);
    margin-top: 8px;
}

.step-right h3 {
    font-size: .93rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: .35rem;
}

.step-right p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── TESTIMONI ── */
.testi {
    background: #0a1509;
}

.testi-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 1.5rem 0 .5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.testi-scroll::-webkit-scrollbar {
    display: none;
}

.tcard {
    flex-shrink: 0;
    width: 280px;
    background: rgba(27, 58, 30, 0.5);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.25rem;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: .75rem;
}

.tcard-txt {
    font-size: .82rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(61, 110, 66, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--mint);
    flex-shrink: 0;
    border: 1px solid rgba(168, 212, 168, .2);
}

.tcard-name {
    font-size: .82rem;
    font-weight: 500;
    color: var(--cream);
}

.tcard-loc {
    font-size: .72rem;
    color: var(--text-muted);
}

/* ── CTA ── */
.cta-sec {
    background: linear-gradient(160deg, #162b18 0%, #0e1a10 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 4rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(61, 110, 66, .18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-sec .sec-label {
    justify-content: center;
}

.cta-sec .sec-label::before {
    display: none;
}

.cta-sec .sec-title {
    margin-bottom: .75rem;
}

.cta-sec .sec-sub {
    max-width: 340px;
    margin: 0 auto 2rem;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .15s;
    margin-bottom: 1.75rem;
}

.wa-btn:active {
    transform: scale(.97);
    background: #1db855;
}

.wa-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: .5rem;
}

.info-card {
    background: rgba(27, 58, 30, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .85rem;
    text-align: left;
}

.info-card:last-child {
    grid-column: 1/-1;
}

.info-lbl {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .3rem;
}

.info-val {
    font-size: .92rem;
    font-weight: 500;
    color: var(--mint);
}

/* ── FOOTER ── */
footer {
    background: #080e09;
    border-top: 1px solid var(--border);
    padding: 2rem 1.25rem 3rem;
    text-align: center;
}

.foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--mint);
    margin-bottom: .25rem;
}

.foot-tag {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.foot-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.foot-links a {
    font-size: .78rem;
    color: var(--sage);
    text-decoration: none;
}

.foot-copy {
    font-size: .7rem;
    color: #2e4a30;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── FLOATING WA BTN ── */
.fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, .35);
    z-index: 90;
    text-decoration: none;
    transition: transform .2s;
    animation: fabPulse 3s 2s infinite;
}

.fab:active {
    transform: scale(.92);
}

.fab svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, .35);
    }
    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, .6), 0 0 0 8px rgba(37, 211, 102, .08);
    }
}

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0;
}