/* ===== RESET & ROOT ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --merah: #DE1F26;
    --merah-gelap: #A8151B;
    --merah-muda: #FFF0F0;
    --merah-border: #F5CCCF;
    /* FIX CONTRAST #1: teks-muted dinaikkan dari #6B6B6B → #595959
     Ratio lama: ~4.48:1 (gagal untuk teks < 14px bold)
     Ratio baru: ~5.74:1 (lulus AA untuk semua ukuran) */
    --teks: #1A1A1A;
    --teks-muted: #595959;
    --bg: #FFFFFF;
    --bg2: #FAFAFA;
    --garis: #E8E8E8;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* FIX MOTION #1: hormati preferensi pengguna reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--sans);
    color: var(--teks);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== FOCUS VISIBLE (untuk keyboard navigation) ===== */
/* FIX ACCESSIBILITY #2: semua elemen interaktif harus punya outline focus yang jelas */
:focus-visible {
    outline: 3px solid var(--merah);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Hapus outline default hanya untuk mouse user */
:focus:not(:focus-visible) {
    outline: none;
}

/* ===== NAVIGASI ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--garis);
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--merah);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .logo-mark svg {
        width: 20px;
        height: 20px;
        fill: white;
    }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--teks);
    font-weight: 700;
    letter-spacing: -0.3px;
}

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

/* FIX CONTRAST #2: logo-sub dari #6B6B6B → #595959 */
.logo-sub {
    font-size: 11px; /* dinaikkan dari 10px untuk keterbacaan */
    color: var(--teks-muted);
    font-weight: 400; /* dinaikkan dari 300 agar lebih terbaca */
    letter-spacing: 0.3px;
}

/* FIX LIST #1: nav-links harus mengandung <li> → pastikan HTML-nya:
   <ul class="nav-links"><li><a>...</a></li></ul>
   CSS di sini sudah benar, pastikan HTML-nya juga */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--teks-muted);
        font-size: 14px;
        font-weight: 400;
        transition: color 0.2s;
        /* FIX ACCESSIBILITY: tambah padding untuk touch target minimum 44px */
        padding: 8px 0;
        display: inline-block;
    }

        .nav-links a:hover {
            color: var(--merah);
        }

.nav-cta {
    background: var(--merah);
    color: white;
    border: none;
    padding: 10px 20px; /* sedikit diperbesar untuk touch target */
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--sans);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    /* FIX ACCESSIBILITY: min touch target */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

    .nav-cta:hover {
        background: var(--merah-gelap);
    }

/* ===== HERO ===== */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 2rem 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--merah-muda);
    border: 1px solid var(--merah-border);
    color: var(--merah);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600; /* dinaikkan dari 500 untuk kontras lebih baik */
    margin-bottom: 20px;
}

    .hero-badge::before {
        content: '';
        display: inline-block;
        width: 7px;
        height: 7px;
        background: var(--merah);
        border-radius: 50%;
        flex-shrink: 0;
    }

h1 {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.2;
    color: var(--teks);
    margin-bottom: 16px;
    font-weight: 700;
}

    h1 em {
        color: var(--merah);
        font-style: normal;
    }

.hero-sub {
    color: var(--teks-muted);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400; /* dinaikkan dari 300 untuk kontras */
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--merah);
    color: white;
    border: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--sans);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; /* touch target */
}

    .btn-primary:hover {
        background: var(--merah-gelap);
    }

.btn-outline {
    background: transparent;
    color: var(--teks);
    border: 1.5px solid #BBBBBB; /* FIX CONTRAST #3: garis #E8E8E8 → #BBBBBB untuk kontras border */
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--sans);
    font-weight: 500; /* dinaikkan dari 400 */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

    .btn-outline:hover {
        border-color: var(--merah);
        color: var(--merah);
    }

.hero-visual {
    background: var(--bg2);
    border: 1px solid var(--garis);
    border-radius: 16px;
    padding: 28px;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: white;
    border: 1px solid var(--garis);
    border-radius: 10px;
    padding: 18px;
}

.stat-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--teks);
}

    .stat-num.red {
        color: var(--merah);
    }

/* FIX CONTRAST #4: stat-label dari var(--teks-muted) = #595959 */
.stat-label {
    font-size: 12px;
    color: var(--teks-muted);
    margin-top: 2px;
    font-weight: 500; /* dinaikkan dari 300 — teks 12px butuh weight lebih tinggi */
}

.izin-badge {
    margin-top: 16px;
    background: white;
    border: 1px solid var(--merah-border);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap; /* fix overflow mobile */
}

.izin-icon {
    width: 36px;
    height: 36px;
    background: var(--merah-muda);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FIX CONTRAST #5: izin-text muted */
.izin-text p:first-child {
    font-size: 12px;
    color: var(--teks-muted);
    font-weight: 500; /* dinaikkan dari default 300/400 */
}

.izin-text p:last-child {
    font-size: 13px;
    font-weight: 600; /* sedikit lebih tebal */
    color: var(--teks);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 60px 0;
    border-top: 1px solid var(--garis);
}

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

.sec-label {
    font-size: 12px;
    font-weight: 600; /* dinaikkan untuk kontras teks kecil */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--merah);
    margin-bottom: 10px;
}

