/* ==========================================================================
   STATIC SITE FACTORY 2.0 - MASTER DESIGN SYSTEM (60-30-10 CRO TRAVEL PALETTE)
   Standardized High-Converting Travel Theme:
     - 60% Neutral Light (#F8FAFC / #FFFFFF): Clean photo-focus & readability
     - 30% Trust Navy & Ocean (#0F172A / #0284C7): Authority, headings & structure
     - 10% Action CTA Orange (#FF6B00 / #EA580C): Maximum contrast & conversion
   Typography: Inter (body text) + Plus Jakarta Sans (headings H1-H4)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* 60% Neutral Light Foundation */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border-color: #e2e8f0;
  --border-color-hover: #cbd5e1;

  /* 30% Trust Navy & Ocean Text/Headings */
  --text-primary: #0f172a;    /* Deep Navy Slate */
  --text-secondary: #334155;  /* High-legibility Charcoal Body */
  --text-muted: #64748b;      /* Muted Subtitles */

  --accent-navy: #0f172a;
  --accent-blue: #0284c7;     /* Ocean Trust Blue */
  --accent-gold: #d97706;     /* Warm Gold Accent */
  
  /* 10% High-Converting CTA Orange */
  --accent-orange: #ff6b00;   /* Vivid Action Orange */
  --accent-orange-hover: #ea580c;
  --accent-coral: #ff4757;

  /* Link Defaults */
  --link-color: #0284c7;
  --link-hover-color: #ffffff;
  --link-hover-bg: #ff6b00;

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Headings - 30% Trust Navy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.01em; margin-top: 2rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin-top: 1.5rem; }
h4 { font-size: 1.2rem; margin-top: 1.25rem; }

/* ULTRA HIGH-CONTRAST IN-CONTENT LINKS (Rule #1) */
a[href]:not(.btn):not(.btn-cta):not(.btn-secondary):not(.nav-link):not(.brand-logo):not(.footer-link):not(.tour-card):not(.cmp-btn) {
  color: #0284c7 !important; /* Ocean Trust Blue */
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: #0284c7 !important;
  text-underline-offset: 3px !important;
  background-color: rgba(2, 132, 199, 0.08) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease-in-out !important;
}

a[href]:not(.btn):not(.btn-cta):not(.btn-secondary):not(.nav-link):not(.brand-logo):not(.footer-link):not(.tour-card):not(.cmp-btn):hover {
  color: #ffffff !important;
  background-color: #ff6b00 !important;
  text-decoration-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4) !important;
}

/* UI Elements Override */
.btn, .btn-cta, .nav-link, .brand-logo, .card, .tour-card, .footer-link, .tag, .cmp-btn {
  text-decoration: none !important;
}

/* 10% High-Converting Action CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5);
  background: linear-gradient(135deg, #ff8533 0%, #ff6b00 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-primary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: var(--accent-blue);
  color: var(--accent-blue) !important;
}

/* Hero Section */
.hero, .home-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  color: #cbd5e1;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 750px;
  margin: 0 auto 2rem auto;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.reading-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Navigation Header - 30% Trust Navy */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f172a;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.15);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #38bdf8;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 1002;
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  line-height: 1;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.burger-menu:hover, .burger-menu:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

/* Mobile Drawer Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Nav */
@media (max-width: 992px) {
  .burger-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.2rem;
  }
}

/* Tour Cards & Power Grid */
.tours-section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.tour-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .tour-image {
  transform: scale(1.06);
}

.badge-skip-line {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}

.tour-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.tour-rating {
  color: #d97706;
  font-weight: 600;
}

.tour-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.tour-price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.tour-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Author Persona Intro Block */
.author-intro-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}

/* Quick Facts Component */
.quick-facts-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.fact-item {
  display: flex;
  flex-direction: column;
}

.fact-label {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.fact-value {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* POI Grid Component */
.poi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.poi-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

/* Split Feature Component */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .split-feature {
    grid-template-columns: 1fr;
  }
}

.feature-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.image-credit {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-align: right;
}

.image-credit a {
  color: var(--text-muted) !important;
  text-decoration: underline !important;
  background: none !important;
  padding: 0 !important;
}

/* FAQ Accordion Component */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Tables Component */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  text-align: left;
}

