/* ============================================================
   OXFORD TOUR THEME — MAIN STYLESHEET
   Premium Oxford walking tour design system
   Author: Oxford Tour Team | Version: 1.0.0
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --navy:           #0c1c3a;
  --navy-dark:      #070f20;
  --navy-mid:       #132444;
  --blue:           #1e3d72;
  --blue-mid:       #2c56a1;
  --blue-light:     #3d6dc7;
  --gold:           #c8a84b;
  --gold-light:     #e4c068;
  --gold-pale:      #f5e6b8;
  --gold-dark:      #a8882f;
  --stone:          #f4f0e8;
  --stone-dark:     #e8e2d4;
  --cream:          #fdfcf9;
  --white:          #ffffff;
  --text-dark:      #0c1c3a;
  --text-mid:       #374151;
  --text-light:     #6b7280;
  --text-muted:     #9ca3af;
  --border:         #e5e7eb;
  --border-dark:    #d1d5db;
  --overlay:        rgba(7, 15, 32, 0.72);
  --overlay-mid:    rgba(12, 28, 58, 0.5);
  --whatsapp:       #25d366;
  --whatsapp-dark:  #1da851;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w:      1200px;
  --max-w-wide: 1400px;
  --nav-h:      80px;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(12,28,58,0.10);
  --shadow-md:  0 8px 24px rgba(12,28,58,0.14);
  --shadow-lg:  0 16px 48px rgba(12,28,58,0.18);
  --shadow-xl:  0 24px 64px rgba(12,28,58,0.22);
  --shadow-gold: 0 8px 32px rgba(200,168,75,0.30);

  /* Transitions */
  --ease-fast:  150ms ease;
  --ease:       300ms ease;
  --ease-slow:  500ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
svg { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
input, textarea { outline: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--ease-fast);
}
.skip-link:focus { top: var(--sp-2); }


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

.section-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-header .section-subtitle { margin: 0 auto; }

.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }
.white-text { color: var(--white); }


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container-wide {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

section { position: relative; }

.section-pad {
  padding-block: var(--sp-24);
}

.section-pad-lg {
  padding-block: var(--sp-32);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: var(--radius-full);
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--ease-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,168,75,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--blue); transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: var(--text-base); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: var(--text-xs); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }


/* ============================================================
   6. NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--ease);
}

#site-header.scrolled {
  background: rgba(7, 15, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-lg);
}

#site-header.at-top {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,168,75,0.4);
}

.nav-logo-text {
  line-height: 1;
}

.nav-logo-primary {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  display: block;
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-menu a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: all var(--ease-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: width var(--ease);
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-menu a:hover::after { width: 70%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: rgba(255,255,255,0.85);
  padding: var(--sp-3) var(--sp-6);
  transition: color var(--ease-fast);
  text-align: center;
}

.nav-mobile a:hover { color: var(--gold); }

.nav-mobile .btn {
  margin-top: var(--sp-6);
}


/* ============================================================
   7. WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-6);
  z-index: 990;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--ease);
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}

#whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + var(--sp-3));
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-fast);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}

#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.15); }
}


/* ============================================================
   8. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,15,32,0.35) 0%,
    rgba(7,15,32,0.60) 50%,
    rgba(7,15,32,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: var(--sp-8) var(--sp-6);
  padding-top: calc(var(--nav-h) + var(--sp-8));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.4);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  margin-bottom: var(--sp-6);
}

.hero-badge span { color: var(--gold); font-size: 1.2em; }

#hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--sp-6);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#hero h1 em {
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: var(--sp-10);
  max-width: 620px;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
}

.trust-item svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   9. STATS BAR
   ============================================================ */
#stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding-block: var(--sp-12);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.stat-item {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.70);
  font-weight: 400;
  line-height: 1.4;
}


/* ============================================================
   10. WHY CHOOSE US
   ============================================================ */
#why-us {
  background: var(--stone);
  padding-block: var(--sp-24);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-pale);
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff8e6 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  transition: all var(--ease);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-dark);
  stroke: var(--gold-dark);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.feature-card:hover .feature-icon svg { color: var(--navy); stroke: var(--navy); }

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.7;
}


/* ============================================================
   11. TOUR CARDS
   ============================================================ */
