/* =========================================================
   MADOU DESERT TOUR — style.css
   Color palette from logo:
   Primary brown:   #5C2D0E
   Gold/amber:      #D4870A
   Orange accent:   #F4A820
   Light bg:        #FBF5EC
   Dark text:       #1A0D00
   ========================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:       #5C2D0E;
  --brown-dark:  #3A1A06;
  --gold:        #D4870A;
  --gold-light:  #F4A820;
  --sand:        #E8C97A;
  --bg-light:    #FBF5EC;
  --bg-dark:     #1E0C00;
  --text:        #2C1500;
  --text-light:  #6B4226;
  --white:       #FFFFFF;
  --radius:      14px;
  --shadow:      0 8px 32px rgba(92,45,14,0.13);
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.bg-light    { background: var(--bg-light); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light .section-label { color: var(--gold-light); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(212,135,10,0.35);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92,45,14,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--brown);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#header.scrolled {
  background: var(--brown-dark);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Inner pages (About, Tours, Why Us, Gallery, Reviews, Contact)
   always show a solid colored header/menu */
body.inner-page #header {
  background: var(--brown-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ============================================================
   PAGE HERO (inner pages banner)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 130px 0 70px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,12,0,0.80), rgba(92,45,14,0.58));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
}
.page-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
}

/* ============================================================
   TOUR DETAIL PAGE
   ============================================================ */
/* Quick facts bar */
.tour-facts {
  background: var(--brown-dark);
  padding: 18px 0;
}
.tour-facts-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 18px;
}
.tour-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.tour-fact i { font-size: 24px; color: var(--gold-light); }
.tour-fact strong { display: block; font-size: 14px; font-weight: 600; }
.tour-fact span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* Two-column layout */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 46px;
  align-items: start;
}
.tour-detail-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--brown-dark);
  margin: 0 0 16px;
}
.tour-detail-main h2:not(:first-child) { margin-top: 44px; }
.tour-detail-main p { font-size: 15px; color: var(--text-light); margin-bottom: 14px; }

/* Highlights list */
.tour-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 10px 0 8px;
}
.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.tour-highlights li i { color: var(--gold); margin-top: 4px; }

/* Itinerary */
.itinerary { position: relative; margin-top: 10px; }
.day-item {
  position: relative;
  padding: 0 0 26px 64px;
  border-left: 2px solid #e7dcc9;
  margin-left: 22px;
}
.day-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.day-badge {
  position: absolute;
  left: -23px; top: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(212,135,10,0.4);
}
.day-badge span { font-size: 9px; font-weight: 600; letter-spacing: 1px; }
.day-badge strong { font-size: 17px; }
.day-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--brown-dark);
  margin: 6px 0 8px;
}
.day-item p { font-size: 14px; color: var(--text-light); margin: 0; }

/* Included / Not included */
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}
.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}
.inc-list li i { margin-top: 4px; }
.inc-list li i.fa-check { color: #2e9e5b; }
.inc-list li i.fa-xmark { color: #d0494b; }

/* Booking sidebar */
.booking-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f0e8da;
  overflow: hidden;
}
.booking-card .bc-head {
  background: var(--brown-dark);
  color: var(--white);
  padding: 22px 24px;
  text-align: center;
}
.booking-card .bc-price {
  font-size: 34px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}
.booking-card .bc-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.7); }
.booking-card .bc-head p { margin: 4px 0 0; font-size: 13px; color: var(--gold-light); }
.booking-card .bc-body { padding: 22px 24px; }
.bc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f0e8da;
  font-size: 14px;
}
.bc-row:last-of-type { border-bottom: none; }
.bc-row span:first-child { color: var(--text-light); display: flex; align-items: center; gap: 9px; }
.bc-row i { color: var(--gold); width: 16px; }
.bc-row span:last-child { font-weight: 600; color: var(--brown-dark); }
.booking-card .btn-primary,
.booking-card .btn-whatsapp { width: 100%; text-align: center; justify-content: center; margin-top: 8px; }
.booking-card .btn-whatsapp { margin-top: 12px; }

/* Tour mini gallery */
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.tour-gallery img {
  height: 160px;
  border-radius: 10px;
  transition: transform 0.4s;
}
.tour-gallery a { overflow: hidden; border-radius: 10px; }
.tour-gallery a:hover img { transform: scale(1.07); }

@media (max-width: 900px) {
  .tour-detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; max-width: 460px; margin: 0 auto; }
  .tour-highlights { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; gap: 8px; }
  .tour-gallery { grid-template-columns: 1fr 1fr; }
}




.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-text span { display: block; font-size: 13px; color: var(--gold-light); font-weight: 400; letter-spacing: 2px; }

/* Nav */
#nav { margin-left: auto; }
#nav ul { display: flex; align-items: center; gap: 8px; }
#nav ul li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
#nav ul li a:hover,
#nav ul li a.active {
  background: rgba(255,255,255,0.15);
  color: var(--gold-light);
}