th, td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

th {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  background: #f1f5f9;
}

tr:last-child td {
  border-bottom: none;
}

/* Author Bio Component */
.author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-blue);
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0 0 0.4rem 0;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Weather Widget Card Light Overrides */
.weather-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm) !important;
}

/* Footer - 30% Trust Navy */
.site-footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-link {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  color: #64748b;
}

/* ==========================================================================
   CRO & MODERNIZATION EXTENSIONS 2026
   ========================================================================== */

/* --- Key Takeaways Box (.ia-takeaways) --- */
.ia-takeaways {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--accent-orange);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.ia-takeaways-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 0.75rem;
}
.ia-takeaways-badge {
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}
.ia-takeaways-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 0;
}
.ia-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ia-takeaways-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.ia-takeaways-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  margin-top: 1px;
}
.ia-takeaways-warning {
  background: rgba(255, 107, 0, 0.08);
  border: 1px dashed var(--accent-orange);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: #9a3412;
  line-height: 1.55;
}

/* --- Modern 3-Tour Travel Comparison Matrix (.cmp-table-section) --- */
.cmp-table-section {
  margin: 3.5rem 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}
.cmp-table-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.cmp-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0369a1;
  background: #e0f2fe;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid #bae6fd;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.08);
  width: fit-content;
}
.cmp-scroll-hint-icon {
  font-size: 0.95rem;
  animation: cmp-pulse-x 1.8s infinite ease-in-out;
}
@keyframes cmp-pulse-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.cmp-table-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  margin: 1.5rem 0 2.5rem 0;
  position: relative;
}

.cmp-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
  table-layout: fixed;
  background: #ffffff;
}

.cmp-table th, .cmp-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #f1f5f9;
  vertical-align: middle;
  text-align: left;
  box-sizing: border-box;
}
.cmp-table th:last-child, .cmp-table td:last-child {
  border-right: none;
}

/* Sticky first column */
.cmp-th-feature, .cmp-row-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #ffffff;
  border-right: 2px solid #e2e8f0 !important;
  width: 165px;
  min-width: 165px;
  max-width: 165px;
}
.cmp-th-feature {
  background: #f8fafc;
  vertical-align: top;
  padding: 1.25rem 1rem;
}
tbody tr:nth-child(even) .cmp-row-label {
  background: #f8fafc;
}
tbody tr:nth-child(odd) .cmp-row-label {
  background: #ffffff;
}

.cmp-th-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cmp-feature-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  background: #e2e8f0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  width: fit-content;
}
.cmp-feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.25rem;
}
.cmp-feature-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Tour Header Cells */
.cmp-th-tour {
  background: #ffffff;
  vertical-align: top;
  padding: 1.25rem 1.15rem;
  width: calc((100% - 165px) / 3);
  min-width: 205px;
}

