/* ==========================================================================
   Raccoon Island Boat Tours Miami - Master Stylesheet
   Theme: Light Tropical Resort & High-Conversion Gold
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette */
  --bg-page: #FAFCFF;
  --bg-card: #FFFFFF;
  --bg-widget-tint: #EBF5F8;
  --bg-subtle: #F3F7FA;
  
  --text-heading: #0F2232;
  --text-body: #3A4B58;
  --text-muted: #627785;
  --text-light: #8BA0B0;
  
  --primary-orange: #FF6B00;
  --primary-orange-hover: #FF5500;
  --primary-cta-gradient: linear-gradient(135deg, #FF6B00 0%, #FF5500 100%);
  --primary-cta-shadow: 0 10px 20px rgba(255, 107, 0, 0.35);

  --badge-teal: #00A896;
  --badge-teal-bg: #E6F6F4;
  --gold-accent: #FFB703;
  --status-green: #10B981;
  --status-green-bg: #D1FAE5;
  
  --border-light: rgba(15, 34, 50, 0.08);
  --border-teal: rgba(0, 168, 150, 0.2);

  --shadow-sm: 0 2px 8px rgba(0, 30, 60, 0.04);
  --shadow-card: 0 8px 24px rgba(0, 40, 80, 0.06);
  --shadow-hover: 0 16px 36px rgba(0, 40, 80, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px; /* Accessible base font size for older visitors */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky CTA bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--badge-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-orange);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-spacing {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem auto;
}

.section-header p.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-tag {
  display: inline-block;
  background-color: var(--badge-teal-bg);
  color: var(--badge-teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-cta-gradient);
  color: #FFFFFF !important;
  box-shadow: var(--primary-cta-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 107, 0, 0.45);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--badge-teal);
  color: var(--badge-teal);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-teal {
  background-color: var(--badge-teal-bg);
  color: var(--badge-teal);
}

.badge-gold {
  background-color: #FFF9E6;
  color: #B7791F;
}

.badge-purple {
  background-color: #F3E8FF;
  color: #6B21A8;
}

.badge-orange {
  background-color: #FFF1E6;
  color: var(--primary-orange);
}

.rating-stars {
  color: var(--gold-accent);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(250, 252, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-heading);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo span.logo-highlight {
  color: var(--primary-orange);
}

.site-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-cta-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.25vw, 1.75rem);
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--text-heading);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Burger Menu Toggle */
.burger-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-heading);
  font-size: 1.5rem;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-heading);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 34, 50, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Nav Breakpoint */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .burger-menu-btn {
    display: block;
  }
}

/* ==========================================================================
   Section 1: Hero Section & Instant Tour Finder
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #EBF5F8 0%, #FAFCFF 100%);
  padding: 3.5rem 0 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-heading);
}

.hero-content h1 span.gradient-text {
  background: var(--primary-cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Trust Badges Bar */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
}

.trust-badge-item i {
  color: var(--badge-teal);
  font-size: 1.1rem;
}

/* Instant Tour Finder Widget Card */
.instant-finder-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 12px 32px rgba(0, 40, 80, 0.08);
  border: 1px solid var(--border-teal);
  position: relative;
}

.instant-finder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary-cta-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.finder-header {
  margin-bottom: 1.5rem;
}

.finder-header h3 {
  font-size: 1.35rem;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.finder-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-page);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-select:focus {
  border-color: var(--badge-teal);
}

/* ==========================================================================
   Section 2: Weather & Tides Widget
   ========================================================================== */
.weather-widget-container {
  background-color: var(--bg-widget-tint);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-top: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.weather-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 168, 150, 0.15);
}

.weather-title-group h3 {
  font-size: 1.4rem;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--status-green-bg);
  color: #065F46;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--status-green);
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.weather-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.metric-icon {
  font-size: 1.75rem;
  color: var(--badge-teal);
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-top: 0.25rem;
}

