/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --emerald-dark: #1e3a34;    /* Hijau navbar & footer */
    --emerald-mid: #3e7068;     /* Background section recommended */
    --emerald-accent: #2ca4a4;  /* Warna toska tombol & icon */
    --white: #ffffff;
    --light-bg: #f4f7f6;
    --orange-accent: #ff9800;   /* Warna badge Open Trip */
    --transition: all 0.3s ease;
    --shadow-light: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-medium: 0 10px 20px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-slider .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-slider .hero-badge {
    display: inline-block;
    background: var(--emerald-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-slider .hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-slider .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-btn:hover {
    background: var(--emerald-accent);
    border-color: var(--emerald-accent);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--emerald-accent);
    transform: scale(1.2);
}

/* =========================================
   2. NAVBAR
   ========================================= */
.navbar {
    background-color: var(--emerald-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.nav-links a:hover, 
.nav-links a.active {
    font-weight: 700;
    color: var(--emerald-accent);
}

.currency-badge {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

/* =========================================
   3. HERO SECTION (Small & Large)
   ========================================= */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    animation: heroFadeZoom 9s ease-in-out infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 3s;
}

.hero-slide:nth-child(3) {
    animation-delay: 6s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-small {
    height: 45vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1, 
.hero-small h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content p, 
.hero-small p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* =========================================
   4. TITLES & TYPOGRAPHY
   ========================================= */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.traveler-types {
    margin-top: 70px;
}

.section-title span {
    color: var(--emerald-accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--emerald-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.category-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid #eee;
    color: inherit;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--emerald-dark);
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-title-white {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

/* =========================================
   5. VIBE SECTION (Open Trip Grid)
   ========================================= */
.grid-vibe {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.card-vibe {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 1px solid #eee;
}

.card-vibe:hover {
    transform: translateY(-10px);
}

.card-vibe img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.ot-badge {
    background: #1e3a34;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.card-vibe h3 {
    font-size: 1.2rem;
    color: var(--emerald-dark);
    margin-bottom: 10px;
}

.card-vibe p {
    font-size: 0.95rem;
    color: #666;
}

.detail-container {
    padding: 80px 0;
}

.detail-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.detail-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--emerald-dark);
    margin-bottom: 16px;
}

.detail-price {
    font-size: 1.1rem;
    color: var(--emerald-dark);
    margin-bottom: 22px;
}

.detail-price span {
    color: var(--emerald-accent);
    font-weight: 700;
}

.detail-desc {
    color: #555;
    line-height: 1.8;
}

.detail-img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.info-box {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.table-container {
    overflow-x: auto;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.table-container th,
.table-container td {
    padding: 14px 16px;
    border: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
}

.table-container th {
    background: #f4f7f6;
    color: var(--emerald-dark);
    font-weight: 600;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.list-fasi {
    display: grid;
    gap: 12px;
    margin-top: 15px;
    padding-left: 0;
}

.list-fasi li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.list-fasi.muted li {
    color: #888;
}

.rundown-timeline {
    display: grid;
    gap: 20px;
}

.day-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--emerald-accent);
}

.timeline-item {
    display: grid;
    gap: 15px;
    padding: 20px;
    background: #f8faf8;
    border-radius: 20px;
    border: 1px solid #eee;
}

.time {
    color: var(--emerald-accent);
    font-weight: 700;
}

.activity h4 {
    margin-bottom: 10px;
    color: var(--emerald-dark);
}

.activity p {
    color: #555;
    line-height: 1.8;
}

.activity img {
    width: 100%;
    border-radius: 18px;
    margin-top: 18px;
}

.accordion-group {
    display: grid;
    gap: 15px;
}

.acc-item {
    background: #f9fbf9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
}

.acc-btn {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--emerald-dark);
    cursor: pointer;
}

.acc-btn i {
    transition: var(--transition);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: white;
}

.acc-item.open .acc-content {
    max-height: 500px;
    padding: 20px;
}

.acc-item.open .acc-btn i {
    transform: rotate(45deg);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.contact-box,
.rec-box {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.contact-box h3 {
    margin-bottom: 18px;
    color: var(--emerald-dark);
}

.btn-contact {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: var(--emerald-accent);
    color: white;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 700;
}

.btn-contact:hover {
    background: #248a8a;
}

.rec-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 15px;
    align-items: center;
    padding: 14px 16px;
    background: #f8faf8;
    border-radius: 18px;
    margin-bottom: 14px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.rec-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
}

.rec-item p {
    font-weight: 600;
    color: var(--emerald-dark);
    margin-bottom: 4px;
}

.rec-item small {
    color: #777;
}

.rec-item:hover {
    transform: translateX(4px);
    background: #fff;
}

.footer-area {
    background-color: var(--emerald-dark);
    color: white;
    padding: 50px 0;
}

.footer-area .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-area img {
    height: 45px;
    margin-bottom: 16px;
}

.footer-area p {
    max-width: 500px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
    .detail-top {
        grid-template-columns: 1fr;
    }

    .fasilitas-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: sticky;
        top: auto;
    }
}

@media (max-width: 640px) {
    .detail-container {
        padding: 40px 0;
    }

    .detail-top {
        gap: 20px;
    }

    .table-container table {
        min-width: 100%;
    }

    .acc-btn {
        padding: 16px 18px;
    }

    .contact-box,
    .rec-box {
        padding: 20px;
    }
}

/* =========================================
   6. RECOMMENDED SECTION (Private Trip Grid)
   ========================================= */
.recommended-section {
    background: linear-gradient(180deg, var(--emerald-mid) 0%, var(--emerald-dark) 100%);
    padding: 90px 0;
}

.grid-recommended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.card-trip {
    height: 450px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-trip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    z-index: 1;
}

.card-trip:hover {
    transform: scale(1.02);
}

.card-content {
    padding: 30px;
    width: 100%;
    z-index: 2;
    color: white;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* =========================================
   7. BUTTONS
   ========================================= */
.btn-main {
    background-color: var(--emerald-accent);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    display: inline-block;
}

.btn-main:hover {
    background-color: #248a8a;
    transform: translateY(-3px);
}

.btn-detail {
    display: inline-block;
    background: var(--emerald-accent);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.btn-detail:hover {
    background: white;
    color: var(--emerald-dark);
}

/* =========================================
   8. USP SECTION (Why Choose Us)
   ========================================= */
.usp-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--white);
}

.section-heading {
    font-size: 2.2rem;
    color: var(--emerald-dark);
    margin-bottom: 60px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.usp-item {
    padding: 20px;
    transition: var(--transition);
}

.usp-icon {
    font-size: 45px;
    color: var(--emerald-accent);
    margin-bottom: 25px;
}

.usp-item h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--emerald-dark);
}

.usp-item p {
    font-size: 0.9rem;
    color: #777;
    padding: 0 10px;
}

/* =========================================
   9. FOOTER
   ========================================= */
.main-footer {
    background-color: var(--emerald-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: white;
    font-size: 22px;
}

.socials a:hover {
    color: var(--emerald-accent);
}

.main-footer p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 20px;
}

/* =========================================
   9.5 BLOG STYLES
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 68, 57, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #e6edea;
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(17, 68, 57, 0.14);
}

.blog-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.blog-meta {
    margin-bottom: 10px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #777;
    background: #f5f7f6;
    padding: 7px 14px;
    border-radius: 999px;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: auto;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--emerald-accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.25s ease, gap 0.25s ease;
}

.btn-read-more:hover {
    color: #248a8a;
    gap: 14px;
}

.btn-read-more i {
    transition: transform 0.25s ease;
}

/* =========================================
   9.6 ARTICLE DETAIL STYLES
   ========================================= */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.article-main {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 68, 57, 0.08);
    border: 1px solid #e6edea;
}

.article-detail {
    padding: 0;
}

.article-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-date, .article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #888;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
}

.article-category {
    background: var(--emerald-accent);
    color: white;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-dark);
    line-height: 1.3;
    margin: 0;
}

.article-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.article-content {
    padding: 40px;
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2, .article-content h3, .article-content h4 {
    color: var(--emerald-dark);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-footer {
    padding: 30px 40px;
    border-top: 1px solid #f0f0f0;
    background: #f9f9fa;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-back:hover {
    color: #248a8a;
    gap: 12px;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--emerald-accent);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9fa;
    transition: var(--transition);
}

.related-article:hover {
    background: #f0f4f3;
    transform: translateX(5px);
}

.related-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-content h4 a {
    color: inherit;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: var(--emerald-accent);
}

.related-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #888;
}

/* =========================================
   10. RESPONSIVE DESIGN (Media Queries)
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu can be added later */
    }

    .hero-small {
        height: 35vh;
    }

    .hero-small h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .grid-vibe, 
    .grid-recommended, 
    .usp-grid {
        grid-template-columns: 1fr;
    }

    .card-trip {
        height: 350px;
    }

    .card-vibe img {
        height: 200px;
    }

    /* Blog responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-sidebar {
        position: sticky;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .btn-main {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Blog responsive */
    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        padding: 20px;
    }

    .article-header {
        padding: 20px;
    }

    .article-footer {
        padding: 20px;
    }

    .sidebar-section {
        padding: 20px;
    }
}

