/* ============================================
   VELOCITY ISLAND PARK - Design System & Styles
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --color-primary: #04263f;
  --color-secondary: #1db3dd;
  --color-accent: #ff6b35;
  --color-accent-hover: #e55a28;
  --color-secondary-hover: #17a0c7;

  /* Neutral Colors */
  --color-text: #313131;
  --color-text-light: #595959;
  --color-text-white: #ffffff;
  --color-bg-white: #ffffff;
  --color-bg-light: #f5f7fa;
  --color-bg-dark: #04263f;
  --color-bg-dark-alt: #062d4a;
  --color-border: #dddddd;
  --color-border-light: #eeeeee;

  /* Status Colors */
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-danger: #dc3545;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

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

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-sm: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: var(--space-sm) var(--space-md);
  z-index: 10000;
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: 0;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-secondary-hover);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: var(--text-4xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
h5 { font-size: var(--text-lg); margin-bottom: var(--space-sm); }
h6 { font-size: var(--text-base); margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
}

.text-accent { color: var(--color-accent); }
.text-secondary { color: var(--color-secondary); }
.text-light { color: var(--color-text-light); }
.text-white { color: var(--color-text-white); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-text-white);
}

.section-light {
  background-color: var(--color-bg-light);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  gap: var(--space-md);
}

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

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-secondary);
}

.main-nav > a::after,
.main-nav > .nav-cta a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

.main-nav > a:hover::after {
  width: 100%;
}

/* No underline animation on dropdown toggles or dropdown menu links */
.nav-dropdown-toggle::after,
.nav-dropdown-menu a::after {
  content: none;
}

.nav-cta {
  margin-left: var(--space-md);
}

.nav-cta .btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-white);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: var(--text-sm);
  box-shadow: 0 2px 8px rgba(4, 38, 63, 0.3);
}

.nav-cta .btn:hover {
  background: var(--color-bg-dark-alt);
  border-color: var(--color-bg-dark-alt);
  box-shadow: 0 4px 12px rgba(4, 38, 63, 0.4);
  transform: translateY(-1px);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > .nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 4px;
  flex-shrink: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg-light);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-text-white);
  border-color: var(--color-secondary);
}
.btn-primary:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-white);
  border-color: var(--color-secondary);
}
.btn-secondary:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-white);
  border-color: var(--color-text-white);
}
.btn-outline:hover {
  background: var(--color-text-white);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-xs);
}

.btn-book {
  background: var(--color-secondary);
  color: var(--color-text-white);
  border-color: var(--color-secondary);
  position: relative;
}
.btn-book:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,38,63,0.5) 0%, rgba(4,38,63,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero h1 {
  font-size: var(--text-5xl);
  color: var(--color-text-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero .subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (shorter) */
.hero-page {
  min-height: 300px;
}

.hero-page h1 {
  font-size: var(--text-4xl);
}

/* --- Season Banner --- */
.season-banner {
  background: linear-gradient(135deg, #1db3dd 0%, #15a3cc 100%);
  color: var(--color-text-white);
  text-align: center;
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  margin-top: var(--header-height);
  overflow: hidden;
  position: relative;
  min-height: 36px;
}

.banner-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.banner-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Pages without season banner: main needs the header offset */
main.no-banner {
  margin-top: var(--header-height);
}

.season-banner a {
  color: var(--color-text-white);
  text-decoration: underline;
  margin-left: 0.3em;
  font-weight: 700;
}

/* --- Activity Cards --- */
.activity-card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.activity-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.activity-card-body {
  padding: var(--space-lg);
}

.activity-card-body .badge {
  margin-bottom: var(--space-sm);
}

.activity-card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.activity-card-body p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.activity-card-body .btn {
  width: 100%;
}

/* Image Placeholder (for missing photos) */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-md);
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* --- Pricing Card --- */
.pricing-card {
  background: var(--color-bg-white);
  border: 2px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-accent);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-text-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: var(--text-xl);
}

.pricing-amount {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  margin: var(--space-md) 0;
  font-family: var(--font-heading);
}

.pricing-amount span {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-features {
  text-align: left;
  margin: var(--space-lg) 0;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* --- Testimonial Card --- */
.testimonial-card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

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

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

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: var(--space-md);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--transition-base);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0e8aab 100%);
  color: var(--color-text-white);
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.cta-banner h2 {
  color: var(--color-text-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  font-size: var(--text-lg);
  opacity: 0.95;
  margin-bottom: var(--space-xl);
}

.cta-banner .btn {
  background: var(--color-text-white);
  color: var(--color-primary);
  border-color: var(--color-text-white);
}
.cta-banner .btn:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

/* --- Cross-sell Strip --- */
.cross-sell {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;
}

.cross-sell h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* --- Info Bar --- */
.info-bar {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--space-xl) 0;
}

.info-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.info-item {
  text-align: center;
}

.info-item-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: var(--space-xs);
}

.info-item-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.info-item-value a {
  color: var(--color-text-white);
}
.info-item-value a:hover {
  color: var(--color-secondary);
}

/* --- Email Signup --- */
.email-signup {
  display: flex;
  gap: var(--space-sm);
  max-width: 500px;
}

.email-signup input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}