h2 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--teks);
    margin-bottom: 12px;
    line-height: 1.25;
}

/* FIX CONTRAST #6: sec-desc */
.sec-desc {
    color: var(--teks-muted);
    font-size: 15px;
    max-width: 520px;
    font-weight: 400; /* dinaikkan dari 300 */
}

/* ===== PAKET ===== */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.paket-card {
    border: 1px solid var(--garis);
    border-radius: 12px;
    padding: 0px;
    background: white;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .paket-card:hover {
        border-color: var(--merah-border);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(222, 31, 38, 0.08);
    }

    .paket-card.featured {
        border-color: var(--merah);
    }

.featured-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--merah);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.paket-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--teks);
}

/* FIX CONTRAST #7: paket-dur */
.paket-dur {
    font-size: 12px;
    color: var(--teks-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.paket-price {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--merah);
    margin-bottom: 4px;
}

/* FIX CONTRAST #8: paket-price-sub */
.paket-price-sub {
    font-size: 12px;
    color: var(--teks-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

/* FIX LIST #2: .paket-list berisi <li> langsung — sudah benar di HTML.
   Tambahkan role="list" di HTML jika perlu screen reader */
.paket-list {
    list-style: none;
    margin-bottom: 24px;
    flex: 1; /* agar tombol selalu di bawah */
}

    .paket-list li {
        font-size: 13px;
        color: var(--teks-muted);
        padding: 5px 0;
        border-bottom: 1px solid var(--bg2);
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
    }

        .paket-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--merah);
            border-radius: 50%;
            flex-shrink: 0;
            /* FIX ACCESSIBILITY: dekorasi murni, tidak perlu dibaca screen reader */
            /* aria-hidden="true" sebaiknya ditambah di HTML untuk elemen dekoratif */
        }

.paket-btn {
    width: 100%;
    padding: 12px; /* sedikit diperbesar untuk touch target */
    border-radius: 7px;
    font-size: 14px;
    font-family: var(--sans);
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid #BBBBBB; /* FIX CONTRAST: border lebih gelap */
    background: white;
    color: var(--teks);
    transition: all 0.2s;
    margin-top: auto;
    min-height: 44px; /* touch target minimum */
}

    .paket-btn:hover,
    .paket-card.featured .paket-btn {
        background: var(--merah);
        border-color: var(--merah);
        color: white;
    }

/* ===== YOUTUBE SECTION ===== */
.yt-section {
    background: var(--bg2);
}

.yt-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.yt-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--merah);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: 1.5px solid var(--merah-border);
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--merah-muda);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    min-height: 44px;
}

    .yt-channel-link:hover {
        background: var(--merah);
        color: white;
    }

    .yt-channel-link svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        flex-shrink: 0;
    }

/* YouTube layout: embed besar + sidebar */
.yt-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: start;
}

.yt-main-embed {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    width: 100%;
}

    /* FIX IFRAME: title ditambahkan di HTML! */
    /* CSS: pastikan iframe punya title attribute di HTML:
   <iframe title="Video PT Alhijaz Indowisata" ...> */
    .yt-main-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.yt-playlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

    .yt-playlist::-webkit-scrollbar {
        width: 4px;
    }

    .yt-playlist::-webkit-scrollbar-track {
        background: var(--garis);
        border-radius: 4px;
    }

    .yt-playlist::-webkit-scrollbar-thumb {
        background: var(--merah-border);
        border-radius: 4px;
    }

.yt-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid transparent;
    background: white;
    transition: all 0.2s;
    align-items: center;
    /* FIX ACCESSIBILITY: tombol harus bisa diakses keyboard */
    /* Tambahkan tabindex="0" dan onkeypress di HTML */
}

    .yt-item:hover {
        border-color: var(--merah-border);
    }

    .yt-item.active {
        border-color: var(--merah);
        background: var(--merah-muda);
    }

.yt-item-thumb {
    position: relative;
    width: 88px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
}

    .yt-item-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.yt-item-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    /* aria-hidden="true" di HTML karena dekoratif */
}

    .yt-item-play svg {
        width: 14px;
        height: 14px;
        fill: white;
    }

.yt-item-info {
    flex: 1;
    min-width: 0;
}

.yt-item-title {
    font-size: 12px;
    font-weight: 600; /* dinaikkan dari 500 */
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--teks);
}

.yt-item.active .yt-item-title {
    color: var(--merah);
}

.yt-item-num {
    font-size: 11px;
    color: var(--teks-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== VIDEO GRID (fallback lama jika dipakai) ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    background: white;
    border: 1px solid var(--garis);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .video-card:hover {
        transform: translateY(-3px);
        border-color: var(--merah-border);
    }

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s;
    }

.video-card:hover .video-thumb img {
    transform: scale(1.04);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.2s;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 48px;
    height: 48px;
    background: var(--merah);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .play-btn svg {
        width: 20px;
        height: 20px;
        fill: white;
        margin-left: 3px;
    }

.video-info {
    padding: 14px;
}

.video-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--teks);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 12px; /* dinaikkan dari 11px */
    color: var(--teks-muted);
    font-weight: 400;
}