.cmp-tour-card-header {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cmp-col-top-badge {
  height: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

.cmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
}
.badge-ticket {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}
.badge-popular {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.badge-bestseller {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

/* Header Thumbnails */
.cmp-tour-thumb {
  width: 100%;
  height: 125px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.65rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.cmp-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cmp-th-tour:hover .cmp-tour-thumb img {
  transform: scale(1.04);
}

.cmp-tour-provider {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.cmp-verified-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #0284c7;
}

.cmp-tour-title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

/* Highlighted Column (Tour 3: Bestseller) */
.cmp-th-tour.highlight-col {
  background: #f0fdf4;
  border-top: 4px solid #10b981;
}
.cmp-table td.highlight-col {
  background: #fbfdfc;
}
tbody tr:nth-child(even) td.highlight-col {
  background: #f3faf6;
}

/* Row Labels */
.cmp-label-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cmp-label-icon {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}
.cmp-label-text {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Pricing Styles */
.cmp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.cmp-price-eur {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
}
.cmp-price-highlight {
  color: #ff6b00 !important;
}
.cmp-price-usd {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cmp-price-unit {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Prominent Park Entrance Fee Pills */
.cmp-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
}
.cmp-pill-included {
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
}
.cmp-pill-included .cmp-pill-status {
  font-size: 0.84rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: 0.02em;
}
.cmp-pill-included .cmp-pill-note {
  font-size: 0.75rem;
  font-weight: 600;
  color: #065f46;
}

.cmp-pill-excluded {
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
}
.cmp-pill-excluded .cmp-pill-status {
  font-size: 0.84rem;
  font-weight: 800;
  color: #be123c;
  letter-spacing: 0.02em;
}
.cmp-pill-excluded .cmp-pill-note {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9f1239;
}

/* Duration, Schedule & Text Elements */
.cmp-param-main {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.88rem;
}
.cmp-text-success {
  color: #047857 !important;
}
.cmp-cell-sub {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.35;
}

/* Features List */
.cmp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-secondary);
}
.cmp-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.cmp-chk {
  color: #10b981;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* Rating Box */
.cmp-rating-box {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cmp-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  line-height: 1;
}
.cmp-score {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.cmp-reviews-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Cancellation Badge */
.cmp-cancel-badge {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cmp-cancel-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: #047857;
}

/* CTA Buttons */
.cmp-row-cta td {
  padding: 1.25rem 1.15rem;
}
.cmp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: center;
}
.cmp-btn-primary {
  background: linear-gradient(135deg, #ff6b00 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.32);
  border: none !important;
}
.cmp-btn-primary:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #d94e06 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.42);
}
.cmp-btn-secondary {
  background: #0284c7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2);
  border: none !important;
}
.cmp-btn-secondary:hover {
  background: #0369a1 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* Mobile Responsive Adjustments (<= 768px) */
@media (max-width: 768px) {
  .cmp-scroll-hint {
    display: flex;
    margin-bottom: 0.75rem;
    font-size: 0.76rem;
    padding: 0.35rem 0.85rem;
  }
  .cmp-table-container {
    margin: 0.75rem 0 2rem 0 !important;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }
  .cmp-table {
    min-width: 640px;
    font-size: 0.82rem;
  }
  .cmp-th-feature, .cmp-row-label {
    width: 105px !important;
    min-width: 105px !important;
    max-width: 105px !important;
    padding: 0.65rem 0.5rem !important;
  }
  .cmp-feature-tag {
    font-size: 0.62rem;
    padding: 0.15rem 0.35rem;
  }
  .cmp-feature-title {
    font-size: 0.86rem;
  }
  .cmp-feature-sub {
    font-size: 0.68rem;
  }
  .cmp-label-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .cmp-label-icon {
    font-size: 1rem;
  }
  .cmp-label-text {
    font-size: 0.76rem;
    line-height: 1.2;
  }
  .cmp-th-tour {
    min-width: 178px;
    padding: 0.85rem 0.65rem;
  }
  .cmp-tour-thumb {
    height: 90px;
  }
  .cmp-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }
  .cmp-tour-provider {
    font-size: 0.65rem;
  }
  .cmp-tour-title {
    font-size: 0.84rem;
    min-height: 2.6em;
  }
  .cmp-price-eur {
    font-size: 1.25rem;
  }
  .cmp-price-usd {
    font-size: 0.78rem;
  }
  .cmp-pill {
    padding: 0.4rem 0.5rem;
  }
  .cmp-pill-included .cmp-pill-status,
  .cmp-pill-excluded .cmp-pill-status {
    font-size: 0.76rem;
  }
  .cmp-pill-included .cmp-pill-note,
  .cmp-pill-excluded .cmp-pill-note {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .cmp-param-main {
    font-size: 0.82rem;
  }
  .cmp-cell-sub {
    font-size: 0.72rem;
  }
  .cmp-features-list {
    font-size: 0.76rem;
    gap: 0.35rem;
  }
  .cmp-btn {
    min-height: 40px;
    padding: 0.55rem 0.5rem;
    font-size: 0.78rem;
  }
  .ia-takeaways {
    padding: 1.25rem 1rem !important;
  }
}

/* --- Online Ticket vs Gate Purchase Comparison Box --- */
.ticket-vs-gate {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  margin: 2.5rem 0 3.5rem 0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.ticket-vs-gate-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.ticket-vs-gate-desc {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}
.gate-vs-online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.gate-card {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.online-card {
  background: #ffffff;
  border: 2.5px solid #10b981;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12);
}
.card-badge-recommended {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.card-header-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.card-price-main {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}
.gate-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.94rem;
  flex-grow: 1;
}
.gate-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.gate-features li span {
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 820px) {
  .gate-vs-online-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ticket-vs-gate {
    padding: 1.75rem 1.25rem;
    margin: 2rem 0;
  }
}

/* --- Tour Benefits Grid (.tour-benefits-section) --- */
.tour-benefits-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 4rem 0;
  margin: 3.5rem 0;
}
.tour-benefits-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}
.tour-benefits-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.tour-benefits-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}
.tour-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.tour-benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.tour-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.tour-benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: inline-block;
}
.tour-benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.tour-benefit-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* --- Tour Cards Grid Component (.tour-card) --- */
.tour-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}
.tour-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
}
.tour-image-container img,
.tour-image {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease;
}
.tour-card:hover .tour-image {
  transform: scale(1.03);
}
.tour-smart-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.badge-budget {
  background: #0284c7;
  color: #ffffff;
}
.badge-popular {
  background: #f59e0b;
  color: #ffffff;
}
.badge-top {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}
.tour-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0.4rem 0 0.5rem 0;
  min-height: 2.8em;
}
.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  margin-bottom: 1rem;
}
.tour-rating {
  font-weight: 700;
  color: #f59e0b;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.tour-price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.tour-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* --- GetYourGuide Live Availability Widgets --- */
.gyg-widgets-section {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  margin: 3.5rem 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.gyg-widgets-header {
  text-align: center;
  margin-bottom: 2rem;
}
.gyg-widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.gyg-widget-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

/* --- Mobile Sticky Booking Bar (.sticky-book) --- */
.sticky-book {
  display: none;
}
@media (max-width: 768px) {
  .sticky-book {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 0.65rem 1rem max(0.65rem, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.12);
    z-index: 1100;
  }
  .sticky-book-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .sticky-book-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }
  .sticky-book-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .sticky-book-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-orange);
  }
  .sticky-book-usd {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
  }
  .sticky-book-btn {
    flex-shrink: 0;
    background: var(--accent-orange);
    color: #ffffff !important;
    padding: 0.65rem 1.15rem;
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.25);
  }
  body {
    padding-bottom: 72px;
  }
}

