/* ============================================================
   ADELAID TOUR — BRAND THEME (self-contained)
   Safari editorial palette: ivory / umber / olive / clay / gold
   Fonts: Fraunces (display) + Karla (body)
   This file now includes ALL structural CSS for the top bar,
   navbar, mega menu, and mobile menu — you do NOT need to also
   link css/style.css or css/responsive.css for these components.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --ivory: #F8F4EC;
  --ivory-deep: #F1EADA;
  --umber: #2A231C;
  --umber-soft: #4A4038;
  --clay: #A8492E;
  --olive: #495B3D;
  --olive-deep: #3B4A31;
  --gold: #D6A23C;
  --gold-light: #E8B455;
  --line: #DCD3C2;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Karla', sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--umber);
  background: var(--ivory);
  margin: 0;
}

h1, h2, h3, h4, .section-title, .brand-name {
  font-family: var(--font-display);
  color: var(--umber);
  letter-spacing: -0.01em;
}

a { color: inherit; }

/* ============================================================
   GLOBAL IMAGE SAFEGUARD
   Prevents any image from ever rendering at its raw native size.
   Every component below sets its own explicit height where needed;
   this is just the safety net so nothing ever "blows up".
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= TOP BAR (structural + brand color) ================= */
.top-bar {
  position: relative;
  color: var(--ivory);
  font-size: 12px;
  padding: 8px 8% 15px 8%;
  z-index: 1001;
  background-color: var(--olive-deep);
}

.top-bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--olive-deep);
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 98% 88%, 95% 85%, 92% 90%, 88% 85%, 85% 88%, 80% 85%, 75% 90%, 70% 85%, 65% 88%, 60% 85%, 55% 90%, 50% 85%, 45% 88%, 40% 85%, 35% 90%, 30% 85%, 25% 88%, 20% 85%, 15% 90%, 10% 85%, 5% 88%, 0% 85%);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-family: var(--font-body);
}

.top-center { color: var(--gold-light); font-weight: 700; }

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-right a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
}
.top-right a:hover { opacity: 1; color: var(--gold); }

.top-dropdown { position: relative; display: inline-block; }
.top-dropbtn { color: var(--ivory); text-decoration: none; font-size: 12px; cursor: pointer; }
.top-dropdown:hover .top-dropbtn { opacity: 0.85; }

