/* ============================================================
   Jelajah Jeep Kemuning - Main Stylesheet v4
   Premium Adventure Tourism Design
   ============================================================ */

/* ---- Variables ---- */
:root {
    --green-dark:   #0e2310;
    --green-forest: #1a3a1a;
    --green-mid:    #2d5a27;
    --green-light:  #3d7a35;
    --gold:         #f5c842;
    --gold-dark:    #d4a520;
    --gold-light:   #fce07a;
    --cream:        #f8f5ec;
    --white:        #ffffff;
    --text-dark:    #1a1a1a;
    --text-muted:   #6b7280;
    --wa-green:     #25d366;
    --shadow-sm:    0 2px 12px rgba(0,0,0,.12);
    --shadow-md:    0 8px 32px rgba(0,0,0,.18);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.22);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Preloader ---- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; color: var(--white); }
.preloader-inner .jeep-icon { font-size: 3rem; color: var(--gold); margin-bottom: .5rem; animation: jeepBounce .8s ease-in-out infinite alternate; }
.preloader-text { font-family: 'Oswald', sans-serif; font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; color: var(--gold-light); }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.2); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.preloader-progress { height: 100%; background: var(--gold); border-radius: 3px; animation: preloaderProgress 1.5s ease forwards; }
@keyframes jeepBounce { from { transform: translateY(0) rotate(-5deg); } to { transform: translateY(-10px) rotate(5deg); } }
@keyframes preloaderProgress { from { width: 0; } to { width: 100%; } }

/* ---- Navbar ---- */
#mainNav {
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}
#mainNav.scrolled {
    background: rgba(14, 35, 16, .97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: .5rem 0;
}
.navbar-brand .brand-text {
    display: flex; align-items: center; gap: .6rem;
}
.brand-icon {
    font-size: 1.8rem; color: var(--gold);
    display: flex; align-items: center;
    filter: drop-shadow(0 2px 4px rgba(245,200,66,.4));
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--white); letter-spacing: .5px;
}
.brand-sub {
    font-family: 'Oswald', sans-serif;
    font-size: .75rem; font-weight: 700;
    color: var(--gold); letter-spacing: 3px;
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 600; font-size: .95rem;
    padding: .5rem 1rem !important;
    position: relative; transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 2px; background: var(--gold);
    transition: var(--transition); border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 1rem; right: 1rem; }

.btn-wa {
    background: var(--gold);
    color: var(--green-dark) !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 700; font-size: .9rem;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    border: none; transition: var(--transition);
    white-space: nowrap;
}
.btn-wa:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,66,.35); }

/* Toggler */
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 2px; }
.toggler-icon span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar-toggler { border: none; background: none; padding: .4rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(10,22,10,.78) 0%, rgba(14,35,16,.50) 45%, rgba(0,0,0,.25) 100%),
        url('https://images.unsplash.com/photo-1586348943529-beaae6c28db9?w=1920&q=85') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroPan 22s ease-in-out infinite alternate;
}
@keyframes heroPan {
    from { transform: scale(1.05) translateX(0); }
    to   { transform: scale(1.05) translateX(-2.5%); }
}
/* Admin-uploaded hero overrides JS class */
.hero-bg.has-custom { background-image: none !important; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(14,35,16,.82) 0%, rgba(14,35,16,.18) 55%, transparent 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: 6rem; }

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(245,200,66,.15); border: 1px solid rgba(245,200,66,.4);
    color: var(--gold); font-size: .8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1.2rem;
    backdrop-filter: blur(4px);
    animation: fadeInDown .8s ease both;
}
.hero-badge i { font-size: .75rem; }

.hero-title {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    color: var(--white);
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeInUp .8s .2s ease both;
    text-shadow: 2px 4px 16px rgba(0,0,0,.4);
    letter-spacing: .5px;
}
.hero-title .highlight {
    color: var(--gold);
    display: block;
    text-shadow: 2px 4px 24px rgba(245,200,66,.3);
}

.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,.82);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2rem;
    animation: fadeInUp .8s .4s ease both;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeInUp .8s .6s ease both;
}

.btn-hero-primary {
    background: var(--gold); color: var(--green-dark);
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 1rem; letter-spacing: .5px;
    padding: .85rem 2.2rem; border-radius: 50px;
    border: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: .6rem;
    box-shadow: 0 4px 20px rgba(245,200,66,.3);
}
.btn-hero-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(245,200,66,.45); }

.btn-hero-outline {
    background: rgba(255,255,255,.08); color: var(--white);
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 1rem; letter-spacing: .5px;
    padding: .85rem 2.2rem; border-radius: 50px;
    border: 2px solid rgba(255,255,255,.55); transition: var(--transition);
    display: inline-flex; align-items: center; gap: .6rem;
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.18); transform: translateY(-3px); color: var(--white); }

