:root {
    --primary: #1b5e20;
    --dark: #0a250d;
    --accent: #ffb300;
    --gold: #e0c068;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --soft-green: #edf6ee;
    --soft-orange: #fff6ec;
    --line-green: #d9eadc;
    --line-orange: #f6d4af;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
    background: var(--dark);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.navbar-glass {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 32px));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px 24px;
    background: rgba(8, 25, 10, 0.42);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.logo {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.12);
}

.btn-primary {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border: 1px solid rgba(255,255,255,0.12);
}

/* Countdown */
.countdown-wrap {
    position: relative;
    z-index: 20;
    margin-top: -24px;
    padding: 0 20px;
}

.countdown-strip {
    max-width: 540px;
    margin: 0 auto;
    background: linear-gradient(90deg, #ffb300, #ffd54f);
    text-align: center;
    padding: 12px 18px;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1a1a1a;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(255, 179, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Pricing */
.pricing-section {
    padding: 38px 0 26px;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    color: var(--primary);
    margin-bottom: 10px;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 26px;
    padding: 22px 18px 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(224, 192, 104, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(224, 192, 104, 0.08), rgba(255, 179, 0, 0.95), rgba(224, 192, 104, 0.08));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 192, 104, 0.72);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(224, 192, 104, 0.12);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card-sapi {
    background: linear-gradient(180deg, #fbfefb 0%, #eef7ef 100%);
    border-color: #dbeadc;
}

.price-card-kambing {
    background: linear-gradient(180deg, #fffdf8 0%, #fff4e8 100%);
    border-color: #f1ddbe;
}

.price-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.price-icon-wrap {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.76));
    border: 1px solid rgba(224, 192, 104, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 24px rgba(0,0,0,0.04);
}

.price-icon-wrap img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.price-label-group {
    min-width: 0;
}

.price-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    background: rgba(27, 94, 32, 0.08);
    color: var(--primary);
}

.price-card-kambing .price-label {
    background: rgba(217, 119, 6, 0.1);
    color: #b45309;
}

.price-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.35;
}

.price-subhead {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    line-height: 1.45;
}

.price-value {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.price-card-kambing .price-value {
    color: #d97706;
}

.price-unit {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.price-features {
    list-style: none;
    border-top: 1px dashed rgba(27, 94, 32, 0.2);
    padding-top: 16px;
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.price-card-kambing .price-features {
    border-top-color: rgba(217, 119, 6, 0.22);
}

.price-features li {
    position: relative;
    padding-left: 22px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.55;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--primary);
}

.price-card-kambing .price-features li::before {
    color: #d97706;
}

.pricing-note-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 18px;
    align-items: center;
    background: linear-gradient(180deg, #f7fbf7 0%, #eef6ef 100%);
    border: 1px solid #dce8de;
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
}

.note-left h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.note-left p,
.note-right p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.note-center {
    background: linear-gradient(135deg, #0f6b2a, #1b5e20);
    color: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(27, 94, 32, 0.2);
}

.note-bsi-logo {
    width: 72px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 4px;
    background: #fff;
    border-radius: 10px;
    padding: 6px 8px;
}

.note-rek {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.note-name {
    font-size: 0.92rem;
    opacity: 0.95;
    line-height: 1.45;
}

/* Stats */
.stats-section {
    padding: 28px 0 22px;
    background: linear-gradient(180deg, #0a250d 0%, #123b17 100%);
    color: white;
    text-align: center;
    margin-top: 0;
}

.label-gold {
    font-size: 0.88rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 760px;
    margin: 0 auto 28px;
}

.card-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    padding: 24px 20px 20px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
}

.stat-icon-wrap {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.card-stat img {
    max-height: 84px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(224, 192, 104, 0.12));
}

.stat-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.unit {
    font-size: 1rem;
    color: #f8e7ad;
    font-weight: 700;
}

.desc {
    font-size: 0.8rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Quran */
.quran-box {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
}

.arabic {
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.9;
}

.translation {
    font-size: 0.9rem;
    color: #d1d5db;
    font-style: italic;
}

.ref {
    font-size: 0.78rem;
    color: var(--accent);
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

/* Quick Access */
.quick-access {
    padding: 22px 0 10px;
    background: var(--bg-light);
}

.section-title {
    font-size: 1.18rem;
    font-weight: 800;
    margin: 0 0 16px;
    text-align: center;
    color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.menu-item {
    background: #fff;
    padding: 18px 12px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    border: 1px solid #eceff1;
    transition: 0.22s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

.menu-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 16px 30px rgba(27, 94, 32, 0.08);
}

.highlight-item {
    border: 2px solid #ffe08a;
    background: linear-gradient(180deg, #fffdf5 0%, #fffaf0 100%);
}

.icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.txt strong {
    display: block;
    font-size: 0.92rem;
    color: var(--primary);
}

.txt span {
    font-size: 0.72rem;
    color: #9099a3;
}

/* Payment / Help */
.payment-section {
    padding: 12px 0 34px;
    background: #fff;
}

.payment-text {
    width: 100%;
    background: linear-gradient(180deg, #fbfdfb 0%, #f5faf5 100%);
    border: 1px solid #edf3ed;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.04);
}

.title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.15;
}

.payment-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 22px;
}

.wa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wa-btn {
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #e3efe3;
    transition: 0.2s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
}

.wa-btn:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.wa-btn strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.wa-btn span {
    font-size: 0.76rem;
    color: #777;
}

/* Footer */
.footer {
    text-align: center;
    padding: 24px 20px 30px;
    color: #aaa;
    font-size: 0.78rem;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-note-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .note-center {
        align-items: center;
    }
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 34vh;
    }

    .navbar-glass {
        width: calc(100% - 24px);
        padding: 10px 14px;
        border-radius: 22px;
    }

    .nav-links a {
        font-size: 0.74rem;
        padding: 7px 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
    }

    .wa-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: 26vh;
    }

    .navbar-glass {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .countdown-wrap {
        margin-top: -18px;
        padding: 0 14px;
    }

    .countdown-strip {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .pricing-section {
        padding: 28px 0 20px;
    }

    .pricing-title {
        font-size: 1.6rem;
    }

    .pricing-subtitle {
        font-size: 0.92rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .price-card-top {
        gap: 12px;
    }

    .price-icon-wrap {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
        border-radius: 18px;
    }

    .price-icon-wrap img {
        width: 38px;
        height: 38px;
    }

    .price-value {
        font-size: 1.75rem;
    }

    .price-card h3 {
        font-size: 1rem;
    }

    .note-rek {
        font-size: 1.55rem;
    }

    .stats-section {
        padding: 24px 0 20px;
    }

    .label-gold {
        margin-bottom: 18px;
    }

    .card-stat {
        padding: 20px 16px;
    }

    .card-stat img {
        max-height: 68px;
    }

    .number {
        font-size: 2.4rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .title {
        font-size: 1.55rem;
    }

    .payment-text {
        padding: 22px;
        border-radius: 22px;
    }

    .arabic {
        font-size: 1.08rem;
    }

    .translation {
        font-size: 0.84rem;
    }
}