/* Loading & error states */
.video-loading {
    text-align: center;
    padding: 48px 0;
    color: var(--teks-muted);
    font-size: 14px;
}

    .video-loading .spinner {
        width: 32px;
        height: 32px;
        border: 2px solid var(--garis);
        border-top-color: var(--merah);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto 12px;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.video-error {
    text-align: center;
    padding: 32px;
    background: white;
    border: 1px solid var(--garis);
    border-radius: 12px;
    color: var(--teks-muted);
    font-size: 14px;
}

    .video-error a {
        color: var(--merah);
        text-decoration: underline; /* FIX: link harus punya underline atau cukup jelas */
        font-weight: 600;
    }

/* Modal player */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .modal-overlay.active {
        display: flex;
    }

.modal-box {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 44px; /* FIX: touch target 44x44 */
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

/* FIX IFRAME: tambah title="..." di HTML */
.modal-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--merah);
    color: white;
    padding: 40px 0;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-num {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
    /* Teks putih di atas --merah: ratio ~4.87:1 — lulus AA */
}

.trust-label {
    font-size: 13px; /* dinaikkan dari 12px */
    opacity: 1; /* FIX CONTRAST #9: opacity 0.85 bisa merusak kontras → ganti ke warna eksplisit */
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}

/* ===== FAQ ===== */
.faq-list {
    margin-top: 40px;
    max-width: 760px;
}

.faq-item {
    border-bottom: 1px solid var(--garis);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--sans);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--teks);
    /* FIX ACCESSIBILITY: button sudah native, screen reader mengenali ini */
    /* Tambah aria-expanded di JavaScript */
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--merah);
    /* aria-hidden="true" di HTML */
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a {
    max-height: 350px;
    padding-bottom: 16px;
}

/* FIX CONTRAST #10: faq answer text */
.faq-a p {
    font-size: 14px;
    color: var(--teks-muted);
    line-height: 1.7;
    font-weight: 400; /* dinaikkan dari 300 */
}

/* ===== KONTAK ===== */
.kontak-section {
    background: var(--bg2);
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.kontak-card {
    background: white;
    border: 1px solid var(--garis);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kontak-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

    .kontak-icon.wa {
        background: #D4F5E5; /* sedikit lebih gelap dari #E8F8F0 untuk kontras ikon */
    }

    .kontak-icon.email {
        background: var(--merah-muda);
    }

.kontak-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--teks);
}

/* FIX CONTRAST #11: kontak-card p */
.kontak-card p {
    font-size: 14px; /* dinaikkan dari 13px */
    color: var(--teks-muted);
    font-weight: 400; /* dinaikkan dari 300 */
}

.kontak-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, filter 0.2s;
    min-height: 44px; /* touch target */
    justify-content: center;
}

    .kontak-card a:hover {
        opacity: 0.88;
        filter: brightness(0.95);
    }

.wa-btn {
    background: #25D366;
    color: white;
    /* ratio putih di #25D366: ~2.9:1 → perlu teks lebih gelap atau background lebih gelap */
    /* FIX CONTRAST #12: ganti ke versi lebih gelap */
    background: #1DA851;
    color: white;
    /* ratio #1DA851: ~3.7:1 — cukup untuk teks putih 14px bold. Jika ingin lulus AA penuh, pakai #178A43 */
}

.email-btn {
    background: var(--merah);
    color: white;
}

/* ===== FOOTER ===== */
footer {
    background: var(--teks);
    color: white;
    padding: 40px 0 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

    .footer-logo-name span {
        color: #F5A0A3;
    }

/* FIX CONTRAST #13: footer sub-text */
.footer-logo-sub {
    font-size: 12px; /* dinaikkan dari 11px */
    color: rgba(255, 255, 255, 0.65); /* dinaikkan dari 0.4 */
    margin-bottom: 10px;
    font-weight: 400; /* dinaikkan dari 300 */
    letter-spacing: 0.3px;
}

/* FIX CONTRAST #14: footer brand description */
.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75); /* dinaikkan dari 0.5 */
    font-weight: 400; /* dinaikkan dari 300 */
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85); /* dinaikkan dari 0.6 */
}

/* FIX LIST #3: pastikan .footer-links ul hanya berisi <li> langsung */
.footer-links ul {
    list-style: none;
}

    .footer-links ul li {
        margin-bottom: 8px;
    }

        /* FIX CONTRAST #15: footer links */
        .footer-links ul li a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7); /* dinaikkan dari 0.5 */
            text-decoration: none;
            font-weight: 400; /* dinaikkan dari 300 */
            transition: color 0.2s;
        }

            .footer-links ul li a:hover {
                color: white;
                text-decoration: underline;
            }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* FIX CONTRAST #16: footer-copy */
.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65); /* dinaikkan dari 0.4 */
    font-weight: 400;
}