/* --- In-Article Conversion Callout Box (.article-cta-box) --- */
.article-cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
  border: 2px solid var(--accent-orange);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  margin: 3rem 0;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12);
  position: relative;
}
.article-cta-badge {
  display: inline-block;
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.article-cta-title {
  font-size: 1.45rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.article-cta-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.article-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* Video Showcase Section */
.video-showcase-section {
  margin: 3.5rem 0;
  text-align: center;
}
.video-showcase-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1rem;
}
.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-color, #e2e8f0);
  background: #000000;
  margin-top: 1.5rem;
}
.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ==========================================================================
   TRANSIT & PARKING MODERNIZATION COMPONENTS (Page 1)
   ========================================================================== */

.transit-cmp-section {
  margin: 3.5rem 0;
}
.transit-cmp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.75rem auto;
}
.transit-cmp-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.transit-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
}
.transit-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.transit-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #ffffff;
}
.transit-table th {
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.15rem 1.15rem;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.transit-table th:last-child {
  border-right: none;
}
.transit-table th.sticky-col,
.transit-table td.sticky-col {
  position: sticky;
  left: 0;
  z-index: 5;
}
.transit-table th.sticky-col {
  background: #0b1120;
  box-shadow: 3px 0 8px rgba(0, 0, 0, 0.15);
}
.transit-table td.sticky-col {
  background: #ffffff;
  box-shadow: 3px 0 8px rgba(15, 23, 42, 0.06);
  border-right: 2px solid var(--border-color);
}
.transit-table td {
  padding: 1.15rem 1.15rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid #f1f5f9;
  vertical-align: middle;
  color: var(--text-secondary);
  line-height: 1.5;
}
.transit-table tr:last-child td {
  border-bottom: none;
}
.transit-table tr:hover td {
  background-color: #f8fafc;
}
.transit-table tr:hover td.sticky-col {
  background-color: #f1f5f9;
}
.transit-table tr.highlight-row {
  background-color: #f0fdf4;
}
.transit-table tr.highlight-row td.sticky-col {
  background-color: #f0fdf4;
  border-left: 4px solid #10b981;
}
.transit-mode-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.transit-badge-rec {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.35rem;
}
.transit-price-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-primary);
}
.transit-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.transit-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f1f5f9;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
}
.transit-best-for {
  font-weight: 600;
  color: var(--accent-blue);
  font-size: 0.86rem;
}