/* Hero Info Cards - Right side */
.hero-info-cards {
    display: flex; flex-direction: column; gap: .8rem;
    animation: fadeInRight .8s .4s ease both;
}
.hero-info-card {
    background: rgba(10,25,12,.78);
    border: 1px solid rgba(245,200,66,.22);
    border-left: 3px solid var(--gold);
    backdrop-filter: blur(14px);
    padding: 1rem 1.4rem;
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 1rem;
    min-width: 230px;
    transition: var(--transition);
}
.hero-info-card:hover { background: rgba(10,25,12,.9); border-left-color: var(--gold-dark); }
.hero-info-card i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.hero-info-card .label { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.hero-info-card .value { font-family: 'Oswald', sans-serif; font-size: 1.05rem; color: var(--white); font-weight: 500; line-height: 1.3; }

/* Hero brush-style wave bottom */
.hero-wave {
    position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--green-forest);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.1rem; font-weight: 700; color: var(--gold);
    line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; margin-top: .25rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.18); height: 44px; }

/* ---- Section Commons ---- */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.section-badge {
    display: inline-flex; align-items: center; gap: .6rem;
    color: var(--gold-dark); font-weight: 700; font-size: .78rem;
    letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: .75rem;
}
.section-badge::before {
    content: ''; display: block;
    width: 28px; height: 2px; background: var(--gold);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--green-forest); margin-bottom: .75rem;
}
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ---- Package Cards ---- */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,.06);
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.package-card .card-img-wrap {
    position: relative; overflow: hidden;
    height: 220px;
}
.package-card .card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.package-card:hover .card-img-wrap img { transform: scale(1.08); }

/* Badge (top-left) */
.pkg-badge {
    position: absolute; top: .75rem; left: .75rem;
    font-family: 'Oswald', sans-serif; font-size: .7rem;
    font-weight: 700; letter-spacing: 1.5px;
    padding: .3rem .75rem; border-radius: 50px;
    display: flex; align-items: center; gap: .3rem;
    z-index: 2;
}
.pkg-badge.favorit   { background: var(--gold); color: var(--green-dark); }
.pkg-badge.terpopuler{ background: #dc3545; color: var(--white); }
.pkg-badge.adventure { background: var(--green-mid); color: var(--white); }
.pkg-badge.eksklusif { background: #0d6efd; color: var(--white); }

/* Duration badge (top-right inside image) — matches reference */
.pkg-duration-badge {
    position: absolute; top: .75rem; right: .75rem;
    background: rgba(10,22,10,.78);
    color: var(--white);
    font-family: 'Nunito', sans-serif; font-size: .78rem; font-weight: 700;
    padding: .28rem .7rem; border-radius: 50px;
    display: flex; align-items: center; gap: .3rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.18);
    z-index: 2;
}
.pkg-duration-badge i { font-size: .72rem; color: var(--gold-light); }

.card-body-pkg { padding: 1.5rem; }
.pkg-title { font-size: 1.3rem; color: var(--green-forest); margin-bottom: .5rem; }
.pkg-meta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    font-size: .8rem; color: var(--text-muted);
    margin-bottom: .75rem;
}
.pkg-meta span { display: flex; align-items: center; gap: .3rem; }
.pkg-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.pkg-price { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--green-forest); font-weight: 700; }
.pkg-unit  { font-size: .8rem; color: var(--text-muted); font-family: 'Nunito', sans-serif; font-weight: 400; }

.btn-pkg {
    background: var(--green-forest); color: var(--white);
    font-weight: 700; font-size: .9rem;
    padding: .65rem 1.5rem; border-radius: 50px;
    border: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: .5rem;
    width: 100%; justify-content: center;
    letter-spacing: .3px;
}
.btn-pkg:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,90,39,.3); color: var(--white); }

