:root {
      /* UPDATED COLOURS (as requested) */
      --brown: #a05817;       /* brown main */
      --brown-dark: #7a3f12;  /* darker brown */
      --orange: #e0832f;      /* orange accent */
      --yellow: #f6ba4a;      /* yellow highlight */

      --bg: #fffaf6;
      --surface: #ffffff;
      --text: #0f172a;
      --muted: #6b7280;
      --border-soft: #e8e3df;
      --radius-lg: 1.0rem;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
      --transition: 180ms ease;
    }
    
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html,body { height:100%; }
    body {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    a { color:inherit; text-decoration:none; }
    img { max-width:100%; display:block; }

    .container { max-width:1180px; padding:0 1.25rem; margin:0 auto; }

    /* NAV */
    header { position:sticky; top:0; z-index:60; }
    .navbar {
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .navbar-inner {
      display:flex; align-items:center; justify-content:space-between;
      padding:0.85rem 0;
    }
    .brand { display:flex; align-items:center; gap:0.85rem; }
    .brand-logo {
      width:56px; height:56px; border-radius:8px; overflow:hidden;
      background: linear-gradient(180deg, rgba(224,131,47,0.06), rgba(160,88,23,0.04));
      box-shadow: 0 6px 18px rgba(160,88,23,0.08);
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
    .brand-logo-img { width:100%; height:100%; object-fit:contain; display:block; }
    .brand-text { display:flex; flex-direction:column; line-height:1; }
    .brand-name { font-weight:700; font-size:1rem; color:var(--text); text-transform:uppercase; letter-spacing:0.02em; }
    .brand-tag { font-size:0.78rem; color:var(--muted); margin-top:2px; }

    .nav-links { display:flex; gap:1.3rem; align-items:center; }
    .nav-links a { color:var(--muted); font-weight:600; font-size:0.94rem; position:relative; padding:0.15rem 0; }
    .nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:3px; border-radius:999px; background: linear-gradient(90deg,var(--brown),var(--orange)); transition:width var(--transition); }
    .nav-links a:hover { color:var(--brown-dark); }
    .nav-links a:hover::after { width:100%; }

    .nav-cta {
      padding:0.55rem 1rem; border-radius:999px; background:linear-gradient(135deg,var(--brown),var(--brown-dark));
      color:white; font-weight:700; border:1px solid rgba(224,131,47,0.12); cursor:pointer;
      box-shadow: 0 10px 30px rgba(224,131,47,0.12);
    }

    .nav-toggle { display:none; width:40px; height:40px; border-radius:999px; align-items:center; justify-content:center; background:white; border:1px solid rgba(0,0,0,0.06); cursor:pointer; }
    .nav-toggle span{ display:block; width:18px; height:2px; background:#111; border-radius:2px; position:relative; }
    .nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; width:18px; height:2px; background:#111; border-radius:2px; }
    .nav-toggle span::before { top:-6px; } .nav-toggle span::after { bottom:-6px; }

    /* HERO — full cover bg (Images/banner1.jpeg) */
    .hero {
      min-height: 460px;
      display:grid; align-items:center;
      padding:3rem 0;
      position:relative;
      color: #071019;
      overflow:hidden;
    }

    .hero::before{
      content:"";
      position:absolute; inset:0; z-index:0;
      background-image: url("Images/banner1.jpeg");
      background-size:cover; background-position: center;
      filter: contrast(0.95) saturate(0.92);
      transform: scale(1.02);
    }

    /* overlay for legibility */
    .hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  /* DARKER OVERLAY */
  background: rgba(0, 0, 0, 0.55);
  /* slight gradient variation if you want:
     background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.55));
  */

  mix-blend-mode: multiply;
}


    .hero-inner { position:relative; z-index:2; display:grid; grid-template-columns: 1.2fr 1fr; gap:2.4rem; align-items:center; }
    .hero-badge { display:inline-flex; gap:0.6rem; align-items:center; padding:0.3rem 0.6rem; border-radius:999px; background:rgba(255,255,255,0.92); color:var(--brown-dark); font-weight:700; font-size:0.78rem; letter-spacing:0.08em; }
    .hero-dot { width:10px; height:10px; border-radius:999px; background: linear-gradient(180deg,var(--yellow),var(--orange)); box-shadow:0 6px 18px rgba(224,131,47,0.18); }

    .hero-title { font-size:clamp(1.9rem,3.4vw,2.8rem); line-height:1.06; color:#fff; margin-top:0.6rem; font-weight:800; text-shadow:0 6px 20px rgba(0,0,0,0.45); }
    .hero-title span { color:var(--yellow); }

    .hero-sub { margin-top:0.7rem; max-width:40rem; color: rgba(255,255,255,0.9); font-size:1rem; }

    .hero-points { margin-top:1.15rem; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:0.5rem 1rem; color: rgba(255,255,255,0.95); font-weight:600; }
    .hero-point { display:flex; gap:0.6rem; align-items:center; }
    .hero-point-icon { width:28px; height:28px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:rgba(255,255,255,0.08); color:var(--yellow); font-weight:700; }

    .hero-actions { margin-top:1.2rem; display:flex; gap:0.85rem; flex-wrap:wrap; }
    .btn-primary { 
      padding:0.9rem 1.2rem; 
      border-radius:12px; 
      background:linear-gradient(135deg,var(--brown),var(--brown-dark)); 
      color:white; 
      font-weight:700; 
      border:none; 
      cursor:pointer; 
      box-shadow: 0 4px 12px rgba(160,88,23,0.3);
      transition: all 0.2s ease;
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(160,88,23,0.4);
      background:linear-gradient(135deg,var(--brown-dark),#5d2c0a);
    }
    .btn-outline { padding:0.9rem 1.2rem; border-radius:999px; background:rgba(255,255,255,0.14); color:white; border:1px solid rgba(255,255,255,0.08); font-weight:700; cursor:pointer; }
    .btn-cancel { 
      padding:0.9rem 1.2rem; 
      border-radius:12px; 
      background: #f8f9fa; 
      color: #6c757d; 
      border:1px solid #dee2e6; 
      font-weight:700; 
      cursor:pointer; 
      flex: 1; 
      transition: all 0.2s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .btn-cancel:hover { 
      background: #e9ecef; 
      color: #495057; 
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
    .btn-call { 
      padding:0.9rem 1.5rem; 
      border-radius:12px; 
      background:linear-gradient(135deg, #22c55e, #16a34a); 
      color:white; 
      border:none; 
      font-weight:700; 
      cursor:pointer; 
      font-size:0.95rem; 
      transition: all 0.2s ease; 
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .btn-call:hover { 
      transform: translateY(-2px); 
      box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
      background:linear-gradient(135deg, #16a34a, #15803d);
    }

    /* Form row for side-by-side fields */
    .form-row { display: flex; gap: 1rem; }
    .form-row .field { flex: 1; }

    /* HERO CARD (form) */
    .hero-card-wrap { display:flex; justify-content:flex-end; }
    .hero-card {
      width:100%; max-width:380px; border-radius:14px; padding:1.2rem; background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
      box-shadow: 0 12px 40px rgba(10,12,10,0.06); border: 1px solid var(--border-soft);
    }
    .hero-card-title { font-size:1.02rem; font-weight:700; color:var(--text); }
    .hero-card-sub { font-size:0.86rem; color:var(--muted); margin-top:4px; }

    .field { margin-top:0.6rem; display:flex; flex-direction:column; gap:6px; font-size:0.86rem; }
    .field label { color:var(--muted); font-weight:600; font-size:0.82rem; }
    .field input, .field select {
      padding:0.56rem 0.65rem; border-radius:10px; border:1px solid var(--border-soft); background:#fff; outline:none; font-size:0.92rem;
    }
    .field input:focus, .field select:focus { box-shadow: 0 6px 18px rgba(224,131,47,0.07); border-color: rgba(224,131,47,0.2); }

    .hero-card-footer { display:flex; justify-content:space-between; gap:0.6rem; margin-top:0.9rem; align-items:center; font-size:0.82rem; color:var(--muted); }
    .hero-pill { padding:0.18rem 0.5rem; border-radius:999px; background:linear-gradient(90deg, rgba(246,186,74,0.12), rgba(224,131,47,0.06)); border:1px solid rgba(246,186,74,0.14); color:var(--brown-dark); font-weight:700; font-size:0.78rem; }

    /* GENERIC SECTION STYLES */
    .section { padding:2.6rem 0; }
    .section.alt { background: transparent; }
    .section-header { max-width:40rem; margin:0 auto 1.2rem; text-align:center; }
    .section-kicker { color:var(--brown-dark); font-weight:800; letter-spacing:0.12em; font-size:0.78rem; margin-bottom:6px; }
    .section-title { font-size:1.35rem; color:var(--text); font-weight:800; margin-bottom:6px; }
    .section-sub { color:var(--muted); font-size:0.94rem; }

    /* FEATURE GRID / PACKAGES */
    .feature-grid { display:grid; grid-template-columns: 1.2fr 1fr; gap:1.6rem; align-items:start; margin-top:1rem; }
    .card { background:var(--surface); border-radius:12px; padding:1.1rem; border:1px solid var(--border-soft); box-shadow:var(--shadow-soft); }
    .card-kicker { color:var(--brown-dark); font-weight:800; font-size:0.78rem; margin-bottom:6px; }
    .card-title { font-weight:700; font-size:1.05rem; color:var(--text); }
    .card-sub { color:var(--muted); margin-top:6px; font-size:0.9rem; }

    .card-columns { display:grid; grid-template-columns: 1fr 320px; gap:1rem; margin-top:0.8rem; }
    .list { list-style:none; display:grid; gap:0.5rem; font-size:0.92rem; color:var(--text); }
    .list li { display:flex; gap:0.6rem; align-items:flex-start; }
    .list-bullet { width:9px; height:9px; border-radius:999px; background:var(--brown); margin-top:6px; flex-shrink:0; }

    .timeline { list-style:none; padding-left:0.8rem; border-left:3px solid rgba(0,0,0,0.04); display:grid; gap:0.5rem; color:var(--muted); font-size:0.92rem; }
    .timeline li { position:relative; padding-left:0.6rem; }

    .price-row { margin-top:1rem; display:flex; gap:0.6rem; align-items:center; justify-content:space-between; flex-wrap:wrap; }
    .price { font-weight:800; color:var(--brown-dark); font-size:1.05rem; }

    .call-chip { display:inline-flex; gap:0.5rem; align-items:center; background:linear-gradient(90deg, rgba(224,131,47,0.06), rgba(160,88,23,0.04)); padding:0.45rem 0.65rem; border-radius:999px; border:1px solid rgba(224,131,47,0.08); color:var(--brown-dark); font-weight:700; }

    /* ITINERARY — updated, responsive grid */
    .itinerary-card { background: #fff; border-radius:12px; padding:20px; margin-top:12px; box-shadow: 0 6px 20px rgba(12,12,12,0.06); border:1px solid var(--border-soft); }
    .itinerary-grid {
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap:16px;
      margin-top:16px;
    }
    .itinerary-box {
      display:flex; gap:14px; padding:14px; background: linear-gradient(180deg,#fff,#fffaf6); border-radius:10px; border:1px solid rgba(0,0,0,0.03); align-items:flex-start;
    }
    .itinerary-box.full { grid-column: 1 / -1; }
    .itinerary-icon { font-size:26px; width:46px; height:46px; display:flex; align-items:center; justify-content:center; border-radius:8px; background:linear-gradient(180deg, rgba(246,186,74,0.14), rgba(224,131,47,0.06)); color:var(--brown-dark); flex-shrink:0; }
    .itinerary-box h4 { margin:0 0 6px 0; font-size:1rem; font-weight:800; color:var(--text); }
    .itinerary-box p { margin:0; color:var(--muted); font-size:0.92rem; }

    .itinerary-contact { margin-top:14px; font-weight:700; color:var(--brown-dark); text-align:center; }

    /* ROUTES / WHY / FAQ / CONTACT */
    .routes-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:1rem; }
    .route-card { padding:16px; border-radius:10px; background:linear-gradient(180deg,#fff,#fffaf6); border:1px solid var(--border-soft); }
    .why-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; margin-top:1rem; }
    .why-card { padding:14px; border-radius:10px; background:linear-gradient(180deg,#fff,#fffaf6); border:1px solid var(--border-soft); }
    .why-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; background: linear-gradient(180deg, rgba(246,186,74,0.12), rgba(224,131,47,0.04)); color:var(--brown-dark); font-weight:800; margin-bottom:8px; }

    .faq-grid { display:grid; gap:10px; margin-top:10px; }
    .faq-item { border-radius:10px; overflow:hidden; border:1px solid var(--border-soft); background:#fff; }
    .faq-header { padding:12px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
    .faq-question { font-weight:700; color:var(--text); }
    .faq-toggle { width:28px; height:28px; display:flex; align-items:center; justify-content:center; border-radius:999px; border:1px solid rgba(0,0,0,0.06); color:var(--muted); }

    .faq-body { padding:12px; color:var(--muted); display:none; }
    .faq-item.open .faq-body { display:block; }

    .cta-card { display:grid; grid-template-columns: 1fr 380px; gap:16px; align-items:center; padding:16px; border-radius:12px; background: linear-gradient(90deg, rgba(246,186,74,0.06), rgba(224,131,47,0.03)); border:1px solid rgba(246,186,74,0.08); box-shadow:0 8px 30px rgba(224,131,47,0.06); margin-top:6px; }

    .contact-form { padding:12px; background: #fff; border-radius:10px; border:1px solid var(--border-soft); }

    footer { padding:18px 0; border-top:1px solid rgba(0,0,0,0.04); background:#fff; margin-top:28px; }
    .footer-inner { display:flex; align-items:center; justify-content:space-between; gap:10px; max-width:1180px; margin:0 auto; color:var(--muted); font-size:0.88rem; }
/* ---------- ABOUT GRID (desktop first) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 65% 35%;    /* image left (dominant), card right */
  gap: 1.6rem;
  align-items: center;
  margin-top: 0.6rem;
}

/* Photo container */
.about-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(12,12,12,0.06);
  border: 1px solid rgba(0,0,0,0.02);
}

/* Make the image fill the column but keep a consistent height */
.about-photo img {
  width: 100%;
  height: 420px;           /* fixed desktop height for consistent layout */
  object-fit: cover;
  display: block;
}

/* Card styling (keeps the existing card look but improved spacing) */
.about-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fffaf6);
  box-shadow: 0 20px 40px rgba(12,12,12,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Headline and body */
.about-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.about-card-body {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.96rem;
}

/* Tag buttons */
.about-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 6px;
}

.tag-btn {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: default;
  box-shadow: 0 4px 14px rgba(12,12,12,0.03);
}

/* ---------- RESPONSIVE: tablet and mobile ---------- */
@media (max-width: 1024px) {
  .about-photo img { height: 360px; } /* slightly smaller on tablets */
}

@media (max-width: 768px) {
  /* stack one-by-one (image first, then text) */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-photo {
    order: -1; /* ensure image comes before card */
  }

  .about-photo img {
    width: 100%;
    height: auto;      /* natural height on mobile */
    max-height: 320px; /* avoid very tall images */
    object-fit: cover;
    border-radius: 12px;
  }

  .about-card {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
  }

  .about-card-title { font-size: 1.03rem; }
  .about-card-body  { font-size: 0.95rem; }

  .container { padding-left: 0.9rem; padding-right: 0.9rem; }
}

@media (max-width: 420px) {
  .about-photo img { max-height: 240px; }
  .about-card-body { font-size: 0.92rem; }
  .tag-btn { padding: 6px 8px; font-size: 0.84rem; }
}

  /* ---------------------
   Mobile-friendly additions
   Append after your existing styles
   --------------------- */
   
   

/* Mobile menu base (hidden on desktop) */
.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 24px rgba(10,12,10,0.04);
}
.mobile-menu .mobile-menu-inner {
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-menu a,
.mobile-menu button {
  color: var(--text);
  font-weight:700;
  padding: 0.6rem 0;
  text-align: left;
  width: 100%;
  background: transparent;
  border: none;
}
.mobile-menu .nav-cta { width: 100%; margin-top: 0.35rem; }

/* show / hide states */
.mobile-menu.open { display: block; }

/* Touch targets & spacing improvements for small screens */
.btn-primary, .btn-outline, .btn-cancel, .btn-call, .nav-cta {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* FORCE IMAGE FIRST + TEXT BELOW ON MOBILE for About section */
@media (max-width: 768px) {
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
  }
  .about-photo {
    order: -1 !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
  .about-card {
    order: 0 !important;
    width: 100%;
    margin: 0;
    padding: 1.2rem;
  }

  /* Navbar */
  .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }

  /* Hero */
  .hero { padding: 1.8rem 0; min-height: 380px; }
  .hero::before { background-position: center top; transform: scale(1.05); }
  .hero-title { font-size: clamp(1.5rem, 5vw, 2.2rem); text-align: left; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; padding: 0 0.6rem; }

  /* Card/form */
  .hero-card { max-width: 100%; width: 100%; }
  .hero-card-wrap { justify-content:flex-start; }

  /* Section grids stack */
  .feature-grid, .routes-grid, .why-grid { grid-template-columns: 1fr; }
  .card-columns { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 12px; }

  /* Itinerary grid small devices */
  .itinerary-grid { grid-template-columns: 1fr; }
  .itinerary-box { padding: 12px; gap: 10px; }
  .itinerary-icon { width:40px; height:40px; font-size:22px; }

  .section-header { padding: 0 0.6rem; }
  .container { padding-left: 0.9rem; padding-right: 0.9rem; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; padding: 0 0.6rem; }
}

/* Tablet tweaks */
@media (max-width: 1024px) {
  .hero { min-height: 420px; padding: 2.4rem 0; }
  .hero-inner { gap: 1.6rem; }
  .card-columns { grid-template-columns: 1fr; } /* stack timeline on small tablets */
}

/* Extra small phones */
@media (max-width: 420px) {
  .brand-name { font-size: 0.92rem; }
  .brand-logo { width:48px; height:48px; border-radius:8px; }
  .nav-toggle { width:38px; height:38px; }
  .hero-sub { max-width: 100%; font-size: 0.95rem; }
  .hero-actions { gap: 0.6rem; }
  .btn-primary, .btn-outline, .btn-cancel, .btn-call { padding: 0.78rem 1rem; font-size: 0.92rem; }
  .form-row { flex-direction: column; gap: 0; }
  .faq-question { font-size: 0.96rem; }
  .list li { font-size: 0.9rem; }
}
/* Popup overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Popup box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  position: relative;
  animation: popupIn 0.35s ease;
}

/* Close button */
.popup-close {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #555;
}

/* Title */
.popup-title {
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

/* Smooth animation */
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile improvements */
@media (max-width: 480px) {
  .popup-box {
    padding: 1.2rem;
  }
  .popup-title {
    font-size: 1.2rem;
  }
}