/* 3-Route Driving Cards */
.routes-section {
  margin: 3.5rem 0;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.route-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-hover);
}
.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
  width: fit-content;
}
.badge-fast {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}
.badge-coastal {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.badge-scenic {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1px solid #fcd34d;
}
.route-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.route-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.route-meta-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.route-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.route-stops-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.route-stops-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.route-stops-list li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}
.route-tip-box {
  margin-top: auto;
  background: #f8fafc;
  border-left: 3px solid var(--accent-blue);
  padding: 0.75rem 0.85rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Parking Strategy & Turnstile Guide */
.parking-section {
  margin: 3.5rem 0;
}
.gates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.gate-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-hover);
}
.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
  width: fit-content;
}
.gate-seaforth {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}
.gate-foxy {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.gate-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.gate-features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.gate-features-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

/* Security Callout Box */
.security-callout-box {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-left: 6px solid #d97706;
  border-radius: var(--radius-md, 12px);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}
.security-callout-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.security-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.security-point-item {
  background: #ffffff;
  border: 1px solid #fef3c7;
  border-radius: 8px;
  padding: 1.15rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.security-point-item h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #78350f;
  margin: 0 0 0.4rem 0;
}
.security-point-item p {
  font-size: 0.85rem;
  color: #451a03;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .transit-table th, .transit-table td {
    padding: 0.85rem 0.95rem;
    font-size: 0.85rem;
  }
  .transit-table th.sticky-col,
  .transit-table td.sticky-col {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }
  .routes-grid, .gates-grid, .security-points-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 12-Month Calendar Modernization --- */
.month-calendar-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  margin: 1.5rem 0 2.5rem 0;
  position: relative;
}
.month-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.88rem;
  background: #ffffff;
}
.month-table th {
  background: #f8fafc;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: #1e293b;
  text-align: left;
  border-bottom: 2px solid #cbd5e1;
  border-right: 1px solid #f1f5f9;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.month-table th:last-child {
  border-right: none;
}
.month-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #f1f5f9;
  vertical-align: middle;
  color: #334155;
  line-height: 1.5;
}
.month-table td:last-child {
  border-right: none;
}
.month-table tr:last-child td {
  border-bottom: none;
}
.month-table tr:nth-child(even) td {
  background: #fbfdfc;
}
.month-table th.month-sticky,
.month-table td.month-sticky {
  position: sticky;
  left: 0;
  z-index: 5;
  font-weight: 700;
  border-right: 2px solid #e2e8f0 !important;
  width: 130px;
  min-width: 130px;
  max-width: 130px;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.04);
}
.month-table th.month-sticky {
  background: #f1f5f9;
  z-index: 6;
}
.month-table tr:nth-child(odd) td.month-sticky {
  background: #ffffff;
}
.month-table tr:nth-child(even) td.month-sticky {
  background: #fbfdfc;
}

