/* =============================================
   Desert & Coastal Expeditions — style.css
   Colors: Terracotta #D4522A | Amber #E8A020 | Sky #1B7EC2 | Cream #FFF8F0
   Fonts:  Fraunces (serif) + DM Sans (body)
   Compatible: Vercel · GitHub Pages · Median
   ============================================= */

:root {
  --terracotta:      #D4522A;
  --terracotta-dark: #b8441f;
  --amber:           #E8A020;
  --sky:             #1B7EC2;
  --cream:           #FFF8F0;
  --warm:            #FDF4E8;
  --bg:              #FFFFFF;
  --card:            #FFFFFF;
  --border:          #E8E0D8;
  --text:            #1A1612;
  --muted:           #6B5E52;
  --light:           #F5EDE4;
  --green-soft:      #f0fff4;
  --green-text:      #276749;
  --nav-h:           68px;
  --radius:          0.875rem;
  --radius-lg:       1.25rem;
  --radius-xl:       1.75rem;
  --shadow:          0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:       0 8px 40px rgba(0,0,0,0.14);
  --t:               0.25s ease;
  --serif:           'Fraunces', Georgia, serif;
  --sans:            'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ── Helpers ── */
.serif      { font-family: var(--serif); font-weight: 500; line-height: 1.2; }
.text-center { text-align: center; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 2rem; }
.mb-5 { margin-bottom: 2rem; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section   { padding: 5rem 0; }
.bg-cream  { background: var(--cream); }
.bg-warm   { background: var(--warm); }

/* ── Page transitions ── */
.page { display: none; min-height: calc(100vh - var(--nav-h)); }
.page.active { display: block; animation: fadeUp 0.3s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--terracotta);
  flex-shrink: 0;
  cursor: pointer;
  max-width: 220px;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--t);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.btn-nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--terracotta) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.5rem 1.1rem !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  transition: background var(--t) !important;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--terracotta-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 0 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
  }
  .nav-links a:last-child { border-bottom: none; }
  .btn-nav-cta {
    margin: 0.75rem 1.25rem 0 !important;
    border-radius: var(--radius) !important;
    padding: 0.8rem 1.25rem !important;
    font-size: 0.95rem !important;
    width: calc(100% - 2.5rem) !important;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.55; pointer-events: none; }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: 0 4px 16px rgba(212,82,42,0.28); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-lg  { padding: 0.85rem 2rem;   font-size: 1rem; }
.btn-xl  { padding: 1rem 2.5rem;    font-size: 1.05rem; }
.btn-full { width: 100%; border-radius: var(--radius); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: gap var(--t);
}
.link-arrow:hover { gap: 0.75rem; }
.link-arrow svg { width: 16px; height: 16px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2a1a0e;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.52) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 880px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 0.85rem; }
.subhead { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* =============================================
   HOME TOUR CARDS — 12 destinations
   ============================================= */
.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tour-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  outline: none;
}
.tour-card:hover,
.tour-card:focus { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tour-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light);
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-body { padding: 1.1rem 1.25rem 1.35rem; }
.tour-card-body h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.3rem; line-height: 1.25; }
.tour-card-body p { color: var(--muted); font-size: 0.84rem; margin-bottom: 0.85rem; }
.tour-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--terracotta);
  font-size: 0.84rem;
  font-weight: 600;
}
.tour-card-cta svg { width: 15px; height: 15px; transition: transform var(--t); }
.tour-card:hover .tour-card-cta svg { transform: translateX(4px); }

/* =============================================
   HOME SPLIT GRID
   ============================================= */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.split-item > * + * { margin-top: 1.25rem; }