/* =========================================
   11. ADDITIONAL UTILITIES (Animation & Misc)
   ========================================= */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeZoom {
    0%, 8% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    33% {
        opacity: 1;
        transform: scale(1.08);
    }
    40% {
        opacity: 1;
        transform: scale(1.08);
    }
    45%, 55% {
        opacity: 0;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

::selection {
    background-color: var(--emerald-accent);
    color: white;
}
.main-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

main {
    width: 100%;
}
aside {
    width: 100%;
    position: sticky;
    top: 100px; /* jarak dari navbar */
    height: fit-content;
}

/* =========================================
   ACCORDION FAQ STYLES
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    background: #fff;
    border-left: 4px solid var(--emerald-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--emerald-dark);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: rgba(30, 58, 52, 0.05);
}

.accordion-header::after {
    content: '+';
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-content p {
    padding: 15px 0;
    color: #555;
    line-height: 1.6;
}
.blog-image {
    width: 100%;
    height: 200px; /* Atur tinggi sesuai selera */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Biar gambar tidak gepeng */
    display: block;
}


.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    max-width: 500px;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-explore {
    background: var(--emerald-accent);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-explore:hover {
    background: var(--emerald-dark);
    transform: translateY(-3px);
}

/* Floating Destination Cards */
.hero-cards-container {
    display: flex;
    gap: 20px;
}

.destination-card {
    position: relative;
    width: 200px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.destination-card.active {
    width: 240px;
    height: 340px;
    margin-top: -20px; /* Membuat efek melayang lebih tinggi */
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-tag {
    font-size: 0.7rem;
    background: #10b981;
    padding: 3px 8px;
    border-radius: 5px;
}

.card-overlay h4 {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Footer & Nav */
.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-indicator .line {
    width: 100px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.nav-arrow {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    backdrop-filter: blur(5px);
}
/* --- MODERN HERO SLIDER STYLE --- */
.modern-hero {
    position: relative;
    height: 90vh; /* Memenuhi layar */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image Dinamis */
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: -2;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    z-index: -1;
}

/* Konten Teks */
.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.hero-text-item {
    display: none;
    color: white;
    max-width: 600px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-text-item.active {
    display: block;
}

.hero-badge {
    background: #ffc107;
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Card Slider di Kanan */
.hero-cards-container {
    display: flex;
    gap: 15px;
}

.destination-card {
    width: 120px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-card.active {
    transform: scale(1.1);
    border-color: #ffc107;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
    color: white;
}

.card-overlay h4 { font-size: 0.8rem; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   HERO GACOR STYLES (Paket Page)
   ========================================= */
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Header Gacor Styles */
        .hero-gacor {
            position: relative;
            height: 80vh;
            min-height: 600px;
            background: linear-gradient(135deg, rgba(30, 58, 52, 0.8), rgba(42, 82, 73, 0.6)), 
            url('https://images.unsplash.com/photo-1577717903315-1691ae25ab3f?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-gacor::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        .hero-gacor::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .hero-content-gacor {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            animation: slideUp 1.2s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge-gacor {
            display: inline-block;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #1e3a34;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
            animation: bounceIn 1.5s ease-out;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero-title-gacor {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #FFD700, #ffffff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle-gacor {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
            animation: fadeInUp 1.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta-gacor {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(45deg, #1e3a34, #2a5249);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(30, 58, 52, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
            animation: slideInBottom 2s ease-out;
        }

        @keyframes slideInBottom {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta-gacor:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 58, 52, 0.4);
            background: linear-gradient(45deg, #2a5249, #1e3a34);
        }

        .hero-cta-gacor i {
            font-size: 1.2rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-3px); }
        }

        .hero-stats-gacor {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInScale 2.5s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-item-gacor {
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
        }

        .stat-number-gacor {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 5px;
        }

        .stat-label-gacor {
            font-size: 0.9rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-gacor {
                height: 70vh;
                min-height: 500px;
            }

            .hero-stats-gacor {
                flex-direction: column;
                gap: 20px;
                margin-top: 30px;
            }

            .hero-title-gacor {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            .hero-subtitle-gacor {
                font-size: 1.1rem;
            }
            .hero-banner { 
                height: 60vh; 
                /* Ambil dari variabel --bg-hero yang dikirim dari PHP tadi */
                background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), var(--bg-hero); 
                background-size: cover; 
                background-position: center; 
                display: flex; 
                align-items: center; 
                color: #fff; 
                border-radius: 0 0 30px 30px;
            }
        }
        
        
/* End of Style.css */