/* ============================================================
   DESTINATION DRIVERS — Main Stylesheet
   Matches live site: Blue #046bd2, Green #1f875a, Lato font
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
  --blue:        #046bd2;
  --blue-dark:   #0358b0;
  --blue-light:  #1a7fe0;
  --green:       #1f875a;
  --green-dark:  #186b47;
  --white:       #ffffff;
  --off-white:   #f4f8ff;
  --text:        #334155;
  --text-dark:   #111111;
  --text-light:  #555e6e;
  --border:      #dde4ef;
  --max-width:   1200px;
  --radius:      6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }
strong { color: var(--text-dark); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #0d1a30;
  color: var(--white);
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 16px;
}
.topbar span { margin: 0 10px; opacity: 0.95; }

/* ============================================================
   HEADER — blue bar with logo + CTA buttons
   ============================================================ */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-wrap { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.logo-name { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.1; }
.logo-sub { font-size: 10.5px; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; text-align: center; }

.header-left { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white); }
.header-stars { color: #fbbf24; letter-spacing: 1px; }

.header-right { display: flex; gap: 10px; align-items: center; }
.btn-header {
  background: #c8881a;
  color: #0d1a30;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,1.0);
}
.btn-header:hover { background: #a86e14; color: #0d1a30; }

/* Mobile label switching — desktop shows full text, mobile shows short */
.btn-header .btn-label-mobile { display: none; }
.btn-header .btn-label-desktop { display: inline; }
@media (max-width: 700px) {
  .btn-header .btn-label-mobile  { display: inline; }
  .btn-header .btn-label-desktop { display: none; }
}

/* ============================================================
   NAV BAR
   ============================================================ */
.navbar {
  background: #046bd2;
  border-bottom: none;
  position: sticky;
  top: 76px;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  gap: 4px;
}
.navbar-inner a {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.navbar-inner a:hover { color: var(--white); background: rgba(255,255,255,0.15); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; color: rgba(255,255,255,0.7); }
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 230px;
  z-index: 1000;
  padding-top: 4px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: none;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--blue); }

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-nav {
  display: none;
  background: var(--blue-dark);
  flex-direction: column;
  padding: 16px;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-size: 15px; font-weight: 700; padding: 10px 14px; border-radius: 4px; display: block; text-transform: uppercase; letter-spacing: 0.05em; }
.mobile-nav a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.mobile-submenu a { font-size: 13px !important; font-weight: 400 !important; text-transform: none !important; letter-spacing: 0 !important; color: rgba(255,255,255,0.8) !important; padding-left: 28px !important; }
.mobile-nav-book { background: var(--green) !important; text-align: center; margin-bottom: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  text-align: center;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(31,135,90,0.3); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--green); font-weight: 700; }
.btn-white:hover { background: #eaf5f0; color: var(--green-dark); }
.btn-lg { font-size: 19px; padding: 17px 34px; }
.btn-sm { font-size: 14px; padding: 10px 20px; }

/* ============================================================
   HERO — full-bleed photo with blue overlay
   ============================================================ */
.hero {
  position: relative;
  background: #111;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: visible;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.hero-text { color: var(--white); }
.hero-text .eyebrow { font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 8px; }
.hero-text h1 { font-size: clamp(26px, 4vw, 46px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.hero-text p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 28px; line-height: 1.7; }
.hero-text .star-row { font-size: 22px; color: #fbbf24; letter-spacing: 2px; margin-bottom: 12px; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-photo {
  width: 100%;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 3px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-callout {
  background: rgba(3,88,176,0.8);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  text-align: center;
}
.hero-callout h2 { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.hero-callout .sub { font-size: 15px; color: rgba(255,255,255,0.88); margin-bottom: 14px; }
.hero-callout .big-phone { font-size: 24px; font-weight: 900; color: var(--white); display: block; margin-bottom: 18px; }
.hero-callout .big-phone:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
section { padding: 64px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-bg { background: var(--off-white); }

.section-heading {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-subheading { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 18px; }
.section-intro { font-size: 16.5px; color: var(--text); line-height: 1.8; margin-bottom: 32px; }
.text-center { text-align: center; }
.text-center .section-intro { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ============================================================
   REGION ROWS — alternating text/image layout
   ============================================================ */
.region-rows { display: flex; flex-direction: column; gap: 0; }
.region-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.region-row:last-child { border-bottom: none; }
.region-row.flip .region-img { order: -1; }

.region-text h3 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.region-text p { font-size: 15.5px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.region-img img { width: 100%; border-radius: 8px; aspect-ratio: 3/2; object-fit: cover; }
.region-img-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: 16px; line-height: 1.55; }
.checklist li::before { content: '✅'; flex-shrink: 0; font-size: 14px; margin-top: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0 16px; }
.pricing-badge {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.pricing-badge .rate { font-size: 28px; font-weight: 900; display: block; margin-bottom: 2px; }
.pricing-badge .pax { font-size: 12px; opacity: 0.82; font-weight: 400; }
.pricing-note { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   REGION PAGE HERO
   ============================================================ */
.region-hero {
  background: var(--blue);
  color: var(--white);
  padding: 56px 24px;
}
.region-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.region-hero h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.region-hero .review-line { font-size: 14px; color: rgba(255,255,255,0.88); margin-bottom: 5px; }
.region-hero .review-line strong { color: var(--white); }
.region-hero .btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.region-hero-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  aspect-ratio: 4/3;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.region-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Destination page hero image — fixed height on all dest pages */
.dest-hero-grid > div:last-child img {
  width: 100% !important;
  height: 340px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
  display: block !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; gap: 4px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--green); content: '−'; }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 15.5px; color: var(--text); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--blue); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--blue); }
.testimonials-section .section-heading { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
.t-card { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 24px; }
.t-stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.t-text { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.t-author { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: #0d1a30; padding: 52px 24px; text-align: center; }
.cta-strip h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; color: var(--white); margin-bottom: 10px; }
.cta-strip p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.cta-strip .btn-white { background: #c8881a; color: #0d1a30; }
.cta-strip .btn-white:hover { background: #a86e14; color: #0d1a30; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 36px; }
.blog-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.blog-card-thumb {
  width: 100%;
  height: 185px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: rgba(255,255,255,0.35);
  overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-tag { display: inline-block; background: #e8f1fb; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 16.5px; font-weight: 800; color: var(--text-dark); line-height: 1.35; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--text-dark); }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; }

/* Blog post page */
.blog-post-wrap { padding: 52px 24px; }
.blog-post { max-width: 780px; margin: 0 auto; }
.blog-post h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; color: var(--text-dark); line-height: 1.2; margin-bottom: 14px; }
.blog-meta { font-size: 13px; color: var(--text-light); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.blog-content h2 { font-size: 23px; font-weight: 800; color: var(--text-dark); margin: 34px 0 12px; }
.blog-content h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin: 22px 0 8px; }
.blog-content p { font-size: 16.5px; line-height: 1.85; color: var(--text); margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin: 0 0 16px 24px; }
.blog-content li { font-size: 16px; line-height: 1.7; margin-bottom: 5px; }
.blog-content img { border-radius: 8px; margin: 22px 0; }
.blog-content hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.blog-content strong { color: var(--text-dark); }
.blog-content a { color: var(--blue); }
.blog-cta-box { background: var(--blue); color: var(--white); border-radius: 10px; padding: 30px; text-align: center; margin: 32px 0; }
.blog-cta-box h3 { font-size: 21px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.blog-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 15px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-box { background: var(--off-white); border-radius: 10px; padding: 34px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.c-icon { font-size: 21px; flex-shrink: 0; margin-top: 1px; }
.c-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); margin-bottom: 2px; font-weight: 700; }
.c-value { font-size: 17px; font-weight: 700; color: var(--text-dark); }
.c-value a { color: var(--blue); }
.region-phones { margin-top: 24px; }
.rp-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.rp-item h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.rp-item a { font-size: 14px; color: var(--blue); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--off-white); padding: 10px 24px; font-size: 13px; color: var(--text-light); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0d1a30; color: rgba(255,255,255,0.62); padding: 52px 24px 26px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand { padding-top: 0; }
.footer-brand img { margin-bottom: 8px; }
.footer-brand .logo-name { color: var(--white); font-size: 18px; margin-bottom: 6px; display: block; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.45); margin-bottom: 14px; display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-brand p { font-size: 14px; line-height: 1.5; max-width: 250px; }
.footer-phone { color: var(--white); font-size: 19px; font-weight: 900; display: block; margin: 14px 0 4px; }
.footer-email { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-col h4 { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.58); font-size: 14px; margin-bottom: 4px; }
.footer-col a:hover { color: rgba(255,255,255,0.92); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* Scroll to top */
.scroll-top { position: fixed; bottom: 22px; right: 22px; width: 40px; height: 40px; background: var(--blue); color: var(--white); border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; border: none; box-shadow: 0 3px 10px rgba(0,0,0,0.2); z-index: 900; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--blue-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .region-hero-inner { grid-template-columns: 1fr; }
  .region-hero-img { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .region-row { grid-template-columns: 1fr; gap: 20px; }
  .region-row.flip .region-img { order: 0; }
}

@media (max-width: 800px) {
  .header-left { display: none; }
  header .logo-wrap img { max-height: 28px; width: auto; }
  .header-right { gap: 8px; }
  .btn-header { font-size: 13px; padding: 10px 16px; }
}

@media (max-width: 700px) {
  .hamburger { display: flex; }
  .navbar { display: none; }
  section { padding: 40px 16px; }
  .hero { min-height: 280px; }
  .hero-inner { padding: 36px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .pricing-row { flex-direction: column; }
  .header-inner { padding: 0 14px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { text-align: center; }
  .topbar span { font-size: 12px; margin: 0 5px; }
}

@media (max-width: 500px) {
  header .logo-wrap img { max-height: 22px; width: auto; }
  .header-right { gap: 6px; }
  .btn-header { font-size: 12px; padding: 9px 12px; }
}

@media (max-width: 420px) {
  .logo-name { font-size: 16px; }
}
header .logo-sub { display: none; }
@media (max-width: 900px) { .region-grid-3 { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 600px) { .region-grid-3 { grid-template-columns: 1fr !important; } }

/* Global readability improvements — larger font, tighter line spacing */
p {
  font-size: 17px;
  line-height: 1.65;
}

section p {
  font-size: 17px;
  line-height: 1.65;
}

.footer-col a {
  font-size: 15px;
  line-height: 1.4;
}

footer p {
  font-size: 15px;
  line-height: 1.5;
}

.blog-card-body p {
  font-size: 15px;
  line-height: 1.55;
}

.pricing-note {
  font-size: 15px;
  line-height: 1.55;
}

.region-text p {
  font-size: 17px;
  line-height: 1.65;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.65;
}

.t-text {
  font-size: 17px;
  line-height: 1.65;
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   ============================================================ */
@media (max-width: 700px) {

  /* Homepage destination booking grid — 1 column */
  .dest-book-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Homepage reviews grid — 1 column */
  .review-grid-home {
    grid-template-columns: 1fr !important;
  }

  /* Homepage 100k section — stack columns */
  .home-2col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Destination page hero 2-col grid */
  .dest-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 36px 20px !important;
    text-align: center !important;
  }
  .dest-hero-grid > div:first-child .btn-row {
    justify-content: center !important;
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .dest-hero-grid > div:first-child .btn-row .btn {
    width: auto !important;
    max-width: none !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
  .dest-hero-grid > div:last-child img {
    width: 100% !important;
    height: 220px !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 10px !important;
  }

  /* Destination page "Your Car" and "Safe Local" inline 2-col sections */
  .dest-split-2col {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .dest-split-2col > div:first-child {
    margin-bottom: 20px;
  }

  /* Feature rows — stack image and text vertically on all pages */
  .feature-row,
  .region-row,
  .value-row,
  .info-row,
  .about-row,
  .two-col {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  /* Images in feature rows — full width, capped height */
  .feature-row img,
  .region-row img,
  .value-row img,
  .info-row img,
  .region-img,
  .feature-img,
  .value-img {
    width: 100% !important;
    max-height: 240px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin-bottom: 16px !important;
    float: none !important;
  }

  /* Text in feature rows — full width, left aligned */
  .feature-text,
  .region-text,
  .value-text,
  .info-text {
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
  }

  /* Gold CTA booking buttons inside sections */
  .book-btn,
  .btn-book,
  .cta-book,
  .dest-book-btn,
  a[class*="book"],
  .btn-gold,
  .btn-primary {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 15px !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }

  /* Section headings — left align on mobile */
  .feature-row h2,
  .feature-row h3,
  .region-row h2,
  .region-row h3,
  .value-row h2,
  .value-row h3 {
    text-align: left !important;
    font-size: clamp(20px, 5vw, 26px) !important;
  }

  /* Pricing grid — single column */
  .pricing-grid,
  .price-grid {
    grid-template-columns: 1fr !important;
  }

  /* Stats row — single column */
  .stats-row,
  .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* FAQ items — ensure full width */
  .faq-item,
  .faq-question,
  .faq-answer {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Winery grid cards — single column */
  .winery-grid,
  .card-grid,
  .dest-grid {
    grid-template-columns: 1fr !important;
  }

  /* Blog related posts grid — single column */
  .related-grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA button grid in blog posts */
  .cta-btn-grid {
    grid-template-columns: 1fr !important;
  }

  /* General text sizing */
  p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  /* Prevent any element from overflowing viewport */
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Overflow protection on body */
  body {
    overflow-x: hidden;
  }
}

/* Booking modal — mobile: single column, compact, no scroll */
@media (max-width: 700px) {
  .modal-inner {
    padding: 28px 20px 20px !important;
    width: 92% !important;
    max-height: 92vh !important;
  }
  .modal-btn-grid {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }
  .modal-region-btn {
    padding: 10px 12px !important;
    font-size: 13px !important;
    min-height: 40px !important;
  }
}

@media (max-width: 480px) {

  /* Header buttons — keep on one line, smaller */
  .btn-header {
    font-size: 11px !important;
    padding: 8px 10px !important;
    white-space: nowrap !important;
  }

  /* Hero headings — scale down */
  .hero h1,
  .region-hero h1,
  .blog-hero h1 {
    font-size: clamp(24px, 7vw, 36px) !important;
    line-height: 1.15 !important;
  }

  /* Section padding tighter */
  section {
    padding: 32px 14px !important;
  }

  /* Blog body padding */
  .blog-body {
    padding: 36px 16px !important;
  }
}