.top-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 30px;
  background-color: var(--white);
  min-width: 190px;
  box-shadow: 0px 12px 28px rgba(42,35,28,0.18);
  z-index: 9999;
  border-radius: 6px;
  margin-top: 5px;
  border: 1px solid var(--line);
}
.top-dropdown-content a {
  color: var(--umber-soft) !important;
  padding: 10px 15px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.top-dropdown-content a:last-child { border-bottom: none; }
.top-dropdown-content a:hover {
  background-color: var(--ivory-deep);
  color: var(--clay) !important;
}
.top-dropdown:hover .top-dropdown-content { display: block; }

/* ================= NAVBAR (structural + brand color) ================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: visible !important;
  background: var(--ivory);
  box-shadow: 0 2px 5px rgba(42,35,28,0.08);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%;
}

.logo, .logo a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--umber);
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: static;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  box-shadow: none;
}
.nav-links a {
  color: var(--umber);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 12px;
}
.nav-links a:hover { color: var(--clay); }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.btn-quote {
  background: var(--clay);
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--ivory) !important;
  font-weight: 700;
  font-size: 14px;
}
.btn-quote:hover { background: #8f3d26; }

/* ================= DROPDOWN (Discover Tanzania, etc.) ================= */
.dropdown { position: relative; display: inline-block; }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 240px;
  box-shadow: 0px 15px 35px rgba(42,35,28,0.14);
  z-index: 1000;
  top: 100%;
  left: 0;
  border-radius: 0 0 6px 6px;
  padding: 15px 0;
  border-top: 3px solid var(--olive);
  animation: fadeIn 0.2s ease-in-out;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dropdown-content a {
  color: var(--umber-soft);
  padding: 10px 25px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  border-bottom: 1px solid var(--ivory-deep);
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background-color: var(--ivory-deep);
  color: var(--olive);
  padding-left: 30px;
}
.dropdown:hover .dropdown-content { display: block !important; visibility: visible; opacity: 1; }
.dropdown:hover .dropbtn { color: var(--olive) !important; }

.dropbtn { display: flex; align-items: center; gap: 5px; color: var(--umber); text-decoration: none; font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 12px; }
.dropbtn:hover { color: var(--clay); }

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

/* ================= MEGA MENU (Itineraries) ================= */
.mega-menu {
  margin-top: 20px;
  width: 90vw;
  max-width: 1100px;
  left: 50%;
  transform: translateX(-30%);
  display: none;
  flex-direction: row;
  padding: 0;
  border-top: 4px solid var(--olive);
}
.dropdown:hover .mega-menu { display: flex !important; }
.dropdown-content.mega-menu {
  display: none;
  flex-direction: row;
  align-items: stretch;
  width: 90vw;
  max-width: 1100px;
  padding: 0;
  overflow: hidden;
  border-radius: 6px;
}

.mega-left { flex: 3; padding: 30px; background: var(--white); }
.mega-header { margin-bottom: 20px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.mega-header a { font-weight: 700; color: var(--olive) !important; font-size: 13px; text-decoration: none; }

/* THE FIX: explicit, contained image sizing inside the itinerary grid */
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.itinerary-grid .grid-item1 {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.itinerary-grid .grid-item1 img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  transition: 0.3s;
  display: block;
}
.itinerary-grid .grid-item1 span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 6px;
  color: var(--umber);
  text-transform: uppercase;
}
.itinerary-grid .grid-item1:hover img { filter: brightness(0.85); }

.mega-right {
  flex: 1;
  background: var(--olive);
  color: var(--ivory);
  padding: 30px;
  text-align: left;
}
.mega-right h4 { font-size: 16px; margin-bottom: 15px; color: var(--ivory); font-family: var(--font-display); }
.mega-right p { font-size: 13px; line-height: 1.5; margin-bottom: 18px; color: #E3E6DE; }

/* Explicit sizing for the small promo image in the mega menu */
.promo-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.btn-mega-quote {
  display: inline-block;
  background: var(--gold);
  color: var(--umber);
  text-align: center;
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  border-radius: 3px;
  margin-top: 10px;
}
.btn-mega-quote:hover { background: var(--gold-light); }
.small-note { font-size: 11px !important; margin-top: 12px; opacity: 0.85; color: #E3E6DE; }

/* ================= MOBILE MENU TOGGLE ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--umber);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: var(--ivory) !important;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(42,35,28,0.15);
    z-index: 9999 !important;
    align-items: flex-start;
  }
  .nav-links.active { right: 0 !important; }
  .nav-links a { margin: 15px 0; display: block; font-size: 16px; }
  .hero-content p[style] { width: 100% !important; }
}

@media (max-width: 992px) {
  .dropdown-content { position: static; display: none; box-shadow: none; padding-left: 20px; }
  .dropdown:hover .dropdown-content { display: block; }
  .dropdown-content.mega-menu { flex-direction: column; width: 100%; position: static; }
  .mega-left, .mega-right { width: 100% !important; padding: 10px 0; }
  .itinerary-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .itinerary-grid .grid-item1 img { height: 90px; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(42,35,28,0.55), rgba(42,35,28,0.75)),
              url('assets/images/destinations/serengeti.jpg') center/cover;
  color: var(--ivory);
}
.hero .overlay { background: transparent; }
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ivory);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
}
.hero-content p {
  color: #E9E4D8;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}
.btn-main {
  display: inline-block;
  background: var(--gold);
  color: var(--umber);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.15s ease;
}
.btn-main:hover { background: var(--gold-light); }
.button-hero a[style*="background-color: red"] {
  background-color: var(--clay) !important;
  color: var(--ivory) !important;
}

.hero-form-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(42,35,28,0.25);
  padding: 28px;
}
.form-header h3 { font-family: var(--font-display); font-size: 16px; color: var(--umber); }
.form-header img.avatar-small { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.hero-form-card label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--umber-soft);
}
.hero-form-card select,
.hero-form-card input {
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--umber);
  font-family: var(--font-body);
}
.btn-form {
  background: var(--olive);
  color: var(--ivory);
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 4px;
  padding: 14px;
  width: 100%;
}
.btn-form:hover { background: var(--olive-deep); }
.form-footer { color: var(--umber-soft); font-size: 12px; }

/* ================= TRUST STRIP ================= */
.trust-strip {
  background: var(--ivory-deep);
  color: var(--umber-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ================= SECTION HEADERS (shared) ================= */
.section-header h2, .section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--umber);
}
.section-header p, .section-subtitle {
  color: var(--umber-soft);
  font-family: var(--font-body);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ivory-deep);
  border: 1px solid var(--gold);
  color: var(--olive);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ================= DESTINATIONS ================= */
.destinations { background: var(--ivory); }
.destination-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.destination-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(42,35,28,0.14); }
.destination-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.destination-card:hover img { transform: scale(1.04); }
.destination-info h3 { font-family: var(--font-display); color: var(--umber); }
.destination-info p { color: var(--umber-soft); font-size: 14.5px; }
.btn-card {
  display: inline-block;
  color: var(--olive);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.btn-card:hover { color: var(--clay); }

/* ================= HOW IT WORKS ================= */
.how-it-works { background: var(--ivory-deep); }
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(42,35,28,0.10); }
.step-card h3 { font-family: var(--font-display); color: var(--olive); font-size: 1.15rem; }
.step-card p { color: var(--umber-soft); }

/* ================= TOUR GRID ================= */
.tour-guide { background: var(--ivory); }
.tour-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease;
}
.tour-card:hover { transform: scale(1.02); }
.tour-card .price-badge {
  background: var(--gold);
  color: var(--umber);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 3px;
}
.tour-card .card-overlay {
  background: linear-gradient(180deg, transparent, rgba(42,35,28,0.9));
  color: var(--ivory);
}
.tour-card .card-overlay h3 { font-family: var(--font-display); color: var(--ivory); font-size: 1.1rem; }
.tour-card .card-overlay p { color: #E9E4D8; font-size: 13.5px; }

/* ================= BOOKING SECTION ================= */
.booking-section { background: var(--ivory-deep); }
.text-side h3 { font-family: var(--font-display); color: var(--umber); }
.text-side h4 { font-family: var(--font-body); font-weight: 700; color: var(--clay); font-size: 14px; letter-spacing: 0.04em; }
.text-side p { color: var(--umber-soft); }
.btn-primary {
  display: inline-block;
  background: var(--olive);
  color: var(--ivory);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
}
.btn-primary:hover { background: var(--olive-deep); }
.circle-image-container {
  border: 6px solid var(--white);
  box-shadow: 0 12px 30px rgba(42,35,28,0.18);
  border-radius: 50%;
  overflow: hidden;
  width: 320px;
  height: 320px;
}
.circle-image-container img { width: 100%; height: 100%; object-fit: cover; }

/* ================= REVIEWS ================= */
.reviews-section { background: var(--ivory); }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 26px;
}
.review-text { font-family: var(--font-display); font-style: italic; color: var(--umber); font-size: 15.5px; line-height: 1.6; }
.reviewer-info strong { color: var(--umber); }
.reviewer-info span { color: var(--umber-soft); font-size: 12.5px; }
.trust-badge { color: var(--olive); font-weight: 700; font-size: 12px; }

/* ================= WHY CHOOSE US ================= */
.why-choose-section { background: var(--ivory-deep); }
.why-intro { color: var(--umber-soft); }
.feature-item { color: var(--umber-soft); }
.feature-item .check { color: var(--olive); font-weight: 700; }
.btn-proposal {
  display: inline-block;
  background: var(--gold);
  color: var(--umber);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
}
.btn-proposal:hover { background: var(--gold-light); }
.btn-itineraries {
  display: inline-block;
  background: transparent;
  color: var(--olive);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 24px;
  border: 2px solid var(--olive);
  border-radius: 3px;
}
.btn-itineraries:hover { background: var(--olive); color: var(--ivory); }

/* ================= FROM OUR BLOG (homepage) ================= */
.blog-home-section { background: var(--ivory); padding: 80px 6vw; }
.blog-home-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.blog-home-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--umber);
  margin: 0 0 10px;
}
.blog-home-header p { color: var(--umber-soft); }

