/* ============================================
   ETAWAGEN - Minimalis 980px
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2e7d4f;      /* hijau susu etawa */
    --primary-dark: #1f5c38;
    --accent: #e8a13d;       /* kuning madu */
    --text: #333;
    --text-light: #666;
    --grey: #f7f6f2;
    --border: #e5e2da;
    --white: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { line-height: 1.3; }

/* ---------- HEADER ---------- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo a {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}
.logo a span { color: var(--accent); }
.logo small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.main-nav { display: flex; gap: 6px; }

.main-nav a {
    padding: 8px 16px;
    color: var(--text);
    font-size: 15px;
    border-radius: 4px;
}
.main-nav a:hover { background: var(--grey); color: var(--primary); }
.main-nav a.active {
    background: var(--primary);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary);
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}
.hero h1 {
    font-size: 40px;
    margin-bottom: 18px;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero-sub {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 32px;
    opacity: 0.92;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- BUTTON ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--accent);
    color: #3d2a08;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: #d18f2c;
    border-color: #d18f2c;
    color: #3d2a08;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* outline di area putih (paket) */
.price-card .btn-outline,
.section .btn-outline:not(.hero .btn-outline) {
    color: var(--primary);
    border-color: var(--primary);
}
.price-card .btn-outline:hover,
.section .btn-outline:not(.hero .btn-outline):hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block { display: block; text-align: center; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ---------- SECTION ---------- */
.section { padding: 70px 0; }
.section-grey { background: var(--grey); }
.section-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 14px;
}
.section-sub {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 44px;
}

/* ---------- GRID ---------- */
.grid-3, .grid-4 {
    display: grid;
    gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }

/* ---------- CARD ---------- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 26px;
}
.section-grey .card { border-color: var(--border); }
.card h3 { margin-bottom: 10px; font-size: 18px; }
.card p { color: var(--text-light); font-size: 15px; }

/* ---------- STEP ---------- */
.step { text-align: center; padding: 10px; }
.step-num {
    display: inline-block;
    font-size: 34px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 14px; }

/* ---------- PRICE CARD ---------- */
.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
}
.price-card.featured {
    border: 2px solid var(--primary);
}
.badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #3d2a08;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.price-card h3 { font-size: 18px; margin-bottom: 12px; }
.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}
.price-note {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 18px;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin: 18px 0 24px;
    font-size: 15px;
}
.price-card ul li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
}

/* ---------- CTA FINAL ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}
.cta-final h2 { font-size: 30px; margin-bottom: 12px; }
.cta-final p { opacity: 0.9; margin-bottom: 26px; }

/* ---------- PAGE HEADER ---------- */
.page-header {
    background: var(--grey);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 32px; margin-bottom: 8px; }
.page-header p { color: var(--text-light); }

/* ---------- ABOUT ---------- */
.about-text {
    max-width: 720px;
    margin: 0 auto;
}
.about-text p { margin-bottom: 18px; }

.stat { padding: 10px; }
.stat-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}
.stat-label { color: var(--text-light); }

/* ---------- PRODUK ---------- */
.produk-utama {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 44px;
    align-items: center;
}
.produk-box {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.produk-box > span {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
}
.produk-box .accent { color: var(--accent); }
.produk-box small { opacity: 0.85; margin-top: 8px; }

.produk-detail h2 { font-size: 32px; margin-bottom: 4px; }
.produk-tagline {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}
.produk-detail > p { color: var(--text-light); margin-bottom: 18px; }
.produk-list {
    list-style: none;
    margin-bottom: 22px;
}
.produk-list li { padding: 5px 0; font-size: 15px; }
.produk-harga { margin-bottom: 22px; }
.produk-harga .harga {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
}
.produk-harga .harga-note {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 8px;
}

/* ---------- KONTAK ---------- */
.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 44px;
}
.kontak-info h2, .kontak-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.info-item { margin-bottom: 22px; }
.info-item h3 { font-size: 16px; margin-bottom: 4px; }
.info-item p { color: var(--text-light); font-size: 15px; }
.kontak-info .btn { margin-top: 6px; }

.form-note {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 18px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
    padding: 16px 20px;
}
.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 15px;
}

/* ---------- TESTIMONI ---------- */
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 26px;
    display: flex;
    flex-direction: column;
}
.testi-stars {
    color: var(--accent);
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.testi-quote {
    color: var(--text);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px dashed var(--border);
    padding-top: 16px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 800;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-user strong { display: block; font-size: 15px; }
.testi-user small { color: var(--text-light); font-size: 13px; }

.disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 30px;
    font-style: italic;
}

/* ---------- TOMBOL WA MENGAMBANG ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #1c2a22;
    color: #c8d4cc;
    padding: 50px 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 36px;
    padding-bottom: 36px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 17px;
}
.footer-col h4 span { color: var(--accent); }
.footer-col p, .footer-col li {
    font-size: 14px;
    color: #9fb3a6;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #c8d4cc; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid #2c3d33;
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #8aa191;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .produk-utama, .kontak-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 30px; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        border-bottom: 1px solid var(--border);
        padding: 10px 20px;
    }
    .main-nav.open { display: flex; }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 26px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 24px; }
}