.kemenag {
    font-size: 12px;
    color: #F5A0A3;
    font-weight: 500;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
}

    /* FIX IFRAME #2: tambah title="Lokasi Agen Alhijaz Indowisata" di HTML */
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ===== PAKET ITEM (card dinamis) — KONSOLIDASI DUPLIKAT ===== */
/* FIX: duplikasi rules paket-item dikonsolidasi menjadi satu blok */
.paket-item {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 7px
}

    .paket-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    }

/* HEADER */
.paket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* DATE */
.paket-date {
    font-size: 12px;
    color: var(--teks-muted);
    font-weight: 500;
}

/* BADGE */
.paket-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}

    .paket-badge.sisa {
        background: #ffeaea;
        color: #B01C1C; /* FIX CONTRAST: #d62828 → #B01C1C untuk kontras lebih baik di #ffeaea */
    }

/* TITLE */
.paket-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2px;
    color: #1A1A1A;
}

/* META */
.paket-meta {
    font-size: 12px;
    color: var(--teks-muted);
    font-weight: 500;
}

/* INFO */
.paket-info {
    font-size: 12px;
    color: #444;
    font-weight: 400;
}

/* LIST INFO */
.paket-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .paket-item ul li {
        font-size: 13px;
        color: #444;
        padding: 6px 0;
        border-bottom: 1px dashed #E8E8E8;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

        .paket-item ul li:last-child {
            border-bottom: none;
        }

        .paket-item ul li span:first-child {
            color: var(--teks-muted);
        }

        .paket-item ul li span:last-child {
            font-weight: 600;
            color: #1A1A1A;
        }

/* HOTEL SECTION */
.paket-hotel {
    font-size: 13px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
}

    .paket-hotel div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4px;
    }

        .paket-hotel div:last-child {
            margin-bottom: 0;
        }

/* HARGA SECTION */
.paket-harga {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

    .paket-harga div {
        background: #fff5f5;
        padding: 8px;
        border-radius: 6px;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

    .paket-harga span:last-child {
        font-weight: 700;
        color: var(--merah);
    }

/* ===== RESPONSIVE — KONSOLIDASI DUPLIKAT ===== */

/* TABLET */
@media (max-width: 900px) {
    .yt-layout {
        grid-template-columns: 1fr;
    }

    .yt-playlist {
        max-height: none;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        gap: 12px;
        padding-bottom: 4px;
    }

    .yt-item {
        min-width: 220px;
    }
}

/* TABLET / MOBILE */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 1.5rem;
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        padding: 16px;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .izin-badge {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }

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

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

    .trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .yt-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
    }
}

/* MOBILE KECIL */
@media (max-width: 480px) {
    h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero {
        padding: 30px 14px;
    }

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

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

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

.hero-badge {
    color: #A8151B; /* was: var(--merah) = #DE1F26 */
    font-weight: 600; /* sedikit lebih tebal untuk teks 12px */
}

    /* Titik dekoratif di kiri badge juga ikut disesuaikan */
    .hero-badge::before {
        background: #A8151B; /* was: var(--merah) */
    }

.yt-channel-link {
    color: #A8151B; /* was: var(--merah) = #DE1F26 */
    font-weight: 600;
    border-color: #F0B8BC; /* border sedikit lebih gelap agar serasi */
}

    /* Saat hover: background merah → teks putih, sudah lulus kontras */
    .yt-channel-link:hover {
        background: var(--merah);
        color: #FFFFFF;
        border-color: var(--merah);
    }

    /* Ikon SVG ikut warna teks */
    .yt-channel-link svg {
        fill: currentColor;
    }


/* ─── FIX 3: wa-btn (Chat via WhatsApp) ─────────────────────────
   Masalah : teks putih di atas #25D366 → ratio 1.98 (gagal parah)
   Solusi  : gelap­kan background ke #157A3C → ratio 5.41
   Tampilan tetap hijau WhatsApp tapi lebih tua/bold
   ──────────────────────────────────────────────────────────────── */
.wa-btn {
    background: #157A3C !important; /* was: #25D366 atau #1DA851 */
    color: #FFFFFF !important;
}

    .wa-btn:hover {
        background: #0F5C2C !important; /* sedikit lebih gelap saat hover */
        opacity: 1;
        filter: none;
    }

/* =========================
   WRAPPER LAYOUT
========================= */
.paket-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =========================
   LEFT PANEL (LIST)
========================= */
.paket-list-panel {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

/* =========================
   ITEM LIST
========================= */
.paket-row {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

    .paket-row:hover {
        background: #fafafa;
    }

    .paket-row.active {
        background: #f1f7ff;
        transform: scale(1.01);
    }

/* =========================
   TEXT
========================= */
.paket-row-date {
    font-size: 12px;
    color: #888;
}

.paket-row-title {
    font-weight: 600;
    margin: 5px 0;
}

.paket-row-meta {
    font-size: 13px;
    color: #666;
}

.paket-row-price {
    color: #d00;
    font-weight: bold;
    margin-top: 5px;
}

/* =========================
   SISA BADGE
========================= */
.paket-row-sisa {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #eee;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    transition: all 0.2s;
}

/* =========================
   STATUS WARNA
========================= */
.paket-row.normal {
    border-left-color: #ddd;
}

.paket-row.warning {
    border-left-color: #ff9800;
    background: #fff7e6;
}

.paket-row.danger {
    border-left-color: #e53935;
    background: #ffeaea;
}

/* badge warna */
.paket-row.warning .paket-row-sisa {
    background: #ff9800;
    color: #fff;
}

.paket-row.danger .paket-row-sisa {
    background: #e53935;
    color: #fff;
    font-weight: 600;
}

/* =========================
   RIGHT PANEL (DETAIL)
========================= */
.paket-detail-panel {
    position: sticky;
    top: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

/* =========================
   EMPTY STATE (INSTRUKSI)
========================= */
.detail-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    text-align: center;
    color: #777;
}

.detail-hint h3 {
    margin: 10px 0 5px;
}

.hint-icon {
    font-size: 28px;
    margin-bottom: 10px;
    animation: hintMove 1s infinite alternate;
}

@keyframes hintMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-8px);
    }
}