.split-elevated {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.split-item h2 { font-size: clamp(1.75rem, 2.8vw, 2.1rem); }
.split-item p  { color: var(--muted); line-height: 1.7; }
.icon-badge {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-terracotta { background: rgba(212,82,42,0.12); color: var(--terracotta); }
.icon-amber      { background: rgba(232,160,32,0.14); color: #9a6200; }

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header { padding: 3.5rem 0 2.5rem; background: var(--cream); }
.page-title  { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 0.75rem; }
.page-sub    { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* =============================================
   TOURS LIST — 12 detailed rows
   ============================================= */
.tours-container { padding-bottom: 4rem; }
.tour-row {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.tour-row:last-child { border-bottom: none; }
.tour-row.reverse    { flex-direction: row-reverse; }

.tour-img-wrap { flex: 0 0 44%; position: relative; }
.tour-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.tour-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.tour-highlights-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  margin-top: 1.25rem;
  box-shadow: var(--shadow);
}
.tour-highlights-box h4 {
  font-family: var(--serif);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.tour-highlights-box ul { display: flex; flex-direction: column; gap: 0.4rem; }
.tour-highlights-box li {
  display: flex; align-items: flex-start; gap: 0.4rem;
  font-size: 0.82rem; color: var(--muted); line-height: 1.4;
}
.tour-highlights-box li svg { width: 13px; height: 13px; color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }

.tour-content { flex: 1; min-width: 0; }
.tour-content > * + * { margin-top: 1rem; }

/* Tour meta (duration + location) */
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.tour-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.tour-content .tagline { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }

/* Wildlife section */
.tour-wildlife {
  background: var(--cream);
  border-left: 3px solid var(--amber);
  padding: 0.65rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}
.tour-wildlife strong { color: var(--text); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.pricing-grid-single { grid-template-columns: 1fr; max-width: 280px; }
.pricing-card {
  background: var(--warm);
  border: 1px solid rgba(232,160,32,0.22);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.pricing-card-featured {
  border-color: var(--terracotta);
  border-width: 2px;
  background: rgba(212,82,42,0.05);
}
.pricing-card .tier-label { font-weight: 500; font-size: 0.82rem; margin-bottom: 0.2rem; color: var(--muted); }
.pricing-card .tier-price { font-family: var(--serif); font-size: 1.85rem; line-height: 1.1; color: var(--text); }
.pricing-card .tier-unit  { font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; }

/* Policy notice */
.policy-notice {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.policy-notice p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.policy-notice p:first-child { color: #276749; }
.policy-notice p:nth-child(2) { color: #c53030; }

/* =============================================
   BOOKING FORM
   ============================================= */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 2.5rem auto 4rem;
}
.svc-toggle {
  display: flex;
  background: #f0ebe4;
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 2.5rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.svc-btn {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius) - 3px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: background var(--t), color var(--t), box-shadow var(--t);
}
.svc-btn.active {
  background: var(--card);
  color: var(--text);
  box-shadow: 0 1px 6px rgba(0,0,0,0.09);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group-half { max-width: 50%; }
.form-group label { font-size: 0.85rem; font-weight: 500; }
.form-group label small { font-weight: 400; color: var(--muted); font-size: 0.78rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 0.94rem;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(212,82,42,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5E52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.form-group select:disabled { opacity: 0.5; cursor: not-allowed; }
.form-group textarea { resize: vertical; min-height: 96px; }
.sub-section {
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.sub-title { font-size: 1.2rem; margin-bottom: 1.25rem; }
.form-footer {
  padding-top: 1.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.submit-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 0.65rem; }
.form-error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: var(--radius);
  color: #c53030;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  margin-top: 1rem;
}

/* Success state */
.success-panel { text-align: center; padding: 0.5rem 0; }
.success-icon {
  width: 76px; height: 76px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green-text);
}
.success-icon svg { width: 36px; height: 36px; }
.success-panel h2 { font-size: 2rem; margin-bottom: 0.6rem; }
.success-sub { color: var(--muted); font-size: 0.97rem; max-width: 400px; margin: 0 auto 1.5rem; }
.ref-box {
  background: var(--warm);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  margin: 0 auto 1.5rem;
  max-width: 300px;
  text-align: left;
}
.ref-label { font-size: 0.78rem; color: var(--muted); display: block; margin-bottom: 0.2rem; }
.ref-val   { font-family: 'Courier New', monospace; font-size: 1.15rem; font-weight: 600; }
.payment-methods { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }
.pm-title { font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }

/* =============================================
   GUIDE PAGE
   ============================================= */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 1rem 0 3rem;
}
.guide-photo-wrap { position: relative; }
.guide-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-photo-accent {
  position: absolute;
  inset: -0.875rem;
  background: rgba(212,82,42,0.1);
  border-radius: 2.25rem;
  z-index: 0;
  transform: translate(10px, 10px);
}
.guide-bio > * + * { margin-top: 1.1rem; }
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.guide-lead { font-size: 1.15rem; color: var(--muted); line-height: 1.65; }
.guide-body { color: var(--muted); line-height: 1.7; font-size: 0.97rem; }
.guide-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.g-stat { display: flex; align-items: flex-start; gap: 0.65rem; }
.g-stat svg { width: 24px; height: 24px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.g-stat div { display: flex; flex-direction: column; gap: 0.1rem; }
.g-stat strong { font-size: 0.9rem; font-weight: 600; }
.g-stat span   { font-size: 0.78rem; color: var(--muted); }

.guide-quote-wrap { padding: 0 1.25rem 5rem; }
.guide-quote-banner {
  position: relative;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #3a2010;
}
.quote-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
blockquote {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  font-style: italic;
  line-height: 1.4;
}

/* =============================================
   DRIVER PAGE
   ============================================= */
.driver-hero-wrap {
  position: relative;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3.5rem;
  background: #2a1a0e;
}
.driver-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.driver-hero-fallback { background: linear-gradient(135deg, var(--terracotta), #7a2800); }
.driver-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 100%);
}
.driver-hero-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem; color: #fff; max-width: 560px;
}
.driver-hero-text h3 { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 0.65rem; }
.driver-hero-text p  { font-size: 0.97rem; color: rgba(255,255,255,0.88); line-height: 1.6; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--t), transform var(--t);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(212,82,42,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--terracotta);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2rem 0 5rem;
}
.contact-section-title { font-size: 1.65rem; margin-bottom: 1.5rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.contact-item:hover { background: rgba(232,160,32,0.07); border-color: rgba(232,160,32,0.2); }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(212,82,42,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta); flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.78rem; font-weight: 500; color: var(--muted); margin-bottom: 0.15rem; }
.contact-value { font-size: 1.05rem; font-weight: 500; }
.policy-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.75rem;
  margin-top: 1.75rem;
}
.policy-title {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 1.3rem; margin-bottom: 1.4rem;
}
.policy-title svg { width: 18px; height: 18px; color: var(--terracotta); }
.policy-section { margin-bottom: 1.25rem; }
.policy-section:last-child { margin-bottom: 0; }
.policy-section h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.policy-section p  { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.policy-list { display: flex; flex-direction: column; gap: 0.35rem; }
.policy-list li {
  display: flex; align-items: flex-start; gap: 0.45rem;
  font-size: 0.84rem; color: var(--muted);
}
.policy-list li svg { width: 13px; height: 13px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.policy-note { font-size: 0.78rem; font-style: italic; color: var(--muted); margin-top: 0.2rem; }
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap .form-group { margin-bottom: 1.1rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 3rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.65rem;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.6; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color var(--t);
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding: 1.1rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .tour-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .tour-row, .tour-row.reverse { flex-direction: column; gap: 2rem; }
  .tour-img-wrap { flex: none; width: 100%; }
  .feature-grid  { grid-template-columns: 1fr 1fr; }
  .guide-layout  { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .tour-cards    { grid-template-columns: repeat(2, 1fr); }
  .split-grid    { grid-template-columns: 1fr; gap: 1.75rem; }
  .split-elevated { padding: 1.5rem; }
  .form-row      { grid-template-columns: 1fr; }
  .form-group-half { max-width: 100%; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .guide-layout  { grid-template-columns: 1fr; }
  .guide-photo   { aspect-ratio: 4/5; }
  .guide-stats   { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner  { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-grid  { grid-template-columns: 1fr; }
  .form-card     { padding: 1.4rem; }
  .contact-form-wrap { padding: 1.4rem; }
  .driver-hero-wrap { height: 300px; }
  .driver-hero-text { padding: 1.5rem; }
  .driver-hero-text h3 { font-size: 1.4rem; }
  .hero          { height: 80vh; }
  .tour-row      { padding: 3rem 0; }
}

@media (max-width: 560px) {
  .tour-cards    { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .svc-toggle    { max-width: 100%; }
  .guide-quote-banner { height: 240px; }
  blockquote     { font-size: 1.05rem; }
  .tour-highlights-box { display: none; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
}