.tide-pro-tip {
  background-color: #FFFFFF;
  border-left: 4px solid var(--badge-teal);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 500;
}

/* ==========================================================================
   Section 3 & 8: Tour Cards & Catalog Grids
   ========================================================================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tour-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 168, 150, 0.3);
}

.tour-card-header {
  position: relative;
  height: 210px;
  background-color: #0F2232;
  overflow: hidden;
}

.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.tour-floating-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.tour-provider-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 34, 50, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}

.tour-card-title {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--text-heading);
  min-height: 2.7rem;
}

.tour-highlights-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tour-highlights-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.tour-highlights-list li i {
  color: var(--badge-teal);
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

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

.tour-price-group {
  display: flex;
  flex-direction: column;
}

.tour-price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}

.tour-price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section 4: Target Audience Segment Cards
   ========================================================================== */
.audience-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--badge-teal);
  box-shadow: var(--shadow-card);
}

.audience-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-widget-tint);
  color: var(--badge-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem auto;
}

.audience-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Section 5: Transport & Access Guide
   ========================================================================== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.transport-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.transport-card-flex {
  display: flex;
  gap: 1.75rem;
  align-items: stretch;
}

.transport-media {
  width: 320px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.transport-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
}

@media (max-width: 900px) {
  .transport-card-flex {
    flex-direction: column;
  }
  .transport-media {
    width: 100%;
    height: 220px;
  }
}

.transport-card.recommended {
  border: 2px solid var(--badge-teal);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAF9 100%);
}

.recommended-ribbon {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background-color: var(--badge-teal);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.transport-icon {
  font-size: 2.2rem;
  color: var(--badge-teal);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.transport-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.transport-info p {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* ==========================================================================
   Section 6: Interactive Map & Route Overview
   ========================================================================== */
.map-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

#map {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  z-index: 1;
}

/* ==========================================================================
   Section 7: Wildlife & Safety Field Guide
   ========================================================================== */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.kb-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.kb-card h3 {
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.kb-card h3 i {
  color: var(--badge-teal);
}

.kb-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   Section 9: Detailed Tour Comparison Matrix
   ========================================================================== */
.matrix-container {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 720px;
}

.matrix-table th {
  background-color: var(--bg-widget-tint);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid var(--border-teal);
}

.matrix-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-body);
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-table tr:nth-child(even) {
  background-color: rgba(250, 252, 255, 0.5);
}

/* ==========================================================================
   Section 10: Verified Visitor Reviews & Photo Wall
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(0, 168, 150, 0.12);
  line-height: 1;
}

.review-rating {
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-heading);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--badge-teal-bg);
  color: var(--badge-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.author-info h4 {
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Photo Wall Gallery */
.photo-wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-wall-item {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.photo-wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.photo-wall-item:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   Section 11: Comprehensive SEO FAQ Accordion
   ========================================================================== */
.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.35rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-widget-tint);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--badge-teal);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 500px;
}

/* ==========================================================================
   Conversion & Floating Components
   ========================================================================== */
/* Sticky Mobile Bottom Booking Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(15, 34, 50, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-teal);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.sticky-mobile-bar.visible {
  transform: translateY(0);
}

.mobile-bar-info {
  display: flex;
  flex-direction: column;
}

.mobile-bar-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.mobile-bar-price {
  color: var(--gold-accent);
  font-size: 0.8rem;
}

@media (min-width: 769px) {
  .sticky-mobile-bar {
    display: none !important;
  }
}

/* Exit Intent Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 34, 50, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: var(--badge-teal-bg);
  color: var(--badge-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem auto;
}

.modal-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-box p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #0B1926;
  color: #A0B3C6;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: #7E94A8;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #92A7BC;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #61788E;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .weather-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .section-spacing {
    padding: 3rem 0;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .audience-cards-grid {
    grid-template-columns: 1fr;
  }
  .transport-grid {
    grid-template-columns: 1fr;
  }
  .kb-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .weather-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
