 :root {
      --gold: #C9A84C;
      --gold-light: #E8C96D;
      --gold-dark: #A07830;
      --green-deep: #1A3A2A;
      --green-mid: #2D5A3F;
      --green-light: #4A8C60;
      --cream: #FAF6EE;
      --cream-dark: #F0EAD6;
      --white: #FFFFFF;
      --text-dark: #1C1C1C;
      --text-muted: #6B6B6B;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    .navbar {
      background: transparent;
      padding: 18px 0;
      transition: all 0.4s ease;
      position: fixed;
      width: 100%;
      z-index: 1000;
    }
    .navbar.scrolled {
      background: rgba(26, 58, 42, 0.97);
      backdrop-filter: blur(10px);
      padding: 10px 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--gold) !important;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .navbar-brand span { color: var(--white); }
    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.88) !important;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-size: 0.78rem;
      padding: 8px 16px !important;
      transition: color 0.3s;
      position: relative;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 1px;
      background: var(--gold);
      transition: all 0.3s;
    }
    .navbar-nav .nav-link:hover::after { left: 16px; right: 16px; }
    .navbar-nav .nav-link:hover { color: var(--gold-light) !important; }
    .btn-nav {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white) !important;
      border-radius: 0;
      padding: 8px 24px !important;
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 0.72rem;
      text-transform: uppercase;
      border: 1px solid var(--gold);
      transition: all 0.3s;
    }
    .btn-nav:hover {
      background: transparent !important;
      color: var(--gold) !important;
    }

    /* ─── HERO ─── */
    .hero {
      height: 100vh;
      min-height: 680px;
      background: linear-gradient(160deg, var(--green-deep) 0%, #0E2219 50%, #0A1A10 100%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,140,96,0.12) 0%, transparent 60%);
    }
    .hero-grid-line {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      font-family: 'Lato', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 1.1;
      color: var(--white);
      font-weight: 900;
      margin-bottom: 12px;
    }
    .hero h1 .gold { color: var(--gold); }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
      font-style: italic;
      margin-bottom: 40px;
      letter-spacing: 0.5px;
    }
    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary-gl {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--green-deep);
      border: none;
      padding: 16px 40px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-primary-gl:hover {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201,168,76,0.4);
      color: var(--green-deep);
    }
    .btn-outline-gl {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.3);
      padding: 16px 40px;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 0.8rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-outline-gl:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .hero-stats {
      position: absolute;
      bottom: 60px;
      left: 0; right: 0;
      z-index: 2;
    }
    .hero-stat-item {
      text-align: center;
      padding: 20px;
      border-left: 1px solid rgba(201,168,76,0.2);
    }
    .hero-stat-item:first-child { border-left: none; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: var(--gold);
      font-weight: 700;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 6px;
    }

    /* ─── FLOATING CARDS ─── */
    .hero-visual {
      position: relative;
      height: 500px;
    }
    .float-card {
      position: absolute;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 4px;
      padding: 20px 24px;
      color: var(--white);
      animation: floatY 4s ease-in-out infinite;
    }
    .float-card:nth-child(2) { animation-delay: -2s; }
    .float-card:nth-child(3) { animation-delay: -1s; }
    .float-card-1 { top: 10%; right: 0; width: 220px; }
    .float-card-2 { top: 40%; right: 20%; width: 200px; }
    .float-card-3 { bottom: 15%; right: 5%; width: 200px; }
    .float-card-title {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .float-card-val {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
    }
    .float-card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ─── SECTION STYLES ─── */
    .section-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-eyebrow::before {
      content: '';
      width: 30px; height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2;
      font-weight: 900;
    }
    .section-title .green { color: var(--green-mid); }
    .section-title .gold { color: var(--gold); }
    .divider-gold {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 20px 0 30px;
    }

    /* ─── ABOUT ─── */
    #about {
      padding: 100px 0;
      background: var(--white);
      position: relative;
    }
    #about::before {
      content: 'EXPLORE';
      position: absolute;
      top: 40px; right: -20px;
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      font-weight: 900;
      color: rgba(26,58,42,0.04);
      letter-spacing: 10px;
      pointer-events: none;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      border-radius: 2px;
      object-fit: cover;
      height: 480px;
    }
    .about-img-badge {
      position: absolute;
      bottom: -30px;
      right: -20px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white);
      padding: 28px 24px;
      text-align: center;
      width: 140px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .about-img-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      line-height: 1;
    }
    .about-img-badge .txt {
      font-size: 0.7rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 6px;
      opacity: 0.85;
    }
    .feature-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      padding: 12px 20px;
      margin: 6px 6px 6px 0;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--green-deep);
      letter-spacing: 0.5px;
    }
    .feature-chip i { color: var(--gold); font-size: 1rem; }

    /* ─── DESTINATIONS ─── */
    #destinations {
      padding: 100px 0;
      background: var(--cream);
    }
    .dest-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 2px;
      height: 380px;
    }
    .dest-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .dest-card:hover img { transform: scale(1.08); }
    .dest-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(10,26,16,0.92) 0%, rgba(10,26,16,0.2) 60%, transparent 100%);
      transition: all 0.4s;
    }
    .dest-card:hover .dest-overlay {
      background: linear-gradient(0deg, rgba(10,26,16,0.96) 0%, rgba(10,26,16,0.4) 60%, rgba(201,168,76,0.05) 100%);
    }
    .dest-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px;
      transform: translateY(0);
      transition: all 0.4s;
    }
    .dest-tag {
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .dest-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .dest-price {
      color: var(--gold-light);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .dest-desc {
      color: rgba(255,255,255,0.7);
      font-size: 0.82rem;
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      margin-top: 12px;
    }
    .dest-card:hover .dest-desc { max-height: 80px; }
    .dest-card-large { height: 500px; }

    /* ─── PACKAGES ─── */
    #packages {
      padding: 100px 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }
    #packages::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    #packages .section-title { color: var(--white); }
    .pkg-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 40px 32px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .pkg-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
    .pkg-card:hover::before { transform: scaleX(1); }
    .pkg-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-6px);
      border-color: rgba(201,168,76,0.35);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .pkg-card.featured {
      background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
      border-color: rgba(201,168,76,0.4);
    }
    .pkg-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--green-deep);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 14px;
      margin-bottom: 20px;
    }
    .pkg-icon {
      width: 56px; height: 56px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.4rem;
      color: var(--gold);
    }
    .pkg-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 6px;
    }
    .pkg-duration {
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .pkg-desc {
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .pkg-feature-list { list-style: none; padding: 0; margin-bottom: 28px; }
    .pkg-feature-list li {
      color: rgba(255,255,255,0.75);
      font-size: 0.83rem;
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .pkg-feature-list li i { color: var(--gold); font-size: 0.75rem; }
    .pkg-price {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 20px;
    }
    .pkg-price span {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      margin-left: 4px;
    }
    .btn-pkg {
      display: block;
      text-align: center;
      padding: 14px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--green-deep);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      border: 1px solid transparent;
    }
    .btn-pkg:hover {
      background: transparent;
      border-color: var(--gold);
      color: var(--gold);
    }
    .btn-pkg-outline {
      display: block;
      text-align: center;
      padding: 14px;
      background: transparent;
      color: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.2);
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-pkg-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ─── WHY US ─── */
    #why {
      padding: 100px 0;
      background: var(--white);
    }
    .why-item {
      padding: 40px 32px;
      border: 1px solid var(--cream-dark);
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .why-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--green-mid));
      transition: width 0.4s;
    }
    .why-item:hover::after { width: 100%; }
    .why-item:hover {
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      transform: translateY(-4px);
      border-color: rgba(201,168,76,0.25);
    }
    .why-num {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: rgba(26,58,42,0.06);
      font-weight: 900;
      line-height: 1;
      margin-bottom: -10px;
    }
    .why-icon {
      width: 56px; height: 56px;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 18px;
      transition: all 0.3s;
    }
    .why-item:hover .why-icon {
      background: var(--green-deep);
      border-color: var(--green-deep);
      color: var(--gold);
    }
    .why-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--green-deep);
      margin-bottom: 12px;
    }
    .why-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      padding: 100px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }
    #testimonials::before {
      content: '"';
      position: absolute;
      top: 0; left: 10%;
      font-family: 'Playfair Display', serif;
      font-size: 20rem;
      color: rgba(26,58,42,0.04);
      line-height: 1;
      pointer-events: none;
    }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--cream-dark);
      padding: 40px 36px;
      position: relative;
      transition: all 0.35s;
    }
    .testi-card:hover {
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    .testi-quote-icon {
      font-size: 2rem;
      color: var(--gold);
      opacity: 0.4;
      margin-bottom: 16px;
    }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--text-dark);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 24px;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--green-mid), var(--gold));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .testi-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--green-deep);
    }
    .testi-trip { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }
    .testi-stars { color: var(--gold); font-size: 0.75rem; margin-top: 3px; }

    /* ─── CONTACT / INQUIRY ─── */
    #contact {
      padding: 100px 0;
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    #contact .section-title { color: var(--white); }
    .contact-form-wrap {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.2);
      padding: 50px 44px;
      position: relative;
      z-index: 1;
    }
    .form-label-gl {
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
      display: block;
    }
    .form-control-gl {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      padding: 14px 18px;
      border-radius: 0;
      font-size: 0.9rem;
      width: 100%;
      transition: all 0.3s;
      font-family: 'Lato', sans-serif;
      margin-bottom: 24px;
    }
    .form-control-gl:focus {
      outline: none;
      border-color: var(--gold);
      background: rgba(255,255,255,0.08);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    }
    .form-control-gl::placeholder { color: rgba(255,255,255,0.3); }
    select.form-control-gl option { background: var(--green-deep); color: var(--white); }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 32px;
    }
    .contact-icon {
      width: 48px; height: 48px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-info-label {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .contact-info-val {
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .social-links { display: flex; gap: 12px; margin-top: 40px; }
    .social-link {
      width: 44px; height: 44px;
      border: 1px solid rgba(201,168,76,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.3s;
    }
    .social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
    }

    /* ─── FOOTER ─── */
    footer {
      background: #0A1610;
      padding: 60px 0 30px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .footer-brand span { color: var(--white); }
    .footer-desc {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-heading {
      font-size: 0.72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.86rem;
      transition: color 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-links a::before {
      content: '›';
      color: var(--gold);
      opacity: 0.5;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      margin-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.5px;
    }
    .footer-copy a { color: var(--gold); text-decoration: none; }

    /* ─── SCROLL TO TOP ─── */
    #scrollTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--green-deep);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      z-index: 999;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }
    #scrollTop.visible { opacity: 1; transform: translateY(0); }
    #scrollTop:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .hero { height: auto; padding: 140px 0 80px; }
      .hero-stats { position: static; margin-top: 40px; }
      .hero-visual { display: none; }
      .about-img-badge { display: none; }
      .contact-form-wrap { padding: 30px 24px; }
    }

     /* ── Hero Section ── */
    .hero-section {
      background: #fff;
      padding: 70px 0 50px;
      text-align: center;
      border-bottom: 1px solid #e8e2d9;
    }

    .top-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b03000;
      background: #fce8e0;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      color: #111;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-desc {
      font-size: 15px;
      color: #555;
      max-width: 820px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .hero-desc a {
      color: #c85a00;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid #f4a96a;
      transition: color 0.2s;
    }

    .hero-desc a:hover { color: #a03e00; }

    /* ── Cards Section ── */
    .cards-section {
      padding: 50px 0 70px;
    }

    /* ── Tour Card ── */
    .tour-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #e8e2d9;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .tour-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    /* ── Image Area ── */
    .card-img-area {
      position: relative;
      height: 210px;
      overflow: hidden;
    }

    .card-img-area img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .tour-card:hover .card-img-area img {
      transform: scale(1.05);
    }

    /* Placeholder for missing images */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
    }

    /* Discount Badge */
    .discount-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 52px;
      height: 52px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      color: #111;
      line-height: 1.1;
      box-shadow: 0 3px 10px rgba(0,0,0,0.15);
      z-index: 2;
    }

    .discount-badge .pct { font-size: 15px; color: #c00; }
    .discount-badge .off { font-size: 10px; color: #555; font-weight: 600; }

    /* Bottom overlays on image */
    .img-bottom-badges {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    }

    .badge-bestseller {
      background: #111;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 30px;
    }

    .badge-duration {
      background: #b35a00;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 5px 12px;
      border-radius: 30px;
    }

    /* ── Card Body ── */
    .card-body-inner {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .tour-title {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    /* Stars */
    .stars-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .stars {
      color: #f59e0b;
      font-size: 15px;
      letter-spacing: 1px;
    }

    .review-count {
      font-size: 13px;
      color: #888;
    }

    /* Price */
    .price-block {
      margin-bottom: 16px;
      margin-top: auto;
    }

    .price-from {
      font-size: 12px;
      color: #888;
      margin-bottom: 2px;
    }

    .price-current {
      font-size: 24px;
      font-weight: 700;
      color: #c85a00;
      line-height: 1;
    }

    .price-original {
      font-size: 13px;
      color: #aaa;
      text-decoration: line-through;
      margin-top: 3px;
    }

    /* Buttons */
    .btn-book-now {
      background: #e05500;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 10px 0;
      font-size: 14px;
      font-weight: 600;
      width: 100%;
      cursor: pointer;
      transition: background 0.2s;
      text-align: center;
    }

    .btn-book-now:hover { background: #c04500; color: #fff; }

    .btn-whatsapp {
      background: #25d366;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 10px 0;
      font-size: 14px;
      font-weight: 600;
      width: 100%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      transition: background 0.2s;
      text-decoration: none;
    }

    .btn-whatsapp:hover { background: #1ab854; color: #fff; }

    .price-note {
      text-align: center;
      font-size: 11px;
      color: #bbb;
      margin-top: 10px;
    }

    /* ── WhatsApp SVG ── */
    .wa-icon {
      width: 17px;
      height: 17px;
      fill: #fff;
      flex-shrink: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 575px) {
      .hero-title { font-size: 1.8rem; }
      .card-img-area { height: 180px; }
    }


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

    /* ─── PACKAGES DROPDOWN ─── */
.navbar-nav .dropdown-toggle::after {
  border: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  vertical-align: middle;
  margin-left: 6px;
  color: var(--gold);
  transition: transform 0.3s;
}
.navbar-nav .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}
.navbar-nav .dropdown-toggle.nav-link::after {
  bottom: auto;
  height: auto;
  background: none;
}
.navbar-nav .dropdown-menu {
  background: rgba(20, 46, 32, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0;
  padding: 8px 0;
  margin-top: 8px !important;
  min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: dropFadeIn 0.2s ease forwards;
}
@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar-nav .dropdown-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  background: transparent;
}
.navbar-nav .dropdown-item i {
  color: var(--gold);
  font-size: 0.75rem;
  width: 16px;
  text-align: center;
  opacity: 0.8;
}
.navbar-nav .dropdown-item:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  padding-left: 28px;
}
.navbar-nav .dropdown-item:hover i { opacity: 1; }
.navbar-nav .dropdown-divider {
  border-color: rgba(201,168,76,0.15);
  margin: 6px 0;
}
.navbar-nav .dropdown-item.view-all {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
}
.navbar-nav .dropdown-item.view-all:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

a{
  text-decoration: none;
  color: inherit;
}




.navbar-nav .dropdown-menu {
  background: rgba(20, 46, 32, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0;
  padding: 8px 0;

  /* REMOVE THIS */
  /* margin-top: 8px !important; */

  margin-top: 0 !important;

  min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  display: block;
}



.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ─── BREADCRUMB BAR ─── */
.breadcrumb-bar {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  text-align: center;
}

/* Dark overlay */
.breadcrumb-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 26, 16, 0.80) 0%,
    rgba(26, 58, 42, 0.70) 100%
  );
  z-index: 0;
}

/* Content upar rhe overlay ke */
.breadcrumb-bar .container {
  position: relative;
  z-index: 1;
}

/* Title */
.breadcrumb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Gold underline accent */
.breadcrumb-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 12px auto 0;
}

/* Breadcrumb nav */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.breadcrumb-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: var(--gold-light);
}

/* Separator */
.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--gold);
  opacity: 0.6;
  padding: 0 10px;
  font-size: 1rem;
}

/* Active item */
.breadcrumb-item.active {
  color: var(--gold);
  font-weight: 700;
}

/* Home icon */
.breadcrumb-item .isax {
  font-size: 14px;
  vertical-align: middle;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .breadcrumb-bar {
    padding: 100px 0 60px;
  }

  .breadcrumb-title {
    font-size: 1.6rem;
  }

  .breadcrumb-item {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-bar {
    padding: 90px 0 50px;
  }

  .breadcrumb-title {
    font-size: 1.4rem;
  }
}


/* about css */
/* ══════════ RADIO CARDS (Tour Options) ══════════ */
.radio-wrapper-front,
.radio-wrapper-side {
  border: 2px solid var(--cream-dark);
  padding: 12px;
  cursor: pointer;
  transition: border 0.3s, background 0.3s;
  margin-bottom: 10px;
}
.radio-wrapper-front:hover,
.radio-wrapper-side:hover {
  border-color: var(--gold);
}
.radio-wrapper-front.selected,
.radio-wrapper-side.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
.radio_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.slect-check-front,
.check-radio-back {
  color: var(--cream-dark);
  font-size: 1.1rem;
  transition: color 0.3s;
}
.selected .slect-check-front,
.selected .check-radio-back {
  color: var(--gold);
}
.radio_para_content {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.calculation_show_front p,
.calculation_show_side p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.calculation_show_front strong,
.calculation_show_side strong {
  font-size: 0.88rem;
  color: var(--green-deep);
}
.tax-content {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 4px 0;
}

/* ══════════ TIME BUTTONS ══════════ */
.time-btn {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--gold-dark);
  border-radius: 0;
  font-size: 0.72rem;
  cursor: pointer;
  margin: 3px 2px;
  color: var(--gold-dark);
  background: transparent;
  transition: all 0.2s;
}
.time-btn:hover,
.time-btn.active {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

/* ══════════ DATE PICKER INPUT ══════════ */
.c-date-picker .form-control {
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: border 0.3s;
}
.c-date-picker .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}

/* ══════════ TRAVELER BUTTON ══════════ */
.c-btn-outline-info {
  border: 1px solid var(--gold) !important;
  background: transparent;
  color: var(--green-deep);
  font-size: 0.82rem;
  border-radius: 0 !important;
  transition: all 0.2s;
}
.c-btn-outline-info:hover {
  background: rgba(201, 168, 76, 0.08);
}

/* ══════════ BOOK NOW BUTTON ══════════ */
.search-btn,
button[style*="submit"],
#priceForm .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--green-deep) !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.3s;
}
.search-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ══════════ SEE ALL OPTIONS LINK ══════════ */
#priceForm h5[data-bs-toggle="modal"] {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--cream-dark);
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
#priceForm h5[data-bs-toggle="modal"]:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* ══════════ BOOKING CARD (sidebar wrapper) ══════════ */
.col-xl-4 .card.shadow-none {
  border: 1px solid var(--cream-dark);
  border-radius: 0;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.col-xl-4 .card.shadow-none::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.col-xl-4 .card-body h5 {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  font-weight: 700;
}

/* ══════════ TRAVELER COUNTER (W3 Modal) ══════════ */
.traveler-counter-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  border-radius: 0;
}
.traveler-counter-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
}
.w3-modal-content {
  border-radius: 0 !important;
  border: 1px solid var(--cream-dark);
  max-width: 340px;
  margin: 15vh auto auto;
}
.w3-modal-content .btn.bg-danger {
  background: var(--green-deep) !important;
  color: var(--gold) !important;
  border-radius: 0 !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════ MODAL (See All Options popup) ══════════ */
#exampleModal .modal-header {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
}
#exampleModal .modal-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-weight: 700;
}
#exampleModal .modal-header .btn-close { filter: invert(1); }
#exampleModal .btn-primary-custom {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 0;
}

/* ══════════ PRELOADER SPINNER ══════════ */
.circular {
  width: 30px;
  height: 30px;
  animation: rotate 2s linear infinite;
}
.path {
  stroke: var(--gold);
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
  0%   { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 89, 200; stroke-dashoffset: -35px; }
  100% { stroke-dasharray: 89, 200; stroke-dashoffset: -124px; }
}

/* ══════════ ENQUIRY FORM (from=$0 case) ══════════ */
#enquiryForm .form-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
#enquiryForm .form-control,
#enquiryForm .form-select {
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  border-radius: 0;
  font-size: 0.85rem;
  padding: 10px 14px;
  transition: border 0.3s;
}
#enquiryForm .form-control:focus,
#enquiryForm .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}
#enquiryForm .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--green-deep) !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.82rem;
}
.gradient-title {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  font-weight: 700;
}

/* ══════════ WHATSAPP / CHAT BUTTONS ══════════ */
.btn-success[href*="wa.me"] {
  background: #25D366 !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
}