
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0e7c5b;
    --green-dark: #085c42;
    --green-light: #e6f5ef;
    --gold: #f0a800;
    --gold-light: #fff8e1;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
    --bg: #f7f9f8;
    --radius: 14px;
    --radius-sm: 8px;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ── TOP BAR ── */
  .top-bar {
    background: var(--green-dark);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .top-bar a { color: var(--gold); text-decoration: none; font-weight: 700; }

  /* ── HEADER ── */
  /* =========================
   HEADER
========================= */
 /* =====================================
   PREMIUM HEADER
===================================== */

/* ====================================


HEADER
==================================== */



header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
}

.header-inner{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:1.4rem;
    font-weight:800;
    text-decoration:none;
    color:#0e7c5b;
}

.logo span{
    color:#111;
}

.desktop-menu{
    display:flex;
    gap:30px;
}

.desktop-menu a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    position:relative;
}

.desktop-menu a:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#0e7c5b;
    transition:.3s;
}

.desktop-menu a:hover:after{
    width:100%;
}

.header-actions{
    display:flex;
    gap:10px;
}

.nav-phone,
.nav-wa{
    text-decoration:none;
    padding:10px 18px;
    border-radius:40px;
    font-weight:700;
}

.nav-phone{
    background:#eaf8f2;
    color:#0e7c5b;
}

.nav-wa{
    background:#25D366;
    color:#fff;
}

