/* ============================================================
   PAGES.CSS
   Stylesheet untuk halaman detail dalam (packages, panorama, dll)
   yang memakai nama class custom, bukan class Tailwind.
   ============================================================ */

* { box-sizing: border-box; }

.site-footer {
    background: #052e16;
    color: #ffffff;
    text-align: center;
    padding: 24px 16px;
    font-size: 12px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 50;
    transition: transform 0.2s;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebe5b;
}

/* ===================== HERO DETAIL PAKET ===================== */
.package-hero {
    position: relative;
    background: #052e16 url('../images/package-summit.webp') center/cover no-repeat;
    padding: 90px 20px 70px 20px;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,46,22,0.55) 0%, rgba(2,6,23,0.8) 100%);
}
.package-hero-container {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}
.badge-hero {
    display: inline-block;
    background: #22c55e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(34,197,94,0.35);
}
.hero-title-detail {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 14px 0;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}
.hero-subtitle-detail {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ===================== MAIN CONTAINER ===================== */
.main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 16px;
}

/* ===================== RINGKASAN (DETAIL CARD) ===================== */
.detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px 26px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}
.card-header-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.icon-box-green {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #16a34a;
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.card-header-icon h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 2px 0;
}
.sub-info {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}
.desc-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}
.grid-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    font-size: 13px;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 18px;
}
.grid-summary strong {
    color: #0f172a;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.text-green { color: #16a34a; }
.text-red { color: #dc2626; }
.text-gold { color: #d97706; }

/* ===================== ITINERARY ===================== */
.itinerary-section {
    margin-bottom: 50px;
}
.badge-sub {
    display: inline-block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.title-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    margin: 12px 0 0 0;
}
.day-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
}
.day-header.bg-dark-green { background: #052e16; }
.day-header.bg-green { background: #16a34a; }
.day-header.bg-slate { background: #334155; }
.icon-lime { color: #86efac; }
.badge-mdpl {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.day-body {
    padding: 20px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.8;
}
.day-body p { margin: 0 0 10px 0; }
.day-body p:last-child { margin-bottom: 0; }
.day-body strong { color: #0f172a; }

/* ===================== INCLUSION / EXCLUSION ===================== */
.grid-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.card-inclusion, .card-exclusion {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px;
}
.card-title-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.card-title-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.icon-circle {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.bg-green-icon { background: #dcfce7; color: #16a34a; }
.bg-red-icon { background: #fee2e2; color: #dc2626; }
.list-check, .list-star {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #334155;
    line-height: 1.7;
}
.list-check li, .list-star li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.list-check li:last-child, .list-star li:last-child { margin-bottom: 0; }
.bonus-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    padding: 16px;
}
.bonus-title {
    font-weight: 800;
    color: #92400e;
    font-size: 13px;
    margin-bottom: 10px;
}
.note-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 14px;
    padding: 16px;
    font-size: 12.5px;
    color: #7f1d1d;
    line-height: 1.6;
}
.note-box strong { display: block; margin-bottom: 4px; }

/* ===================== PRICING CARD ===================== */
.pricing-card-dark {
    background: #052e16;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}
.badge-sub-light {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #86efac;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin: 14px 0 6px 0;
}
.pricing-sub {
    font-size: 13px;
    color: #d1fae5;
    margin: 0 0 24px 0;
}
.pricing-inner-white {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    color: #0f172a;
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}
.badge-vip {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d97706;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}
.inner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    margin: 6px 0 16px 0;
}
.price-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}
.price-row:last-child { border-bottom: none; padding-bottom: 0; }
.amount-green {
    color: #16a34a;
    font-weight: 900;
    font-size: 16px;
}
.amount-green small {
    color: #64748b;
    font-weight: 500;
    font-size: 11px;
}

/* ===================== ARTIKEL SEO (PENGGANTI SOFT TREKKING DUP) ===================== */
.seo-article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 28px;
    margin-bottom: 50px;
}
.seo-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 900;
    color: #0f172a;
    margin: 32px 0 14px 0;
}
.seo-article h2:first-child { margin-top: 0; }
.seo-article h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 20px 0 10px 0;
}
.seo-article p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 14px 0;
}
.seo-article ul, .seo-article ol {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.8;
    margin: 0 0 16px 0;
    padding-left: 20px;
}
.seo-article li { margin-bottom: 6px; }
.seo-article table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 16px 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.seo-article thead { background: #052e16; color: #ffffff; }
.seo-article th, .seo-article td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}
.seo-article .practitioner-note {
    background: #f8fafc;
    border-left: 3px solid #16a34a;
    padding: 12px 16px;
    font-size: 13px;
    color: #475569;
    border-radius: 0 10px 10px 0;
    margin: 0 0 16px 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
    .hero-title-detail { font-size: 22px; }
    .hero-subtitle-detail { font-size: 13px; }
    .day-header { font-size: 13px; }
    .pricing-title { font-size: 18px; }
}