/* =========================
   DETAIL CONTENT
========================= */
.detail-content h2 {
    margin-bottom: 5px;
}

.paket-sub {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

/* =========================
   BOX (BROSUR)
========================= */
.paket-box {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-brosur {
    border: none;
    background: #fff;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
}

/* =========================
   INFO
========================= */
.paket-info {
    margin-top: 10px;
}

    .paket-info div {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        font-size: 14px;
    }

/* =========================
   HARGA
========================= */
.paket-harga {
    margin-top: 10px;
}

    .paket-harga div {
        display: flex;
        justify-content: space-between;
        background: #fff5f5;
        padding: 8px;
        border-radius: 6px;
        margin-top: 5px;
        font-size: 14px;
    }

/* =========================
   BUTTON
========================= */
.paket-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #e53935;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* pulse CTA */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229,57,53,0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(229,57,53,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229,57,53,0);
    }
}

/* =========================
   ANIMATION DETAIL
========================= */
.fade-in {
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SCROLLBAR (OPTIONAL BIAR CAKEP)
========================= */
.paket-list-panel::-webkit-scrollbar {
    width: 6px;
}

.paket-list-panel::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .paket-wrapper {
        grid-template-columns: 1fr;
    }

    .paket-detail-panel {
        position: relative;
    }

    .paket-list-panel {
        max-height: none;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    width: 600px;
    margin: 5% auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

    .modal-content iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}

/* =========================================
   PAKET SECTION
========================================= */

.paket-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    margin-top: 40px;
    align-items: start;
}

/* =========================================
   LEFT PANEL
========================================= */

.paket-list {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #ececec;
    overflow-y: auto;
    max-height: 780px;
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
    scroll-behavior: smooth;
}

.paket-list-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .paket-list-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: #222;
    }

    .paket-list-header span {
        font-size: 14px;
        color: #777;
    }

/* =========================================
   PAKET CARD
========================================= */

.paket-card {
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
    transition: all .25s ease;
    position: relative;
}

    .paket-card:last-child {
        border-bottom: 0;
    }

    .paket-card:hover {
        background: #fafafa;
    }

    .paket-card.active {
        background: #fff5f5;
        border-left: 4px solid #e31b23;
    }

/* =========================================
   CARD TRIGGER
========================================= */

.paket-trigger {
    padding: 22px;
    cursor: pointer;
}

.paket-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.paket-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.paket-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
    margin-bottom: 10px;
}

.paket-meta {
    font-size: 14px;
    color: #666;
}

.paket-right {
    text-align: right;
    flex-shrink: 0;
}

.paket-price {
    font-size: 22px;
    font-weight: 800;
    color: #e31b23;
    margin-bottom: 10px;
}

.paket-arrow {
    font-size: 14px;
    color: #999;
    transition: transform .3s ease;
}

.paket-card.active .paket-arrow {
    transform: rotate(180deg);
}

/* =========================================
   BADGE
========================================= */

.paket-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

    .paket-badge.normal {
        background: #f3f3f3;
        color: #666;
    }

    .paket-badge.low {
        background: #ffe5e5;
        color: #d90000;
        animation: pulse 1.5s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   EXPAND CONTENT
========================================= */

.paket-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .35s ease;
}

.paket-card.active .paket-expand {
    max-height: 1000px;
    opacity: 1;
}

.paket-expand-inner {
    padding: 0 22px 22px;
}

/* =========================================
   INFO BOX
========================================= */

.paket-info-box {
    background: #faf7f2;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.paket-info-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: 14px;
}

    .paket-info-row:last-child {
        border-bottom: 0;
    }

    .paket-info-row span:first-child {
        color: #666;
    }

    .paket-info-row span:last-child {
        font-weight: 700;
        color: #222;
        text-align: right;
    }

/* =========================================
   HOTEL + PRICE
========================================= */

.paket-section-title {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    margin: 20px 0 12px;
    font-weight: 700;
}

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

.paket-box {
    background: #fff5f5;
    border-radius: 14px;
    padding: 14px;
}