.blog-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(42,35,28,0.14); }
.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover img { transform: scale(1.04); }
.blog-card .blog-info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.blog-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--umber); margin: 0 0 8px; line-height: 1.3; }
.blog-card p { color: var(--umber-soft); font-size: 13.5px; line-height: 1.5; margin: 0 0 14px; flex: 1; }
.blog-card .btn-card { align-self: flex-start; }
.blog-home-footer { text-align: center; margin-top: 40px; }

@media (max-width: 1000px) { .blog-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid-home { grid-template-columns: 1fr; } }

/* ================= GET INSPIRED ================= */
.get-inspired { background: var(--ivory); }
.inspired-header h3 { color: var(--clay); font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; }
.inspired-header h2 { font-family: var(--font-display); color: var(--umber); }
.inspired-header p { color: var(--umber-soft); }

.inspired-card.bg-olive { background: var(--olive); color: var(--ivory); }
.inspired-card.bg-cream { background: var(--ivory-deep); }
.inspired-card.bg-yellow { background: #F3E3C4; }

.inspired-card h4 { font-family: var(--font-display); font-size: 1.2rem; }
.inspired-card.bg-olive h4 { color: var(--ivory); }
.inspired-card.bg-cream h4, .inspired-card.bg-yellow h4 { color: var(--umber); }
.inspired-card p { color: var(--umber-soft); font-size: 14.5px; }
.inspired-card.bg-olive p { color: #E3E6DE; }

.card-image {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.card-image.large-img { min-height: 320px; }

.read-more-btn { color: var(--clay); font-weight: 700; font-size: 13px; text-decoration: none; }
.inspired-card.bg-olive .read-more-btn { color: var(--gold); }
.read-more-btn:hover { text-decoration: underline; }

.filter-tabs button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--umber-soft);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 20px;
}
.filter-tabs button:hover, .filter-tabs button.active { background: var(--olive); color: var(--ivory); border-color: var(--olive); }

/* ================= CTA GRID ================= */
.cta-box.bg-green { background: var(--olive); color: var(--ivory); }
.cta-box.bg-green h3 { color: var(--ivory); font-family: var(--font-display); }
.cta-box.bg-green .subtitle { color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: 0.05em; }
.btn-yellow {
  display: inline-block;
  background: var(--gold);
  color: var(--umber);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
  margin-top: 14px;
}
.btn-yellow:hover { background: var(--gold-light); }

.cta-box.image-box {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.cta-box.bg-cream { background: var(--ivory-deep); }
.expert-content h4 { font-family: var(--font-display); color: var(--umber); }
.expert-content p { color: var(--umber-soft); }
.profile-circle {
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(42,35,28,0.15);
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
}
.profile-circle img { width: 100%; height: 100%; object-fit: cover; }
.phone-link { color: var(--umber); font-weight: 700; text-decoration: none; font-size: 14px; }
.phone-link span { color: var(--olive); }
.other-countries { color: var(--clay); font-weight: 700; font-size: 13px; text-decoration: underline; }

/* ================= FOOTER ================= */
.site-footer { background: var(--umber); color: #D8D2C6; }
.footer-top-banner { background: var(--olive-deep); color: var(--ivory); font-weight: 700; font-size: 13px; }
.footer-top-banner .rating { color: var(--gold); }

.brand-name { font-family: var(--font-display); color: var(--ivory); font-size: 22px; }
.brand-name span { color: var(--gold); }
.footer-brand .phone-number, .footer-brand .location, .footer-brand .email { color: #D8D2C6; font-size: 14px; }

.footer-links h4 { color: var(--gold); font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; }
.footer-links a { color: #D8D2C6; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }

.footer-newsletter h4 { color: var(--gold); font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; }
.footer-newsletter p { color: #D8D2C6; font-size: 13.5px; }
.newsletter-form input { background: #3A322A; border: 1px solid #5A4F42; color: var(--ivory); border-radius: 4px; }
.newsletter-form input::placeholder { color: #A99E8E; }
.newsletter-form button { background: var(--gold); color: var(--umber); font-weight: 700; border: none; border-radius: 4px; }
.newsletter-form button:hover { background: var(--gold-light); }

.footer-social h4 { color: var(--gold); font-size: 12px; letter-spacing: 0.05em; }
.social-icons img { width: 20px; height: 20px; filter: invert(1) opacity(0.8); }
.social-icons a:hover img { filter: invert(1) opacity(1); }

.footer-bottom { color: #A99E8E; font-size: 12.5px; border-top: 1px solid #4A4038; }

/* ============================================================
   PAGE LAYOUT / STRUCTURE
   Grid, flex, spacing and positioning for every homepage section.
   This is what was missing — without it, sections had color but
   no actual arrangement, so everything stacked incorrectly.
   ============================================================ */

/* ---- General section rhythm ---- */
.destinations, .how-it-works, .tour-guide, .booking-section,
.reviews-section, .why-choose-section, .blog-home-section,
.get-inspired, .cta-grid-section {
  padding: 76px 6vw;
}
.destinations-grid, .steps-grid, .tour-grid, .reviews-container,
.features-grid, .inspired-grid, .cta-container {
  max-width: 1240px;
  margin: 0 auto;
}
.section-header, .reviews-header, .inspired-header, .why-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.tour-guide .section-title, .tour-guide .section-subtitle {
  text-align: center;
}
.tour-guide .section-subtitle { margin-bottom: 44px; }

/* ---- HERO ---- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  min-height: 620px;
  padding: 110px 6vw 70px;
  position: relative;
}
.hero-content {
  flex: 1 1 480px;
  max-width: 580px;
  position: relative;
  z-index: 2;
}
.hero-content h1 { margin: 0 0 18px; }
.hero-content p { margin: 0 0 10px; max-width: 52ch; }
.button-hero {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-form-card {
  flex: 0 1 380px;
  position: relative;
  z-index: 2;
}
.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-form-card form { display: flex; flex-direction: column; gap: 14px; }
.input-row { display: flex; gap: 14px; }
.input-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hero-form-card select, .hero-form-card input {
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
}
.form-footer { margin-top: 12px; text-align: center; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 20px 6vw;
  text-align: center;
}

/* ---- DESTINATIONS ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.destination-info { padding: 18px 20px 22px; }
.destination-info h3 { margin: 0 0 6px; }
.destination-info p { margin: 0 0 12px; }

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step-card h3 { margin: 0 0 10px; }
.step-card p { margin: 0; }

/* ---- TOUR GRID ---- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tour-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 18px;
}
.tour-card .card-overlay {
  width: calc(100% + 36px);
  margin: 0 -18px -18px;
  padding: 40px 18px 18px;
  margin-top: auto;
}
.tour-card .card-overlay h3 { margin: 0 0 6px; }
.tour-card .card-overlay p { margin: 0; }

/* ---- BOOKING SECTION ---- */
.booking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}
.text-side { flex: 1 1 440px; }
.text-side h3 { margin: 0 0 16px; }
.text-side h4 { margin: 24px 0 10px; }
.image-side { flex: 0 1 340px; display: flex; justify-content: center; }
.circle-image-container { flex-shrink: 0; }

/* ---- REVIEWS ---- */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card .stars { margin-bottom: 12px; }
.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 14px 0 10px;
}

/* ---- WHY CHOOSE US ---- */
.why-intro {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feature-item p { margin: 0; }
.why-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- GET INSPIRED ---- */
.inspired-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.inspired-card {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
}
.inspired-card.flex-reverse { flex-direction: row-reverse; }
.inspired-card .card-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inspired-card .card-content h4 { margin: 0 0 12px; }
.inspired-card .card-content p { margin: 0 0 16px; }
.inspired-card .card-image { flex: 1; min-width: 40%; }
.card-ratings { margin-bottom: 12px; }
.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ---- CTA GRID ---- */
.cta-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cta-box {
  border-radius: 10px;
  padding: 34px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-box.center-content { align-items: flex-start; }
.expert-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.phone-buttons { display: flex; flex-direction: column; gap: 8px; }

/* ---- FOOTER ---- */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 60px 6vw 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand .phone-contact { display: flex; align-items: center; gap: 6px; margin: 10px 0 4px; }
.footer-links ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}
.newsletter-form input {
  padding: 11px 14px;
  font-size: 13px;
}
.newsletter-form button {
  padding: 11px 14px;
  font-size: 13px;
  cursor: pointer;
}
.social-icons { display: flex; gap: 14px; margin-top: 10px; }
.footer-top-banner .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 6vw;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-bottom { text-align: center; padding: 18px 6vw; }

/* ============================================================
   RESPONSIVE — collapse all grids gracefully on smaller screens
   ============================================================ */
@media (max-width: 1100px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-container { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-container { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero { padding: 90px 6vw 50px; min-height: auto; }
  .booking-content { flex-direction: column; }
  .inspired-card, .inspired-card.flex-reverse { flex-direction: column; }
  .inspired-card .card-image { min-height: 200px; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .input-row { flex-direction: column; }
  .trust-strip { gap: 16px; }
}