/* Book Now CTA */
.btn-book {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,12,0,0.75) 0%,
    rgba(92,45,14,0.55) 50%,
    rgba(30,12,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 74px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
}
.hero-content h1 span { color: var(--gold-light); }

.hero-desc {
  color: rgba(255,255,255,0.87);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.hero-arrows {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.arrow-btn:hover { background: var(--gold); border-color: var(--gold); }

.slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.slide-dot.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* ============================================================
   HIGHLIGHTS BAR
   ============================================================ */
.highlights-bar {
  background: var(--brown-dark);
  padding: 20px 0;
}
.highlights-inner {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.highlight-item > i {
  font-size: 28px;
  color: var(--gold-light);
}
.highlight-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.highlight-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-sec {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(92,45,14,0.25);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(212,135,10,0.4);
  border: 4px solid var(--white);
}
.badge-number { font-size: 28px; font-weight: 800; line-height: 1; }
.badge-text   { font-size: 11px; font-weight: 600; line-height: 1.3; }

.about-content .section-label { display: block; margin-bottom: 10px; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-content p { font-size: 15px; color: var(--text-light); margin-bottom: 14px; }
.about-content p strong { color: var(--brown); }

.about-features {
  margin: 22px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.about-features li i { color: var(--gold); font-size: 15px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 24px;
}

.team-img-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(92,45,14,0.15);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 20px;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TOURS
   ============================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(92,45,14,0.18);
}

.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-img img { transition: transform 0.5s ease; }
.tour-card:hover .tour-img img { transform: scale(1.06); }

.tour-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.tour-duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(30,12,0,0.75);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 5px;
}

.tour-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--brown-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.tour-body > p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.tour-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.tour-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.tour-includes li i {
  color: var(--gold);
  width: 16px;
  font-size: 13px;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0e8da;
  margin-top: auto;
}
.tour-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--brown);
}
.tour-price span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 2px;
}
.tour-price em {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  font-style: normal;
}

.btn-tour {
  background: var(--brown-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  transition: var(--transition);
}
.btn-tour:hover { background: var(--gold); }

/* ============================================================
   TOUR TABS
   ============================================================ */
.tours-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--sand);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(92,45,14,0.08);
}
.tab-btn i { font-size: 13px; }
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,135,10,0.2);
}
.tab-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(212,135,10,0.4);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #2E1200 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1548613053-22087dd8edb8?w=1400&q=40') center/cover no-repeat;
  opacity: 0.08;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(212,135,10,0.15);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px; height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(212,135,10,0.4);
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

/* ============================================================
   COMPARISON TABLE (why-us.html)
   ============================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
  min-width: 600px;
}

.comparison-table thead {
  background: var(--brown-dark);
  color: var(--white);
}

.comparison-table th {
  padding: 18px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.comparison-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #f0e8da;
  color: var(--text-light);
  line-height: 1.6;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}

.comparison-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fdfaf6;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--brown-dark);
}

.highlight-cell {
  color: var(--text);
  font-weight: 500;
}

.highlight-cell i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 16px;
}

/* ============================================================
   WHAT TO EXPECT (why-us.html)
   ============================================================ */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: expect-counter;
}

.expect-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border: 1px solid #f0e8da;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.expect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92,45,14,0.15);
  border-color: var(--gold);
}

.expect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.expect-card:hover::before {
  transform: scaleX(1);
}

.expect-num {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: var(--transition);
}

.expect-card:hover .expect-num {
  background: var(--gold);
  color: var(--white);
}

.expect-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.expect-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .expect-grid { grid-template-columns: 1fr; }
  .comparison-table th,
  .comparison-table td { padding: 14px 16px; font-size: 13px; }
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
}
.dest-card.large {
  grid-column: span 2;
  height: 300px;
}
.dest-card img { transition: transform 0.5s; }
.dest-card:hover img { transform: scale(1.07); }

.dest-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(30,12,0,0.85) 0%, transparent 100%);
  color: var(--white);
  transition: var(--transition);
}
.dest-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-bottom: 2px;
}
.dest-overlay p { font-size: 12px; color: rgba(255,255,255,0.75); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--brown-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.g-tall  { grid-row: span 2; }
.gallery-item.g-wide  { grid-column: span 2; }

.gallery-item img { height: 100%; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(92,45,14,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 24px;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  width: auto;
  height: auto;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-slider-wrap { overflow: hidden; }
.testi-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}

.testi-card {
  min-width: calc((100% - 56px) / 3);
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  border-top: 4px solid var(--gold);
}

.testi-stars { color: var(--gold-light); font-size: 16px; margin-bottom: 14px; display: flex; gap: 3px; }

.testi-text {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; color: var(--brown-dark); }
.testi-author span   { font-size: 13px; color: var(--text-light); }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--gold); color: var(--white); }

.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