.paket-box-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.paket-box-value {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.paket-box-price {
    color: #e31b23;
    font-size: 18px;
    font-weight: 800;
}

/* =========================================
   BUTTON
========================================= */

.paket-btn {
    width: 100%;
    border: 0;
    background: #e31b23;
    color: #fff;
    border-radius: 14px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
    margin-top: 18px;
}

    .paket-btn:hover {
        transform: translateY(-2px);
        background: #c9141c;
    }

/* =========================================
   DETAIL PANEL DESKTOP
========================================= */

.paket-detail-panel {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #ececec;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

/* =========================================
   BROSUR MODAL
========================================= */

.brosur-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 30px;
    backdrop-filter: blur(4px);
}

.brosur-modal-content {
    width: 90%;
    max-width: 1000px;
    height: 90%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    animation: zoomIn .25s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.brosur-modal iframe,
.brosur-modal img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

.brosur-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    border: 0;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .paket-wrapper {
        display: block;
    }

    .paket-detail-panel {
        display: none;
    }

    .paket-list {
        max-height: none;
        overflow: visible;
        border-radius: 20px;
    }

    .paket-card {
        margin-bottom: 16px;
        border-radius: 18px;
        border: 1px solid #eee;
        overflow: hidden;
    }

        .paket-card.active {
            border-left: 0;
            border-color: #e31b23;
        }

    .paket-trigger {
        padding: 18px;
    }

    .paket-top {
        flex-direction: column;
    }

    .paket-right {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .paket-price {
        font-size: 20px;
    }

    .paket-title {
        font-size: 18px;
    }

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

    .paket-expand-inner {
        padding: 0 18px 18px;
    }

    /* fullscreen popup mobile */
    .brosur-modal {
        padding: 0;
    }

    .brosur-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        animation: slideUp .3s ease;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .brosur-close {
        top: 14px;
        right: 14px;
    }
}

/* =========================================
   PROMO SECTION
========================================= */

.promo-section {
    margin-top: 60px;
    position: relative;
}

.promo-scroll-wrap {
    position: relative;
}

/* =========================================
   SLIDER
========================================= */

.promo-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

    .promo-slider::-webkit-scrollbar {
        display: none;
    }

/* =========================================
   CARD
========================================= */

.promo-card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    scroll-snap-align: start;
    transition: all .3s ease;
    border: 1px solid rgba(255,255,255,.4);
}

    .promo-card:hover {
        transform: translateY(-6px);
    }

.promo-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .promo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.promo-card:hover img {
    transform: scale(1.05);
}

/* =========================================
   BADGE
========================================= */

.promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e31b23;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* =========================================
   BODY
========================================= */

.promo-body {
    padding: 22px;
}

.promo-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.promo-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: #222;
    margin-bottom: 14px;
}

.promo-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
}

.promo-price {
    font-size: 28px;
    font-weight: 900;
    color: #e31b23;
    margin-bottom: 18px;
}

.promo-btn {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #e31b23;
    color: #fff;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

    .promo-btn:hover {
        background: #c9161d;
    }

/* =========================================
   NAVIGATION
========================================= */

.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.95);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    cursor: pointer;
    font-size: 18px;
    transition: all .25s ease;
}

    .promo-nav:hover {
        transform: translateY(-50%) scale(1.08);
    }

    .promo-nav.prev {
        left: -20px;
    }

    .promo-nav.next {
        right: -20px;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px) {

    .promo-card {
        min-width: 85%;
        max-width: 85%;
    }

    .promo-nav {
        display: none;
    }

    .promo-slider {
        padding-bottom: 10px;
    }

    .promo-body {
        padding: 18px;
    }

    .promo-title {
        font-size: 18px;
    }

    .promo-price {
        font-size: 24px;
    }
}
/* =========================================
   PROMO DETAIL MODAL
========================================= */

.promo-detail-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
    backdrop-filter: blur(6px);
}

.promo-detail-content {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

@keyframes modalZoom {

    from {
        opacity: 0;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.promo-detail-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,.6);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
}

/* =========================================
   DETAIL LAYOUT
========================================= */

.promo-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 600px;
}

.promo-detail-image {
    background: #f5f5f5;
}

    .promo-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.promo-detail-body {
    padding: 34px;
}

.promo-detail-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.promo-detail-title {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #222;
    margin-bottom: 14px;
}

.promo-detail-meta {
    color: #666;
    margin-bottom: 10px;
}

.promo-detail-price {
    font-size: 34px;
    font-weight: 900;
    color: #e31b23;
    margin-bottom: 30px;
}

.promo-detail-section {
    margin-bottom: 12px;
}

    .promo-detail-section h4 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: #888;
        margin-bottom: 8px;
    }

.promo-detail-box {
    background: #faf7f2;
    border-radius: 18px;
    padding: 10px;
}

.promo-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .promo-detail-row:last-child {
        border-bottom: 0;
    }

    .promo-detail-row span:first-child {
        color: #666;
    }

    .promo-detail-row span:last-child {
        font-weight: 700;
        text-align: right;
    }

