    :root {
      --emerald:    #0d6f4f;
      --emerald-lt: #16a371;
      --gold:       #c89b3c;
      --gold-lt:    #e8ba58;
      --cream:      #faf6ef;
      --ink:        #1a1a1a;
      --muted:      #6b7280;
      --card-bg:    #ffffff;
      --border:     #e5e0d8;
      --radius:     16px;
    }

    /* ────────── BASE ────────── */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--emerald);
    }
    .section-sub {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 560px;
      margin: 0 auto;
    }
    .gold-accent { color: var(--gold); }
    .btn-emerald {
      background: var(--emerald);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.7rem 2rem;
      font-weight: 600;
      letter-spacing: .3px;
      transition: background .25s, transform .2s;
    }
    .btn-emerald:hover { background: var(--emerald-lt); color: #fff; transform: translateY(-2px); }
    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 2px solid var(--gold);
      border-radius: 50px;
      padding: 0.65rem 2rem;
      font-weight: 600;
      transition: background .25s, color .25s, transform .2s;
    }
    .btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

    /* ────────── NAVBAR ────────── */
    #mainNav {
      background: rgba(13,111,79,.96);
      backdrop-filter: blur(10px);
      transition: padding .3s;
      z-index: 1050;
    }
    #mainNav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.15); }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: #fff !important;
      letter-spacing: -.3px;
    }
    .navbar-brand span { color: var(--gold-lt); }
    .nav-link {
      color: rgba(255,255,255,.85) !important;
      font-weight: 500;
      font-size: .95rem;
      padding: .5rem 1rem !important;
      transition: color .2s;
    }
    .nav-link:hover, .nav-link.active { color: var(--gold-lt) !important; }
    .navbar-toggler { border-color: rgba(255,255,255,.4); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ────────── HERO ────────── */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(135deg, rgba(13,111,79,.82) 0%, rgba(10,40,30,.70) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 100px;
      background: var(--cream);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .hero-badge {
      display: inline-block;
      background: rgba(200,155,60,.25);
      border: 1px solid var(--gold-lt);
      color: var(--gold-lt);
      border-radius: 50px;
      padding: .35rem 1.2rem;
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .6px;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.08;
    }
    .hero-title em { color: var(--gold-lt); font-style: normal; }
    .hero-desc {
      color: rgba(255,255,255,.82);
      font-size: 1.1rem;
      max-width: 560px;
      line-height: 1.7;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold-lt);
    }
    .stat-label { color: rgba(255,255,255,.7); font-size: .85rem; }
    .hero-scroll {
      position: absolute;
      bottom: 130px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,.6);
      font-size: .8rem;
      text-align: center;
      animation: bounce 1.8s infinite;
    }
    @keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(10px); } }

    /* ────────── DESTINATIONS ────────── */
    #destinations { padding: 100px 0 80px; }
    .dest-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .dest-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(13,111,79,.15); }
    .dest-img-wrap { position: relative; overflow: hidden; height: 230px; }
    .dest-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
    .dest-card:hover .dest-img-wrap img { transform: scale(1.08); }
    .dest-region {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--emerald);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      border-radius: 50px;
      padding: .25rem .85rem;
      letter-spacing: .4px;
      text-transform: uppercase;
    }
    .dest-rating {
      position: absolute;
      top: 14px; right: 14px;
      background: rgba(0,0,0,.55);
      color: var(--gold-lt);
      font-size: .85rem;
      font-weight: 700;
      border-radius: 50px;
      padding: .25rem .75rem;
    }
    .dest-body { padding: 1.2rem 1.3rem 1.5rem; }
    .dest-body h5 { font-size: 1.25rem; font-weight: 700; margin-bottom: .35rem; }
    .dest-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
    .dest-meta { display:flex; gap:1.2rem; margin-top: .9rem; font-size: .82rem; color: var(--muted); }
    .dest-meta span { display:flex; align-items:center; gap:.3rem; }
    .dest-meta i { color: var(--emerald); }

    /* ────────── PACKAGES ────────── */
    #packages { padding: 80px 0; background: linear-gradient(180deg,#f0f7f4 0%, var(--cream) 100%); }
    .pkg-card {
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
      overflow: hidden;
    }
    .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(13,111,79,.13); }
    .pkg-header {
      background: var(--emerald);
      padding: 1.5rem;
      position: relative;
    }
    .pkg-header.gold-bg { background: linear-gradient(135deg, #c89b3c, #a07828); }
    .pkg-badge {
      position: absolute;
      top: -1px; right: 20px;
      background: var(--gold);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: .3rem .9rem;
      border-radius: 0 0 10px 10px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }
    .pkg-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color:#fff; }
    .pkg-days { color: rgba(255,255,255,.75); font-size: .88rem; margin-top: .2rem; }
    .pkg-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold-lt); margin-top: .5rem; }
    .pkg-body { padding: 1.5rem; }
    .pkg-inc { list-style: none; padding: 0; margin-bottom: 1.3rem; }
    .pkg-inc li { padding: .45rem 0; font-size: .9rem; color: var(--muted); display:flex; align-items:center; gap:.55rem; border-bottom: 1px solid #f3f0ea; }
    .pkg-inc li:last-child { border-bottom: none; }
    .pkg-inc i { color: var(--emerald); font-size: 1rem; }

    /* ────────── DEALS ────────── */
    #deals { padding: 80px 0; }
    .deal-banner {
      background: linear-gradient(135deg, var(--emerald) 0%, #0a4f38 100%);
      border-radius: 24px;
      padding: 3.5rem 3rem;
      position: relative;
      overflow: hidden;
      color: #fff;
    }
    .deal-banner::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 280px; height: 280px;
      background: rgba(255,255,255,.05);
      border-radius: 50%;
    }
    .deal-banner::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 40%;
      width: 200px; height: 200px;
      background: rgba(200,155,60,.12);
      border-radius: 50%;
    }
    .deal-tag {
      background: var(--gold);
      color: #fff;
      display: inline-block;
      border-radius: 50px;
      padding: .3rem 1.1rem;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .deal-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.15; }
    .deal-title span { color: var(--gold-lt); }
    .deal-desc { color: rgba(255,255,255,.8); margin: 1rem 0 1.8rem; max-width: 500px; line-height: 1.7; }
    .offer-card {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius);
      padding: 1.3rem 1.5rem;
      backdrop-filter: blur(4px);
      transition: background .3s;
    }
    .offer-card:hover { background: rgba(255,255,255,.18); }
    .offer-pct { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold-lt); }
    .offer-name { font-weight: 600; font-size: 1rem; margin-top: .2rem; }
    .offer-note { font-size: .8rem; color: rgba(255,255,255,.65); }

    /* ────────── ABOUT ────────── */
    #about { padding: 100px 0; background: #fff; }
    .about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
    .about-img-wrap img { width: 100%; border-radius: 20px; }
    .about-badge-float {
      position: absolute;
      bottom: 28px; left: -24px;
      background: var(--gold);
      color: #fff;
      padding: 1.1rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: 0 12px 30px rgba(0,0,0,.15);
      font-family: 'Playfair Display', serif;
    }
    .about-badge-float .num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
    .about-badge-float .lbl { font-size: .82rem; opacity: .9; }
    .about-text { padding: 1rem 1rem 1rem 2rem; }
    .about-text h2 { margin-bottom: 1rem; }
    .about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
    .feature-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: #f0f7f4;
      border: 1px solid #c8e6d8;
      border-radius: 50px;
      padding: .4rem 1.1rem;
      font-size: .85rem;
      font-weight: 600;
      color: var(--emerald);
      margin: .3rem;
    }

    /* ────────── FEEDBACK ────────── */
    #feedback { padding: 80px 0; background: linear-gradient(180deg,var(--cream) 0%,#f0f7f4 100%); }
    .review-card {
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 1.8rem;
      transition: box-shadow .3s;
    }
    .review-card:hover { box-shadow: 0 12px 35px rgba(13,111,79,.1); }
    .review-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; }
    .review-text { color: var(--muted); font-size: .92rem; line-height: 1.7; font-style: italic; }
    .review-author { display:flex; align-items:center; gap:.85rem; margin-top: 1.2rem; }
    .review-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--emerald);
      display: flex; align-items:center; justify-content:center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: #fff;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .review-name { font-weight: 700; font-size: .95rem; }
    .review-loc { font-size: .8rem; color: var(--muted); }
    /* Feedback Form */
    .feedback-form-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid var(--border);
      padding: 2.5rem;
      box-shadow: 0 4px 30px rgba(0,0,0,.06);
    }
    .form-label { font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .4rem; }
    .form-control, .form-select {
      border-radius: 10px;
      border: 1.5px solid var(--border);
      font-size: .92rem;
      padding: .65rem 1rem;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--emerald);
      box-shadow: 0 0 0 3px rgba(13,111,79,.12);
      outline: none;
    }
    .form-control.is-invalid, .form-select.is-invalid { border-color: #dc3545; }
    .invalid-feedback { font-size: .8rem; }
    .star-rating { display:flex; flex-direction:row-reverse; gap:.3rem; }
    .star-rating input { display:none; }
    .star-rating label {
      font-size: 1.8rem;
      color: #ddd;
      cursor: pointer;
      transition: color .2s;
    }
    .star-rating input:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label { color: var(--gold); }

    /* ────────── CONTACT ────────── */
    #contact { padding: 80px 0; background: #fff; }
    .contact-info-card {
      background: var(--emerald);
      border-radius: 20px;
      padding: 2.5rem;
      color: #fff;
      height: 100%;
    }
    .contact-info-card h4 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 1.5rem; }
    .contact-item { display:flex; gap:1rem; align-items:flex-start; margin-bottom: 1.4rem; }
    .contact-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,.15);
      border-radius: 10px;
      display: flex; align-items:center; justify-content:center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .contact-item-text .lbl { font-size: .78rem; opacity: .7; text-transform: uppercase; letter-spacing: .5px; }
    .contact-item-text .val { font-weight: 600; font-size: .97rem; }
    .social-links { display:flex; gap:.8rem; margin-top: 2rem; }
    .social-link {
      width: 40px; height: 40px;
      background: rgba(255,255,255,.15);
      border-radius: 10px;
      display: flex; align-items:center; justify-content:center;
      color: #fff;
      font-size: 1.1rem;
      text-decoration: none;
      transition: background .25s;
    }
    .social-link:hover { background: var(--gold); color: #fff; }
    .contact-form-wrap {
      background: var(--cream);
      border-radius: 20px;
      border: 1px solid var(--border);
      padding: 2.5rem;
    }
    .contact-form-wrap h4 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--emerald); }

    /* ────────── FOOTER ────────── */
    footer {
      background: #0d1c15;
      color: rgba(255,255,255,.75);
      padding: 70px 0 30px;
    }
    .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: #fff; }
    .footer-brand span { color: var(--gold-lt); }
    .footer-desc { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: .7rem; line-height: 1.7; max-width: 280px; }
    .footer-heading { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: .65rem; }
    .footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .2s; }
    .footer-links a:hover { color: var(--gold-lt); }
    .footer-divider { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.2rem; }
    .footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); }

    /* ────────── BACK TO TOP ────────── */
    #backTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 48px; height: 48px;
      background: var(--emerald);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 1.2rem;
      display: none;
      align-items:center;
      justify-content:center;
      box-shadow: 0 6px 20px rgba(13,111,79,.4);
      cursor: pointer;
      z-index: 999;
      transition: transform .2s;
    }
    #backTop:hover { transform: scale(1.1); }
    #backTop.show { display:flex; }

    /* ────────── TOAST ────────── */
    .toast-wrap { position: fixed; top: 90px; right: 20px; z-index: 9999; }

    /* ────────── ANIMATIONS ────────── */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
  