/* =========================================================
   GLOBAL (GABUNGAN) – DIPAKAI SEMUA HALAMAN
   ✅ gabungan: style-global.css + style-home.css
   ========================================================= */

/* =============================
   WARNA GLOBAL (MINT GREEN ala chatbotv2)
   ============================= */
:root {
    --brand: #0b5d45;
    /* hijau utama */
    --brand2: #0f7a5a;
    /* hijau aksen */
    --mint1: #f3fbf8;
    /* background terang */
    --mint2: #e8f6f0;
    /* background tengah */
    --mint3: #dff3ec;
    /* background bawah */

    --text: rgba(18, 24, 22, .88);
    --muted: rgba(18, 24, 22, .60);
}

/* =============================
   UMUM / BODY
   ============================= */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(900px 520px at 50% 18%, rgba(11, 93, 69, .16), transparent 62%),
        radial-gradient(1100px 650px at 50% 78%, rgba(15, 122, 90, .14), transparent 60%),
        linear-gradient(180deg, var(--mint1) 0%, var(--mint2) 50%, var(--mint3) 100%);
}


/* Wrapper main agar footer terdorong ke bawah */
main {
    flex-grow: 1;
}

/* area brand dibuat "tetap" tingginya */
.geasy-brand {
    height: 34px;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

/* ukuran layout tetap 34px, tapi tampak lebih besar */
.geasy-logo {
    height: 80px;
    width: auto;
    display: block;
    transform: scale(1.8);
    /* BESARKAN DI SINI */
    transform-origin: left center;
    /* biar ngembang ke kanan */
}


.navbar {
    z-index: 1050;
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 20px;
}

/* ====== NAV PILL (PUTIH GLASS) ====== */
.geasy-navpill {
    position: relative;
    /* WAJIB */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .60);
    box-shadow: 0 18px 40px rgba(11, 93, 69, .14);
    /* atau pakai var(--shadow) kalau ada */
    backdrop-filter: blur(10px);
}

.geasy-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0b5d45;
    font-weight: 900;
}

.geasy-brand__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #0b5d45;
    box-shadow: 0 0 0 6px rgba(11, 93, 69, .10);
}

.geasy-links a {
    text-decoration: none;
    color: rgba(18, 24, 22, .64);
    font-weight: 800;
    font-size: .95rem;
    margin: 0 9px;
}

.geasy-links a:hover {
    color: #0b5d45;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.geasy-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.geasy-btn {
    border: 1px solid rgba(11, 93, 69, .18);
    background: rgba(255, 255, 255, .70);
    color: #0b5d45;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.geasy-btn--dark {
    background: radial-gradient(circle at 30% 30%, #0f7a5a, #0b5d45);
    border-color: rgba(11, 93, 69, .10);
    color: #fff;
}

.geasy-burger {
    border: 0;
    background: rgba(11, 93, 69, .10);
    color: #0b5d45;
    border-radius: 14px;
    padding: 8px 12px;
    font-weight: 900;
}

/* =============================
   HERO (untuk landing/home)
   - kalau section kamu pakai class="hero"
   ============================= */
.hero {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, .30)),
        radial-gradient(circle at 50% 20%, rgba(11, 93, 69, .18), transparent 60%);
    color: var(--text);
    padding: 0px 0;
}

/* Kalau kamu pakai section lain (selain hero) */
section:not(.hero) {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* =============================
   SECTION TITLE
   ============================= */
.section-title h2 {
    font-weight: 800;
    color: var(--text);
}

.section-title p {
    color: var(--muted);
}

/* =============================
   CARD / FEATURE BOX
   ============================= */
.feature-box,
.card,
.nk-card {
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    border: 0;
    box-shadow: 0 14px 30px rgba(11, 93, 69, .12);
}

.feature-box {
    padding: 1.25rem;
}

.feature-box h5,
.card-title {
    font-weight: 700;
    color: var(--text);
}

.feature-box p,
.card-text {
    color: var(--muted);
}

/* hover soft */
.feature-box:hover,
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 93, 69, .16);
    transition: all .25s ease;
}

/* =============================
   BUTTON
   - btn-primary ikut tema hijau
   - nk-btn ikut tema hijau
   ============================= */
.btn-primary,
.nk-btn {
    background: radial-gradient(circle at 30% 30%, var(--brand2), var(--brand)) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(11, 93, 69, .28);
}

.btn-primary:hover,
.nk-btn:hover {
    filter: brightness(1.05);
}

/* varian solid/outline kalau kamu pakai */
.nk-btn--solid {
    background: #fff !important;
    color: var(--brand) !important;
    box-shadow: 0 14px 30px rgba(11, 93, 69, .18);
}

.nk-btn--outline {
    background: rgba(255, 255, 255, .22) !important;
    color: var(--brand) !important;
    border: 1px solid rgba(11, 93, 69, .25) !important;
}

/* =============================
   HEADING
   ============================= */
h1,
h2,
h3,
h4 {
    font-weight: 600;
}

/* =============================
   TABEL
   ============================= */
table.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

table thead {
    background-color: #e9ecef;
}

table td,
table th {
    vertical-align: middle;
}

/* =============================
   ACCORDION
   ============================= */
.accordion-button {
    font-weight: 500;
}

/* =============================
   FOOTER
   ============================= */
footer {
    background-color: #1f1f2e;
    color: #fff;
    padding: 40px 0;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

/* =============================
   SCROLL TO TOP BUTTON
   ============================= */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--brand);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    background-color: var(--brand2);
}

/* =============================
   TEXT UTILITIES
   ============================= */
.text-muted {
    color: var(--muted) !important;
}

.text-balance {
    text-wrap: balance;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 992px) {
    .hero {
        padding: 45px 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 35px 0;
    }

    p,
    .lead {
        font-size: 1rem;
        line-height: 1.7;
    }
}