.email-signup input[type="email"]:focus {
  border-color: var(--color-secondary);
}

.email-signup button {
  padding: 14px 24px;
  background: var(--color-secondary);
  color: var(--color-text-white);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.email-signup button:hover {
  background: var(--color-secondary-hover);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* When breadcrumbs come before a hero, remove hero's top margin */
.breadcrumbs + .hero,
.breadcrumbs + .hero-page {
  margin-top: 0;
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-secondary);
}

.breadcrumbs span {
  margin: 0 var(--space-sm);
  opacity: 0.5;
}

/* --- Waiver Reminder Banner --- */
.waiver-banner {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4edf7 100%);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.waiver-banner p {
  margin: 0;
  font-size: var(--text-sm);
}

.waiver-banner strong {
  color: var(--color-primary);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--space-2xl) 0 var(--space-md);
}

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

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-brand .site-logo {
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  transition: color var(--transition-fast);
}
.footer-social a:hover {
  color: var(--color-secondary);
}

.footer-nav h4,
.footer-nav .footer-heading {
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-nav a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-text-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
  color: var(--color-text-white);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

/* --- Floating Book Now (Mobile) --- */
.floating-book {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.floating-book .btn {
  box-shadow: var(--shadow-xl);
  padding: 12px 32px;
  font-size: var(--text-sm);
}

/* --- Content Sections --- */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-section h2 {
  margin-bottom: var(--space-xl);
}

.feature-list {
  display: grid;
  gap: var(--space-sm);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.feature-list li {
  padding: var(--space-xs) 0 var(--space-xs) 1.75em;
  position: relative;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: 700;
  font-size: var(--text-lg);
  position: absolute;
  left: 0;
  top: 0.15em;
  margin-top: 2px;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* --- Tables --- */
.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
}

thead th {
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tbody td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

tbody tr:hover {
  background: var(--color-bg-light);
}

/* --- Tags/Badges --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  background: var(--color-accent);
  color: var(--color-text-white);
}

.badge-popular {
  background: var(--color-primary);
  color: var(--color-text-white);
}

/* --- Confirm Placeholder --- */
.confirm-placeholder {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--border-radius);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  color: #856404;
  display: inline-block;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- What's Open Now --- */
.park-status {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  min-height: 520px;
}

@media (max-width: 768px) {
  .park-status {
    min-height: 680px;
  }
}

.park-status-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary);
}

.park-status-header h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.park-status-date {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
}

.park-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.park-status-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.park-status-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.park-status-card.card-open {
  border-left: 4px solid var(--color-success);
}

.park-status-card.card-soon {
  border-left: 4px solid var(--color-warning);
}

.park-status-card.card-closed {
  border-left: 4px solid var(--color-border);
  opacity: 0.7;
}

.park-status-card.card-full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-dark-alt) 100%);
  border: none;
  border-left: 4px solid var(--color-success);
}

.park-status-card.card-full.card-soon {
  border-left: 4px solid var(--color-warning);
  background: var(--color-bg-light);
}

.park-status-card.card-full.card-soon .park-status-name,
.park-status-card.card-full.card-soon .park-status-name a {
  color: var(--color-text);
}

.park-status-card.card-full.card-soon .park-status-detail {
  color: var(--color-text-light);
}

.park-status-card.card-full.card-soon .park-status-hours {
  color: var(--color-text-light);
}

.park-status-card.card-full .park-status-name,
.park-status-card.card-full .park-status-name a {
  color: var(--color-text-white);
}

.park-status-card.card-full .park-status-detail {
  color: rgba(255,255,255,0.7);
}

.park-status-card.card-full .park-status-hours {
  color: rgba(255,255,255,0.7);
}

.park-status-card.card-full .status-badge {
  background: var(--color-success);
  color: #fff;
}

.park-status-info {
  flex: 1;
  min-width: 0;
}

.park-status-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: 4px;
}

.park-status-name a {
  color: inherit;
  text-decoration: none;
}

.park-status-name a:hover {
  color: var(--color-secondary);
}

.park-status-detail {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.4;
}

.park-status-hours {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

.status-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.status-badge.badge-open {
  background: rgba(40, 167, 69, 0.12);
  color: #1a7c34;
}

.status-badge.badge-soon {
  background: rgba(255, 152, 0, 0.12);
  color: #c67600;
}

.status-badge.badge-closed {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-text-light);
}

@media (max-width: 700px) {
  .park-status-grid {
    grid-template-columns: 1fr;
  }

  .park-status-card {
    padding: var(--space-lg);
  }

  .park-status-header {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.pt-0 { padding-top: 0; }