.rating-summary {
  text-align: center;
  margin-top: 48px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.rating-big {
  font-size: 52px;
  font-weight: 900;
  color: var(--brown-dark);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.rating-stars { color: var(--gold-light); font-size: 20px; margin: 6px 0 8px; display: flex; justify-content: center; gap: 4px; }
.rating-summary p { font-size: 13px; color: var(--text-light); }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.rating-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #2E1200 100%);
  color: var(--white);
  text-align: center;
}

.rating-summary-large {
  max-width: 600px;
  margin: 0 auto;
}

.rating-summary-large .rating-big {
  font-size: 80px;
  color: var(--gold-light);
  text-shadow: 0 4px 20px rgba(212,135,10,0.4);
}

.rating-summary-large .rating-stars {
  font-size: 28px;
  margin: 10px 0 14px;
  justify-content: center;
}

.rating-summary-large > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.rating-platforms {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rating-platforms span,
.rating-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.rating-platform-link:hover {
  background: var(--gold);
  color: var(--white);
}

.more-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.review-box-stars {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.review-box > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.review-box-author strong {
  display: block;
  font-size: 15px;
  color: var(--brown-dark);
}
.review-box-author span {
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .more-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .more-reviews-grid { grid-template-columns: 1fr; }
  .rating-summary-large .rating-big { font-size: 60px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1489493887464-892be6d1daae?w=1600&q=80') center/cover fixed no-repeat;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,45,14,0.88), rgba(30,12,0,0.82));
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   QUICK CONTACT (contact.html cards)
   ============================================================ */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #f0e8da;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92,45,14,0.15);
  border-color: var(--gold);
}

.qc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--gold);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.quick-contact-card:hover .qc-icon {
  background: var(--gold);
  color: var(--white);
}

.quick-contact-card h3 {
  font-size: 19px;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.quick-contact-card > p {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 18px;
}

.qc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.qc-link i { font-size: 12px; }

.quick-contact-card:hover .qc-link {
  color: var(--brown);
  gap: 12px;
}

@media (max-width: 768px) {
  .quick-contact-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}

.contact-info .section-label { display: block; margin-bottom: 10px; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--brown-dark);
  margin-bottom: 18px;
}
.contact-info > p { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; color: var(--brown-dark); margin-bottom: 2px; }
.contact-item span   { font-size: 14px; color: var(--text-light); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.form-group:not(.form-row .form-group) { margin-bottom: 18px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e0d5c6;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fdfaf6;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,135,10,0.12);
}
.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 14px;
}
.btn-submit:hover { background: var(--brown); }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success i { font-size: 60px; color: #25D366; margin-bottom: 20px; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--brown-dark); margin-bottom: 12px; }
.form-success p  { font-size: 15px; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); }

.footer-bar {
  background: var(--brown-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bar-inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-bar-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.footer-bar-inner a:hover { color: var(--gold-light); }
.footer-bar-inner a i { color: var(--gold-light); font-size: 15px; }

.footer-top {
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo img { height: 70px; width: auto; object-fit: contain; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand > p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; color: rgba(255,255,255,0.6); }

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-mini span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-mini span i { color: var(--gold-light); width: 18px; }

.footer-social-band {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-social-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-social-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.footer-social-large {
  display: flex;
  gap: 14px;
}

.footer-social-large a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-large a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold-light); }
.footer-bottom i { color: #e74c3c; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,135,10,0.4);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--brown); transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  z-index: 500;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); animation: none; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 80px; }
  .about-images   { max-width: 580px; margin: 0 auto; }
  .tours-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .dest-grid      { grid-template-columns: repeat(2, 1fr); }
  .dest-card.large { grid-column: span 2; }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }
  .tab-btn        { font-size: 14px; padding: 11px 22px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Tabs */
  .tours-tabs { gap: 8px; margin-bottom: 36px; }
  .tab-btn    { font-size: 13px; padding: 10px 18px; }

  /* Header */
  #nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 999;
  }
  #nav.open { right: 0; box-shadow: -8px 0 30px rgba(0,0,0,0.4); }
  #nav ul { flex-direction: column; align-items: center; gap: 6px; }
  #nav ul li a { font-size: 16px; padding: 12px 24px; }
  .btn-book { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content h1 { font-size: 36px; }
  .hero-arrows { display: none; }

  /* About */
  .about-img-sec  { display: none; }
  .about-features { grid-template-columns: 1fr; }

  /* Tours */
  .tours-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Destinations */
  .dest-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.g-tall  { grid-row: span 1; }
  .gallery-item.g-wide  { grid-column: span 2; }

  /* Testimonials */
  .testi-card { min-width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand { grid-column: span 2; }

  /* Highlights */
  .highlights-inner { justify-content: center; gap: 20px 40px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.large { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-info { text-align: center; }
  .contact-item { flex-direction: column; align-items: center; text-align: center; }
  .social-links { justify-content: center; }
}