#tours {
  background: var(--white);
  padding-block: var(--sp-24);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.tour-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tour-badge.popular {
  background: var(--gold);
  color: var(--navy);
}

.tour-badge.new {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
}

.tour-badge.premium {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.tour-card-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-meta {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  color: var(--text-light);
  font-weight: 500;
}

.tour-meta-item svg { width: 14px; height: 14px; stroke: var(--gold); }

.tour-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}

.tour-card p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.tour-highlights {
  margin-bottom: var(--sp-6);
  flex: 1;
}

.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-mid);
  padding-block: var(--sp-1);
}

.tour-highlights li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 7px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.tour-price {
  line-height: 1.1;
}

.tour-price-value {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
}

.tour-price-note {
  font-size: var(--text-xs);
  color: var(--text-light);
}


/* ============================================================
   12. OXFORD HIGHLIGHTS
   ============================================================ */
#highlights {
  background: var(--navy-dark);
  padding-block: var(--sp-24);
}

#highlights .section-title { color: var(--white); }
#highlights .section-subtitle { color: rgba(255,255,255,0.65); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--sp-4);
}

.highlight-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.highlight-item:nth-child(1) {
  grid-column: span 2;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.highlight-item:hover .highlight-bg { transform: scale(1.08); }

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,15,32,0.9) 0%,
    rgba(7,15,32,0.3) 60%,
    transparent 100%
  );
  transition: background var(--ease);
}

.highlight-item:hover .highlight-overlay {
  background: linear-gradient(
    to top,
    rgba(12,28,58,0.95) 0%,
    rgba(12,28,58,0.5) 60%,
    rgba(12,28,58,0.1) 100%
  );
}

.highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
}

.highlight-content h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.highlight-content p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease), opacity var(--ease);
  opacity: 0;
}

.highlight-item:hover .highlight-content p {
  max-height: 80px;
  opacity: 1;
}

/* Highlight background colors (used as fallbacks/overlays) */
.highlight-bg-1 { background-color: #1a3a6b; background-image: linear-gradient(135deg, #1e3d72, #0c1c3a); }
.highlight-bg-2 { background-color: #2d5aa0; background-image: linear-gradient(135deg, #2c56a1, #1e3d72); }
.highlight-bg-3 { background-color: #0c1c3a; background-image: linear-gradient(135deg, #132444, #070f20); }
.highlight-bg-4 { background-color: #1a3a6b; background-image: linear-gradient(135deg, #0c1c3a, #1e3d72); }
.highlight-bg-5 { background-color: #2c56a1; background-image: linear-gradient(135deg, #2d5aa0, #1a3a6b); }
.highlight-bg-6 { background-color: #132444; background-image: linear-gradient(135deg, #1e3d72, #132444); }


/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--stone);
  padding-block: var(--sp-24);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--sp-6);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  flex: 0 0 calc((100% - var(--sp-6) * 2) / 3);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold-pale);
  margin-bottom: var(--sp-4);
  display: block;
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--text-light);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: #10b981;
  font-weight: 600;
  margin-top: var(--sp-1);
}

.testimonial-verified svg { width: 12px; height: 12px; fill: #10b981; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.slider-btn:hover svg { stroke: var(--white); }

.slider-btn svg { width: 20px; height: 20px; stroke: var(--navy); transition: stroke var(--ease-fast); }

.slider-dots {
  display: flex;
  gap: var(--sp-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-dark);
  cursor: pointer;
  transition: all var(--ease);
  border: none;
}

.slider-dot.active {
  width: 24px;
  background: var(--gold);
}


/* ============================================================
   14. ABOUT THE GUIDE
   ============================================================ */
#guide {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding-block: var(--sp-24);
  overflow: hidden;
  position: relative;
}

#guide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.guide-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.guide-image-wrap {
  position: relative;
}

.guide-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.guide-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.guide-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
  background: rgba(7,15,32,0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(200,168,75,0.3);
}

.guide-badge-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--white);
  display: block;
}

.guide-badge-title {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2px;
  display: block;
}

.guide-frame-border {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(200,168,75,0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.guide-content .section-label { color: var(--gold); }

.guide-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.guide-content > p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.guide-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.guide-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
}

.guide-stat-value {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.guide-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
}

.guide-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.guide-credential {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.82);
  font-size: var(--text-sm);
}