/* Package fallback images by type */
.pkg-img-sunrise  { background: linear-gradient(135deg,#1a3a1a,#2d5a27); }
.pkg-img-explore  { background: linear-gradient(135deg,#0e2310,#3d7a35); }
.pkg-img-extreme  { background: linear-gradient(135deg,#0a1a08,#1a3a1a); }

/* ---- Why Us Features ---- */
.feature-item {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.2rem; border-radius: var(--radius);
    transition: var(--transition); margin-bottom: .5rem;
}
.feature-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.feature-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    background: var(--green-forest); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.feature-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--green-forest); margin-bottom: .3rem; }
.feature-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Testimonials ---- */
.testimonials { background: var(--green-dark); }
.testi-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.testi-card:hover { background: rgba(255,255,255,.1); border-color: rgba(245,200,66,.3); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; }
.testi-quote { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green-mid); display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--gold); font-weight: 700;
    border: 2px solid var(--gold); flex-shrink: 0; overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name   { font-family: 'Oswald', sans-serif; color: var(--white); font-size: 1rem; margin-bottom: .1rem; }
.testi-origin { font-size: .8rem; color: rgba(255,255,255,.5); }
.testi-pkg    { font-size: .75rem; background: rgba(245,200,66,.15); color: var(--gold); padding: .2rem .6rem; border-radius: 50px; }

/* ---- Gallery ---- */
.gallery-section { background: var(--white); }
.gallery-filters {
    display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
    margin-bottom: 2rem;
}
.filter-btn {
    background: var(--cream); color: var(--text-dark);
    border: 1px solid rgba(0,0,0,.1); border-radius: 50px;
    padding: .4rem 1.2rem; font-size: .85rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover { background: var(--green-forest); color: var(--white); border-color: var(--green-forest); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative; border-radius: var(--radius);
    overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,35,16,.85) 0%, transparent 60%);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-family: 'Oswald', sans-serif; font-size: 1rem; }
.gallery-zoom {
    position: absolute; top: .75rem; right: .75rem;
    width: 36px; height: 36px; background: rgba(245,200,66,.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--green-dark); font-size: 1rem;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ---- Lightbox ---- */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9990;
    background: rgba(0,0,0,.95);
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 44px; height: 44px; background: rgba(255,255,255,.1);
    border: none; color: var(--white); font-size: 1.4rem;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--white); font-family: 'Oswald', sans-serif; font-size: 1.1rem; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; background: rgba(255,255,255,.1);
    border: none; color: var(--white); font-size: 1.5rem;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ---- FAQ ---- */
.faq-section { background: var(--cream); }
.accordion-item {
    border: none; border-bottom: 1px solid rgba(0,0,0,.08);
    background: transparent; border-radius: 0 !important;
}
.accordion-item:last-child { border-bottom: none; }
.accordion-button {
    font-family: 'Oswald', sans-serif; font-size: 1.05rem;
    color: var(--green-forest); background: transparent;
    padding: 1.2rem 0; font-weight: 600;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold-dark); background: transparent; }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d5a27'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { padding: 0 0 1.2rem; color: var(--text-muted); line-height: 1.7; font-size: .95rem; }

/* ---- Booking Form ---- */
.booking-section { background: var(--green-forest); }
.booking-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.form-label { font-weight: 600; color: var(--green-forest); font-size: .9rem; margin-bottom: .35rem; }
.form-control, .form-select {
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: var(--radius);
    padding: .7rem 1rem;
    font-size: .95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,90,39,.1);
}
.btn-submit {
    background: var(--gold); color: var(--green-dark);
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 1rem; letter-spacing: .5px;
    padding: .85rem 2rem; border-radius: 50px;
    border: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: .5rem;
    width: 100%; justify-content: center;
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,66,.35); }

/* ---- About Section ---- */
.about-section { background: var(--white); }
.about-img-wrap {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-stat-pill {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: var(--green-forest); color: var(--white);
    padding: .75rem 1.5rem; border-radius: 50px;
    display: flex; align-items: center; gap: .75rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(245,200,66,.3);
}
.about-stat-pill .num { font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.about-stat-pill .lbl { font-size: .78rem; color: rgba(255,255,255,.75); line-height: 1.3; }
.about-gold-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: var(--gold); color: var(--green-dark);
    padding: .5rem 1rem; border-radius: 50px;
    font-family: 'Oswald', sans-serif; font-size: .85rem; font-weight: 700;
    letter-spacing: 1px;
}

/* ---- Contact Info Card ---- */
.contact-info-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.06); margin-bottom: 1rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    background: var(--green-forest); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.contact-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-value { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--green-forest); margin-top: .2rem; }

/* ---- Page Hero ---- */
.page-hero {
    min-height: 320px;
    background: linear-gradient(135deg, rgba(10,22,10,.85) 0%, rgba(14,35,16,.7) 100%),
                url('https://images.unsplash.com/photo-1586348943529-beaae6c28db9?w=1920&q=80') center/cover;
    display: flex; align-items: center;
    padding-top: 5rem; text-align: center;
}
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); text-transform: uppercase; }
.page-hero-breadcrumb { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: .5rem; }
.page-hero-breadcrumb a { color: var(--gold); }

/* ---- Footer ---- */
.footer { background: var(--green-dark); }
.footer-top { padding: 4rem 0 2rem; }
.footer-brand .brand-text { display: flex; align-items: center; gap: .6rem; }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 320px; }

/* Footer info boxes row (matches reference bottom bar) */
.footer-info-row {
    display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin: 1.5rem 0;
}
.footer-info-col {
    flex: 1; padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; gap: 1rem;
}
.footer-info-col:last-child { border-right: none; }
.fi-icon {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
}
.fi-label { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: .2rem; }
.fi-value { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600; line-height: 1.4; }
.fi-value a { color: rgba(255,255,255,.85); }
.fi-value a:hover { color: var(--gold); }