/* Crowd Badges */
.crowd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.crowd-high {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.crowd-med {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.crowd-low {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* --- Seasonal Comparison Grid --- */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.season-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}
.season-card.season-featured {
  border: 2px solid #10b981;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 110px);
}
.season-featured-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}
.season-header {
  margin-bottom: 1.15rem;
}
.season-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.season-pill-summer { background: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }
.season-pill-autumn { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.season-pill-winter { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.season-pill-spring { background: #fce7f3; color: #be185d; border: 1px solid #fbcfe8; }
.season-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.35rem 0;
}
.season-months {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}
.season-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  border: 1px solid #edf2f7;
}
.season-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.season-stat-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 0.15rem;
}
.season-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #334155;
  flex-grow: 1;
}
.season-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}
.season-pro-tip {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
  margin-top: auto;
  border-left: 3px solid #64748b;
}

/* --- Daily Hour-by-Hour Timeline --- */
.timeline-container {
  margin: 2.5rem 0;
  position: relative;
}
.timeline-track {
  position: relative;
  padding-left: 2.8rem;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, #10b981 0%, #0284c7 50%, #f59e0b 100%);
  border-radius: 3px;
}
.timeline-node {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-node:last-child {
  margin-bottom: 0;
}
.timeline-marker {
  position: absolute;
  left: -2.8rem;
  top: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}
.timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.35rem 1.6rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.timeline-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}
.timeline-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
}
.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}
.timeline-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 0.85rem 0;
}
.timeline-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #f8fafc;
  border-left: 3px solid #0284c7;
  border-radius: 0 6px 6px 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.83rem;
  color: #334155;
  line-height: 1.45;
}

/* --- Molting Advisory Callout Box --- */
.molt-advisory-box {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-left: 6px solid #d97706;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.06);
}
.molt-advisory-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.molt-advisory-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #78350f;
  margin: 0 0 0.85rem 0;
}
.molt-advisory-lead {
  font-size: 0.98rem;
  color: #451a03;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.molt-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.molt-rule-item {
  background: #ffffff;
  border: 1px solid #fef3c7;
  border-radius: 8px;
  padding: 1rem;
}
.molt-rule-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 0.35rem 0;
}
.molt-rule-item p {
  font-size: 0.84rem;
  color: #451a03;
  line-height: 1.45;
  margin: 0;
}

/* --- Responsive Video Component --- */
.video-container-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2.5rem 0;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}
.video-wrapper-16x9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #000000;
}
.video-wrapper-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .timeline-track {
    padding-left: 2.2rem;
  }
  .timeline-track::before {
    left: 15px;
  }
  .timeline-marker {
    left: -2.2rem;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .seasonal-grid {
    grid-template-columns: 1fr;
  }
  .month-table th, .month-table td {
    padding: 0.85rem 0.9rem;
    font-size: 0.82rem;
  }
  .month-table th.month-sticky,
  .month-table td.month-sticky {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
  }
}


/* ==========================================================================
   STATIC SITE FACTORY 2.0 - CRO MOBILE ADAPTIVITY & UX MASTER SUITE (2026)
   ========================================================================== */

/* 1. TOP ANNOUNCEMENT BAR */
.top-bar {
  background: #090d16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #94a3b8;
  padding: 0.4rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}
.top-notice {
  font-weight: 500;
  color: #cbd5e1;
}

/* 2. SITE HEADER & NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f172a;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.2);
}
.nav-container {
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none !important;
}
.logo-mark {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: #e2e8f0;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}
.burger-menu {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.2s;
}
.burger-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 3. HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem 0;
  overflow: hidden;
}
.hero-small {
  padding: 3.25rem 0 2.5rem 0;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}
.badge-primary {
  background: var(--accent-orange);
  color: #ffffff;
}
.badge-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-title {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 820px;
  margin-bottom: 2rem;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin-bottom: 2.25rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.55);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

/* 4. MAIN CONTENT & ARTICLE LAYOUT */
main#main-content {
  padding-bottom: 90px; /* Offset for mobile sticky booking bar */
}
.content-wrapper {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
.content-article {
  max-width: 960px;
  margin: 0 auto;
}
.content-article p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}
.article-header {
  margin-bottom: 1.5rem;
}
.article-tag {
  display: inline-block;
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -0.25rem;
}
.article-figure {
  margin: 2.25rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.article-img {
  width: 100%;
  height: auto;
  display: block;
}
.article-figure figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  line-height: 1.5;
}