.guide-credential svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }


/* ============================================================
   15. FAQ
   ============================================================ */
#faq {
  background: var(--cream);
  padding-block: var(--sp-24);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--ease);
}

.faq-item.open { box-shadow: var(--shadow-md); }

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy);
  line-height: 1.5;
  user-select: none;
  transition: color var(--ease-fast);
}

.faq-question:hover { color: var(--blue-mid); }
.faq-item.open .faq-question { color: var(--blue-mid); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--stone);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
  transition: all var(--ease);
}

.faq-icon svg { width: 14px; height: 14px; stroke: var(--gold-dark); transition: transform var(--ease); }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); stroke: var(--navy); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
}


/* ============================================================
   16. BOOKING / CONTACT
   ============================================================ */
#booking {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--blue) 100%);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.booking-info .section-label { color: var(--gold); }

.booking-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.booking-info > p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.contact-item-label {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.contact-item-value {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.contact-item-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-full);
  transition: all var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.whatsapp-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.whatsapp-cta svg { width: 24px; height: 24px; fill: var(--white); }

/* Booking Form */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-xl);
}

.booking-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.booking-form-wrap > p {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--ease-fast);
  font-family: var(--font-sans);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,86,161,0.1);
}

.form-group textarea { resize: vertical; min-height: 90px; }



.form-submit {
  width: 100%;
  padding: var(--sp-4);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-submit svg { width: 20px; height: 20px; fill: none; stroke: currentColor; }

.form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-top: var(--sp-3);
}

.form-note svg { width: 14px; height: 14px; display: inline; stroke: #10b981; }

.form-success,
.form-error {
  display: none;
  padding: var(--sp-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  margin-top: var(--sp-4);
}

.form-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }


/* ============================================================
   17. FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
  position: relative;
}

#site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer-brand .nav-logo { margin-bottom: var(--sp-4); }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
}

.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); transition: fill var(--ease-fast); }
.social-btn:hover svg { fill: var(--navy); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }

.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--ease-fast);
  display: inline-block;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--ease-fast);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-rating .stars-small {
  display: flex;
  gap: 1px;
}

.footer-rating .stars-small svg { width: 12px; height: 12px; fill: var(--gold); }


/* ============================================================
   18. ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

.animate-hero { animation: fadeInUp 0.7s ease forwards; }
.animate-hero-1 { animation-delay: 0.1s; opacity: 0; }
.animate-hero-2 { animation-delay: 0.3s; opacity: 0; }
.animate-hero-3 { animation-delay: 0.5s; opacity: 0; }
.animate-hero-4 { animation-delay: 0.7s; opacity: 0; }
.animate-hero-5 { animation-delay: 0.9s; opacity: 0; }


/* ============================================================
   19. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .guide-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .guide-image-frame img { height: 380px; }

  .booking-grid { grid-template-columns: 1fr; gap: var(--sp-10); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  .faq-grid { grid-template-columns: 1fr; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .highlight-item:nth-child(1) { grid-column: span 1; }
}


/* ============================================================
   20. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section-pad   { padding-block: var(--sp-16); }
  .section-pad-lg{ padding-block: var(--sp-20); }
  .container     { padding-inline: var(--sp-4); }

  .section-header { margin-bottom: var(--sp-10); }

  /* Hero */
  .hero-content { padding-inline: var(--sp-4); }
  .hero-ctas    { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-trust   { gap: var(--sp-5); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

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

  /* Highlights */
  .highlights-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }
  .highlight-item:nth-child(1) { grid-column: span 1; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 calc(100% - var(--sp-4)); }

  /* Guide */
  .guide-stats { grid-template-columns: 1fr 1fr; }
  .guide-image-frame img { height: 300px; }

  /* Booking */
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: var(--sp-6); }


  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* WhatsApp float */
  #whatsapp-float { bottom: var(--sp-5); right: var(--sp-4); }
}


/* ============================================================
   21. PRINT STYLES
   ============================================================ */
@media print {
  #site-header, #whatsapp-float, .nav-mobile { display: none !important; }
  body { background: white; color: black; }
  .hero-content { padding-top: 0; }
}