.promo-detail-btn {
    width: 100%;
    border: 0;
    background: #e31b23;
    color: #fff;
    border-radius: 16px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

    .promo-detail-btn:hover {
        background: #ca1820;
    }

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .promo-detail-modal {
        padding: 0;
        align-items: flex-end;
    }

    .promo-detail-content {
        max-width: none;
        width: 100%;
        max-height: 95vh;
        border-radius: 24px 24px 0 0;
        animation: slideUp .25s ease;
    }

    .promo-detail-grid {
        grid-template-columns: 1fr;
    }

    .promo-detail-image {
        height: 280px;
    }

    .promo-detail-body {
        padding: 22px;
    }

    .promo-detail-title {
        font-size: 24px;
    }

    .promo-detail-price {
        font-size: 28px;
    }
}

.promo-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    height: 100%;
}

/* IMAGE FIXED */

.promo-detail-image {
    height: 100%;
    background: #f5f5f5;
    overflow: hidden;
}

    .promo-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RIGHT CONTENT ONLY SCROLL */

.promo-detail-body {
    padding: 34px;
    overflow-y: auto;
    height: 100%;
}

@media(max-width:768px) {

    .promo-detail-content {
        height: 100vh;
        border-radius: 24px 24px 0 0;
    }

    .promo-detail-grid {
        grid-template-columns: 1fr;
        height: 100%;
    }

    .promo-detail-image {
        height: 42vh;
    }

    .promo-detail-body {
        height: 58vh;
        overflow-y: auto;
        padding: 22px;
    }
}

.paket-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #eee;
    margin-bottom:22px;
    transition:.3s ease;
}

.paket-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.paket-summary{
    padding:26px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    cursor:pointer;
}

.paket-date{
    color:#777;
    font-size:14px;
}

.paket-title{
    font-size:28px;
    line-height:1.3;
    font-weight:800;
    margin:10px 0;
}

.paket-meta{
    color:#888;
}

.paket-price-label{
    color:#999;
    font-size:13px;
}

.paket-price{
    color:#e31b23;
    font-size:26px;
    font-weight:900;
    margin-top:4px;
}

.paket-badge{
    margin-top:12px;
    background:#f2f2f2;
    color:#555;
    padding:8px 14px;
    border-radius:999px;
    display:inline-flex;
    font-size:13px;
    font-weight:700;
}

.paket-badge.danger{
    background:#ffe5e5;
    color:#e31b23;
}

.paket-detail{
    display:none;
    padding:0px;
    border-top:1px solid #eee;
    grid-template-columns:360px 1fr;
    gap:0px;
}

.paket-card.active .paket-detail{
    display:grid;
    animation:fadeDown .25s ease;
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-8px);
    }
    to{
        opacity:1;
        transform:none;
    }
}

.paket-image img{
    width:100%;
    border-radius:20px;
}

.detail-box{
    background:#faf7f2;
    border-radius:20px;
    padding:22px;
    margin-bottom:20px;
}

.detail-title{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#888;
    margin-bottom:16px;
}

.detail-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
}

.harga-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.harga-grid div{
    background:#fff;
    border-radius:14px;
    padding:16px;
}

.paket-btn{
    width:100%;
    height:58px;
    border:0;
    border-radius:18px;
    background:#e31b23;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

@media(max-width:768px){

    .paket-summary{
        flex-direction:column;
    }

    .paket-title{
        font-size:22px;
    }

    .paket-detail{
        grid-template-columns:1fr;
        padding:20px;
    }

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

    .paket-price{
        font-size:22px;
    }
}

/* =========================================
       MONTH SLIDER
    ========================================= */

.month-slider-wrap {
    margin-bottom: 32px;
    overflow: hidden;
}

.month-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 6px;
}

    .month-slider::-webkit-scrollbar {
        display: none;
    }

.month-chip {
    border: 0;
    background: #f5f5f5;
    border-radius: 999px;
    padding: 14px 22px;
    white-space: nowrap;
    cursor: pointer;
    transition: .25s ease;
    font-weight: 700;
    color: #666;
    flex-shrink: 0;
}

    .month-chip.active {
        background: #e31b23;
        color: #fff;
        box-shadow: 0 10px 24px rgba(227,27,35,.2);
    }

/* =========================================
       PAKET LIST
    ========================================= */

.paket-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.paket-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: .3s ease;
}

    .paket-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,.06);
    }

.paket-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .paket-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s ease;
    }

.paket-card:hover img {
    transform: scale(1.05);
}

.paket-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #555;
    font-size: 12px;
    font-weight: 700;
}

    .paket-badge.hot {
        background: #ffe5e5;
        color: #e31b23;
    }

.paket-body {
    padding: 24px;
}

.paket-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.paket-title {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.paket-meta {
    color: #777;
    margin-bottom: 18px;
}

.paket-price-label {
    font-size: 13px;
    color: #999;
}

.paket-price {
    font-size: 28px;
    font-weight: 900;
    color: #e31b23;
    margin-top: 6px;
    margin-bottom: 22px;
}

.paket-btn {
    width: 100%;
    border: 0;
    height: 56px;
    border-radius: 18px;
    background: #e31b23;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: .25s ease;
}

    .paket-btn:hover {
        background: #ca1820;
    }

/* =========================================
       MODAL
    ========================================= */

.paket-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
    backdrop-filter: blur(6px);
}