/* 5. KEY TAKEAWAYS (TL;DR) CALLOUT */
.ia-takeaways {
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-left: 5px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.06);
}
.ia-takeaways-header {
  margin-bottom: 1rem;
}
.ia-takeaways-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}
.ia-takeaways-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
}
.ia-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ia-takeaways-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.ia-takeaways-item:last-child {
  margin-bottom: 0;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ia-takeaways-warning {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  color: #92400e;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* 6. 4-TOUR COMPARISON MATRIX ENGINE */
.cmp-section {
  margin: 3.5rem 0;
}
.cmp-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 780px;
}
.cmp-table th, .cmp-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  font-size: 0.92rem;
}
.cmp-th-feature {
  width: 170px;
  min-width: 170px;
  background: #f8fafc;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cmp-row-label {
  background: #f8fafc;
  font-weight: 700;
  color: var(--text-primary);
}
.cmp-th-tour {
  width: 25%;
  min-width: 190px;
}
.feat-col {
  background: #f0fdf4;
  border-left: 2px solid #86efac;
  border-right: 2px solid #86efac;
}
.bestseller-col {
  background: #fffbeb;
  border-left: 2px solid #fde68a;
  border-right: 2px solid #fde68a;
}
.cmp-tour-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cmp-tour-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.badge-guruwalk {
  background: #15803d;
  color: #ffffff;
}
.badge-exclusive {
  background: #0284c7;
  color: #ffffff;
}
.badge-history {
  background: #475569;
  color: #ffffff;
}
.badge-bestseller {
  background: #ea580c;
  color: #ffffff;
}
.cmp-tour-title {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}
.cmp-provider-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.why-free-link {
  display: inline-block;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #15803d !important;
  background: #dcfce7 !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
}
.why-free-link:hover {
  background: #bbf7d0 !important;
  color: #14532d !important;
}
.cmp-price-value {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.1;
}
.text-free {
  color: #15803d;
}
.cmp-price-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.cmp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}
.cmp-feature-list li {
  margin-bottom: 0.35rem;
  padding-left: 1rem;
  position: relative;
}
.cmp-feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 900;
}
.cmp-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cmp-btn-guruwalk {
  background: #15803d;
  color: #ffffff !important;
}
.cmp-btn-guruwalk:hover {
  background: #166534;
  transform: translateY(-1px);
}
.cmp-btn-gyg {
  background: var(--accent-orange);
  color: #ffffff !important;
}
.cmp-btn-gyg:hover {
  background: #ea580c;
  transform: translateY(-1px);
}
.cmp-btn-viator {
  background: #0284c7;
  color: #ffffff !important;
}
.cmp-btn-viator:hover {
  background: #0369a1;
  transform: translateY(-1px);
}
.btn-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.35rem;
}