.footer-title {
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    color: var(--gold); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.2rem; padding-bottom: .5rem;
    border-bottom: 1px solid rgba(245,200,66,.25);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: .3rem; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: .75rem; margin-bottom: .75rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.5; }
.footer-contact a:hover { color: var(--gold); }

.social-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.social-link {
    width: 40px; height: 40px; background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: var(--transition);
    border: 1px solid rgba(255,255,255,.12);
}
.social-link:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-2px); border-color: var(--gold); }

.footer-bottom {
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.45);
    font-size: .85rem;
}

/* ---- WhatsApp Float ---- */
.wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 58px; height: 58px;
    background: var(--wa-green); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: var(--transition); text-decoration: none;
    animation: waPulse 2s ease-in-out infinite;
}
.wa-float:hover { background: #1da851; transform: scale(1.1); color: var(--white); }
@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
    50%      { box-shadow: 0 6px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}
.wa-tooltip {
    position: absolute; right: 70px; background: var(--green-dark);
    color: var(--white); font-size: .8rem; white-space: nowrap;
    padding: .35rem .75rem; border-radius: 50px; font-weight: 600;
    opacity: 0; transform: translateX(8px);
    transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ---- Scroll Top ---- */
.scroll-top {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
    width: 44px; height: 44px;
    background: var(--green-forest); color: var(--white);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; cursor: pointer;
    opacity: 0; transform: translateY(16px);
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- Utility ---- */
.bg-green-forest { background: var(--green-forest); }
.bg-green-dark   { background: var(--green-dark); }
.bg-cream        { background: var(--cream); }
.text-gold       { color: var(--gold) !important; }
.text-green      { color: var(--green-forest) !important; }
.border-gold     { border-color: var(--gold) !important; }
.alert-success   { background: rgba(45,90,39,.1); border-color: var(--green-mid); color: var(--green-forest); }
.map-wrap        { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-info-cards { flex-direction: row; flex-wrap: wrap; margin-top: 2rem; }
    .hero-info-card  { min-width: 0; flex: 1; }
    .stat-divider    { display: none; }
    .stats-bar .row  { gap: 1rem; }
    .footer-info-row { flex-direction: column; }
    .footer-info-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-info-col:last-child { border-bottom: none; }
}
@media (max-width: 767.98px) {
    .hero-title         { font-size: 2.3rem; }
    .section-pad        { padding: 3.5rem 0; }
    .booking-form-wrap  { padding: 1.5rem; }
    .hero-info-cards    { display: none; }
    .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
    .about-img-wrap img { height: 300px; }
}
@media (max-width: 575.98px) {
    .gallery-grid   { grid-template-columns: 1fr; }
    .hero-actions   { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .footer-info-col { padding: 1.2rem 1rem; }
}

/* ============================================================
   PACKAGE DETAIL & RELATED — v4 additions
   ============================================================ */
.package-img-wrap { position: relative; overflow: hidden; height: 200px; }
.package-img      { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.package-card:hover .package-img { transform: scale(1.07); }
.package-badge {
    position: absolute; top: .75rem; left: .75rem;
    font-family: 'Oswald', sans-serif; font-size: .7rem;
    font-weight: 700; letter-spacing: 1.5px;
    padding: .3rem .75rem; border-radius: 50px;
    display: flex; align-items: center; gap: .3rem;
    z-index: 1;
}
.package-body       { padding: 1.25rem; }
.package-meta-row   { display: flex; gap: .75rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }
.package-meta-row i { color: var(--green-mid); }
.package-name       { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--green-forest); margin-bottom: .4rem; }
.package-desc       { font-size: .85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: .75rem; }
.package-price-row  { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.package-price      { font-family: 'Oswald', sans-serif; font-size: 1.35rem; color: var(--green-forest); font-weight: 700; }
.package-unit       { font-size: .78rem; color: var(--text-muted); }
.btn-pkg-detail {
    display: block; text-align: center;
    background: var(--green-forest); color: var(--white);
    font-weight: 700; font-size: .9rem;
    padding: .65rem 1.5rem; border-radius: 50px;
    transition: var(--transition);
}
.btn-pkg-detail:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,90,39,.3); }
.pkg-detail-hero::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
    background: #f8faf8; clip-path: ellipse(55% 100% at 50% 100%); z-index: 1;
}
.contact-unread         { background: #fffbeb !important; }
.hero-slide-preview {
    width: 100%; height: 160px; border-radius: 12px; object-fit: cover;
    border: 2px solid #e8edea; background: linear-gradient(135deg, #1a3a1a, #2d5a27);
}