.hamburger{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

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

.mobile-menu{

    position:fixed;
    top:0;
    right:-100%;

    width:320px;
    max-width:90%;

    height:100vh;

    background:#fff;

    z-index:99999;

    transition:.4s ease;

    display:flex;
    flex-direction:column;
}

.mobile-menu.active{
    right:0;
}

.menu-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-header{

    padding:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-bottom:1px solid #eee;
}

.mobile-logo{
    font-size:1.25rem;
    font-weight:800;
    color:#0e7c5b;
}

.mobile-logo span{
    color:#111;
}

.close-btn{

    width:40px;
    height:40px;

    border:none;
    border-radius:10px;

    background:#f4f4f4;

    cursor:pointer;
}

.traveller-box{

    padding:20px 25px;

    display:flex;
    align-items:center;
    gap:12px;

    border-bottom:1px solid #eee;
}

.traveller-images{
    display:flex;
}

.traveller-images img{

    width:40px;
    height:40px;

    border-radius:50%;

    margin-left:-10px;

    border:2px solid #fff;

    object-fit:cover;
}

.traveller-images img:first-child{
    margin-left:0;
}

.traveller-text strong{
    display:block;
    font-size:14px;
}

.traveller-text span{
    font-size:12px;
    color:#666;
}

.mobile-nav{
    padding:15px;
}

.mobile-nav a{

    display:block;

    text-decoration:none;

    color:#222;

    font-size:16px;

    font-weight:600;

    padding:15px;

    border-radius:12px;

    transition:.3s;
}

.mobile-nav a:hover{
    background:#f5faf8;
    color:#0e7c5b;
}

.mobile-buttons{
    margin-top:auto;
    padding:20px;
}

.mobile-call,
.mobile-wa{

    display:block;

    text-align:center;

    text-decoration:none;

    padding:14px;

    border-radius:12px;

    font-weight:700;

    margin-bottom:10px;
}

.mobile-call{
    background:#0e7c5b;
    color:#fff;
}

.mobile-wa{
    background:#25D366;
    color:#fff;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:768px){

    .desktop-menu,
    .header-actions{
        display:none;
    }

    .hamburger{
        display:block;
    }
}

@media(min-width:769px){

    .mobile-menu,
    .menu-overlay{
        display:none;
    }
}
  /* ── SLIDER ── */
  .slider-section {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    background: #000;
    height: 420px;
  }
  @media(max-width:768px) { .slider-section { height: 240px; } }
  .slides-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  }
  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 6s ease;
  }
  .slide.active .slide-bg { transform: scale(1); }
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
  }
  .slide-content {
    position: absolute;
    bottom: 40px;
    left: 6%;
    color: #fff;
    max-width: 520px;
  }
  .slide-tag {
    display: inline-block;
    background: var(--gold);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .slide-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
  .slide-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .slide-cta {
    background: var(--gold);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  /* slider controls */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: background 0.2s;
  }
  .slider-btn:hover { background: rgba(255,255,255,0.35); }
  .slider-btn.prev { left: 16px; }
  .slider-btn.next { right: 16px; }
  .slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
  }
  .dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
  }

  /* ── CONTAINER ── */
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5%;
  }

  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 2rem 5%;
    max-width: 1140px;
    margin: 0 auto;
  }
  @media(max-width:600px) { .stats-row { grid-template-columns: repeat(2,1fr); } }
  .stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem;
    text-align: center;
  }
  .stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
  }
  .stat-lbl {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
  }

  /* ── SECTION HEADINGS ── */
  .sec-head { margin-bottom: 1.5rem; }
  .sec-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 4px;
  }
  .sec-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
  }
  .sec-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* ── PLACES SECTION ── */
  .places-section { padding: 2.5rem 5%; }
  .filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .filter-btn {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
  }
  .filter-btn:hover { border-color: var(--green); color: var(--green); }
  .filter-btn.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }
  .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
  }
  @media(max-width:480px) { .places-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } }
  .place-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
  }
  .place-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14,124,91,0.12);
    border-color: var(--green);
  }
  .place-img-wrap {
    height: 115px;
    position: relative;
    overflow: hidden;
  }
  .place-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .place-emoji { font-size: 34px; }
  .place-img-name {
    font-size: 9.5px;
    font-weight: 700;
    text-align: center;
    padding: 0 6px;
    line-height: 1.3;
  }
  .place-badge {
    position: absolute;
    top: 7px; left: 7px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }
  .place-body { padding: 9px 11px 12px; }
  .place-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .place-stars { color: #f0a800; font-size: 11px; }
  .place-dist { font-size: 10.5px; color: var(--text-muted); margin-top: 2px; }

  /* ── PACKAGES ── */
  .packages-section { padding: 2.5rem 5%; background: var(--green-light); }
  .pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  @media(max-width:480px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
  .pkg-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .pkg-card:hover { box-shadow: 0 6px 20px rgba(14,124,91,0.1); }
  .pkg-card.popular { border-color: var(--green); border-width: 2px; }
  .pkg-popular-tag {
    position: absolute; top: 12px; right: 12px;
    background: var(--green);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .pkg-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .pkg-name { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
  .pkg-stops { font-size: 11.5px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
  .pkg-price { font-size: 1.3rem; font-weight: 800; color: var(--green); }
  .pkg-price span { font-size: 11px; color: var(--text-muted); font-weight: 400; }
  .pkg-btn {
    display: block;
    margin-top: 12px;
    background: var(--green);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 0;
    border-radius: var(--radius-sm);
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
  }
  .pkg-btn:hover { background: var(--green-dark); }

  /* ── WHY US ── */
  .why-section { padding: 2.5rem 5%; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }
  @media(max-width:480px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
  .why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem;
    text-align: center;
  }
  .why-emoji { font-size: 28px; margin-bottom: 8px; }
  .why-title { font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
  .why-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

  /* ── TESTIMONIALS ── */
  .reviews-section { padding: 2.5rem 5%; background: var(--gold-light); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
  }
  .review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
  }
  .review-stars { color: #f0a800; font-size: 14px; margin-bottom: 6px; }
  .review-text { font-size: 12.5px; color: var(--text); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
  .review-author { font-size: 12px; font-weight: 700; color: var(--green); }
  .review-loc { font-size: 10.5px; color: var(--text-muted); }

  /* ── CONTACT / CTA ── */
  .cta-section {
    padding: 3rem 5%;
    background: linear-gradient(135deg, #0a2e22 0%, #0e7c5b 100%);
    text-align: center;
    color: #fff;
  }
  .cta-section h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .cta-section p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
  .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .cta-phone {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
  }
  .cta-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
  }

  /* ── FOOTER ── */
  footer {
    background: #0a2e22;
    color: rgba(255,255,255,0.65);
    text-align: center;
    padding: 1.5rem 5%;
    font-size: 12px;
    line-height: 1.8;
  }
  footer strong { color: var(--gold); }
  footer a { color: rgba(255,255,255,0.65); text-decoration: none; }

  /* ── FLOATING WA BUTTON ── */
  .float-wa {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    background: #25D366;
    color: #fff;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    text-decoration: none;
    font-size: 28px;
  }

  /* ── SCROLL ANIMATION ── */
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
  .fade-in.visible { opacity: 1; transform: none; }