/* 7. TOUR CARDS GRID */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 2rem 0;
}
.tour-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}
.tour-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.tour-card:hover .tour-card-img {
  transform: scale(1.05);
}
.tour-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.card-why-free-link {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #15803d !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
}
.tour-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.tour-rating {
  color: #d97706;
}
.tour-card-title {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.tour-card-title a {
  color: var(--text-primary) !important;
  text-decoration: none !important;
  background: none !important;
  padding: 0 !important;
}
.tour-card-title a:hover {
  color: var(--accent-blue) !important;
}
.tour-highlights-mini {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.tour-highlights-mini li {
  margin-bottom: 0.35rem;
  padding-left: 1rem;
  position: relative;
}
.tour-highlights-mini li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #15803d;
  font-weight: 900;
}
.tour-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.tour-price-block {
  display: flex;
  flex-direction: column;
}
.price-from {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1;
}
.price-curr {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.btn-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-guruwalk {
  background: #15803d;
  color: #ffffff !important;
}
.btn-guruwalk:hover {
  background: #166534;
}
.btn-gyg {
  background: var(--accent-orange);
  color: #ffffff !important;
}
.btn-gyg:hover {
  background: #ea580c;
}
.btn-viator {
  background: #0284c7;
  color: #ffffff !important;
}
.btn-viator:hover {
  background: #0369a1;
}

/* 8. IN-ARTICLE CONVERSION CALLOUT BOX */
.article-cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 3.5rem 0;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.article-cta-content {
  max-width: 780px;
}
.cta-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 0.4rem;
}
.cta-title {
  color: #ffffff;
  font-size: 1.45rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}
.cta-desc {
  color: #94a3b8;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-cta.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff !important;
}
.btn-cta.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-cta.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* 9. STICKY MOBILE BOOKING BAR */
.sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
.sticky-book-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-book-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.sticky-book-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #38bdf8;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.sticky-book-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-book-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-orange);
  font-size: 1.1rem;
  white-space: nowrap;
}
.sticky-book-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.sticky-why-free-link {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #38bdf8 !important;
  text-decoration: underline !important;
  background: none !important;
  padding: 0 4px !important;
}
.btn-sticky-cta {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4);
}

/* 10. FAQ ACCORDIONS */
.faq-section {
  margin: 3.5rem 0;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s ease;
}
.faq-question:hover {
  background: #f8fafc;
}
.faq-icon {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent-blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.4rem 1.25rem 1.4rem;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-item.active .faq-answer {
  display: block;
}

/* 11. POI DEEP DIVE CARDS */
.poi-deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.poi-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.poi-card:hover {
  border-color: var(--accent-blue);
}
.poi-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.poi-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #bae6fd;
  line-height: 1;
}
.poi-heading h3 {
  font-size: 1.15rem;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}
.poi-heading h3 a {
  color: var(--text-primary) !important;
  text-decoration: none !important;
  background: none !important;
  padding: 0 !important;
}
.poi-heading h3 a:hover {
  color: var(--accent-blue) !important;
}
.poi-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.poi-quick-meta {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* 12. SITE FOOTER */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.footer-meta-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-author-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-blue);
}
.footer-meta-author strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
}
.footer-meta-author span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}
.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer-links a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  background: none !important;
  padding: 0 !important;
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-highlight-link {
  color: #38bdf8 !important;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
}
.footer-affiliate-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   13. MOBILE RESPONSIVE MEDIA QUERIES (UX BREAKPOINTS)
   ========================================================================== */

/* Tablet & Mobile Nav (< 992px) */
@media (max-width: 992px) {
  .burger-menu {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #0f172a;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    padding: 5rem 1.75rem 2rem 1.75rem;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 1001;
  }
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    width: 100%;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    padding: 0.65rem 0.85rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Standard Mobile Phones (< 768px) */
@media (max-width: 768px) {
  .top-notice {
    display: none; /* Keep top bar clean on mobile */
  }
  .top-bar-inner {
    justify-content: center;
  }
  .hero-section {
    padding: 3rem 0 2rem 0;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero {
    width: 100%;
    text-align: center;
  }
  .ia-takeaways {
    padding: 1.25rem 1.4rem;
  }
  
  /* Sticky Table Column on Mobile */
  .cmp-table th.cmp-th-feature,
  .cmp-table td.cmp-row-label {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #f8fafc;
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.08);
  }
  .cmp-th-tour {
    min-width: 160px;
  }
  
  .sticky-book-badge {
    display: none; /* Preserve space for title and CTA */
  }
  .sticky-book-title {
    font-size: 0.85rem;
    max-width: 140px;
  }
  .sticky-book-price {
    font-size: 0.95rem;
  }
  .btn-sticky-cta {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Small Screens (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .logo-text {
    font-size: 1rem;
  }
  .logo-mark {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta {
    width: 100%;
  }
  .sticky-why-free-link {
    display: none;
  }
  .sticky-book-title {
    max-width: 110px;
  }
}