.paket-modal-content {
    width: 100%;
    max-width: 1100px;
    height: 92vh;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.paket-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,.6);
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.paket-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.paket-detail-image {
    background: #f5f5f5;
}

    .paket-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.paket-detail-body {
    padding: 34px;
    overflow-y: auto;
}

.detail-date {
    color: #888;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 14px;
}

.detail-meta {
    color: #666;
    margin-bottom: 26px;
}

.detail-section {
    margin-bottom: 26px;
}

.detail-section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    margin-bottom: 14px;
}

.detail-box {
    background: #faf7f2;
    border-radius: 20px;
    padding: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .detail-row:last-child {
        border-bottom: 0;
    }

    .detail-row span:first-child {
        color: #666;
    }

    .detail-row span:last-child {
        font-weight: 700;
        text-align: right;
    }

.harga-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .harga-grid div {
        background: #fff;
        border-radius: 16px;
        padding: 18px;
    }

    .harga-grid span {
        display: block;
        color: #888;
        margin-bottom: 6px;
    }

    .harga-grid strong {
        font-size: 18px;
        color: #e31b23;
    }

/* =========================================
       MOBILE
    ========================================= */

@media(max-width:768px) {

    .paket-container {
        grid-template-columns: 1fr;
    }

    .paket-title {
        font-size: 20px;
    }

    .paket-price {
        font-size: 24px;
    }

    .paket-modal {
        padding: 0;
        align-items: flex-end;
    }

    .paket-modal-content {
        height: 100vh;
        border-radius: 24px 24px 0 0;
    }

    .paket-detail {
        grid-template-columns: 1fr;
    }

    .paket-detail-image {
        height: 38vh;
    }

    .paket-detail-body {
        height: 62vh;
        padding: 22px;
    }

    .detail-title {
        font-size: 26px;
    }

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

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient( rgba(255,255,255,.88), rgba(255,255,255,.92) );
}

/* IMAGE */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .22;
    z-index: 0;
}

/* CONTENT */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

/* MOBILE */
@media(max-width:992px) {

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-bg-img {
        object-position: center bottom;
        opacity: .16;
    }
}

/* LEFT */
.hero-left h1 {
    font-size: 68px;
    line-height: 1.08;
    font-weight: 800;
    color: #111;
    margin-bottom: 28px;
}

    .hero-left h1 span {
        color: #ed1c24;
    }

.hero-left p {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    max-width: 760px;
    margin-bottom: 36px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(237,28,36,.08);
    border: 1px solid rgba(237,28,36,.18);
    color: #c1121f;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-action {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: .2s;
}

.btn-primary {
    background: #ed1c24;
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-secondary {
    border: 1px solid #ddd;
    color: #222;
    background: rgba(255,255,255,.7);
}

/* RIGHT */
.hero-right {
    padding: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hero-stat-card {
    background: rgba(255,255,255,.85);
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 28px;
}

    .hero-stat-card h3 {
        font-size: 42px;
        margin-bottom: 8px;
        color: #ed1c24;
    }

    .hero-stat-card p {
        color: #555;
        margin: 0;
    }

.hero-license {
    margin-top: 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(237,28,36,.15);
}

    .hero-license small {
        display: block;
        color: #777;
        margin-bottom: 4px;
    }

    .hero-license strong {
        display: block;
        color: #111;
        line-height: 1.7;
    }

.hero-license-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(237,28,36,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* MOBILE */
@media(max-width: 992px) {

    .hero-left {
        text-align: center;
    }

        .hero-left h1 {
            font-size: 44px;
        }

        .hero-left p {
            font-size: 17px;
            line-height: 1.8;
            margin-inline: auto;
        }

    .hero-action {
        justify-content: center;
    }

    .hero-right {
        padding: 22px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

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

        .hero-stat-card h3 {
            font-size: 32px;
        }
}
/* =========================
   FAQ IMAGE SECTION
========================= */

.faq-image-section {
    padding: 80px 20px;
    background: #fff;
    position: relative;
}

.faq-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-image-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff5f5;
    border: 1px solid rgba(239,68,68,.15);
    color: #dc2626;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.faq-image-header h2 {
    font-size: clamp(2rem,4vw,3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-image-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-image-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 40px rgba(0,0,0,.04), 0 2px 10px rgba(0,0,0,.03);
}

    .faq-image-card img {
        width: 100%;
        height: auto;
        display: block;
    }

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .faq-image-section {
        padding: 60px 16px;
    }

    .faq-image-header {
        margin-bottom: 24px;
    }

        .faq-image-header h2 {
            font-size: 2rem;
            line-height: 1.2;
        }

        .faq-image-header p {
            font-size: .95rem;
            line-height: 1.7;
        }

    .faq-image-card {
        border-radius: 22px;
        overflow-x: auto;
    }

        .faq-image-card img {
            min-width: 900px;
        }
}

.faq-swipe-hint {
    display: none;
}

@media(max-width:768px) {
    .faq-swipe-hint {
        display: block;
        text-align: center;
        font-size: .85rem;
        color: #9ca3af;
        margin-bottom: 12px;
    }
}