/* ============================================================
   AKUMAL SCOOTERS — Tropical Modern Theme
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary palette — ocean & tropical */
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --ocean-400: #22d3ee;
  --ocean-500: #06b6d4;
  --ocean-600: #0891b2;
  --ocean-700: #0e7490;

  --sand-50: #fefce8;
  --sand-100: #fef9c3;
  --sand-200: #fef08a;
  --sand-300: #fde047;

  --coral-400: #fb7185;
  --coral-500: #f43f5e;

  /* Neutrals */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --primary: var(--teal-600);
  --primary-light: var(--teal-400);
  --primary-dark: var(--teal-800);
  --accent: var(--ocean-500);
  --text: var(--gray-800);
  --text-light: var(--gray-500);
  --text-inverse: #ffffff;
  --bg: #ffffff;
  --bg-alt: var(--gray-50);
  --bg-dark: var(--gray-900);

  /* Layout */
  --container-max: 1200px;
  --section-padding: 100px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

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

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: var(--teal-50);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--ocean-600));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(14, 116, 144, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 116, 144, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--teal-300);
}

.btn-outline:hover {
  background: var(--teal-50);
  border-color: var(--primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  z-index: 1000;
}

.logo-icon { font-size: 1.5rem; }

.logo-text { color: var(--text-inverse); }
.navbar.scrolled .logo-text { color: var(--gray-900); }

.logo-accent { color: var(--teal-400); }
.navbar.scrolled .logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.nav-links a:hover { color: white; }

.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--gray-900); }

.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px !important;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--teal-600), var(--ocean-600)) !important;
  color: white !important;
  border-color: transparent;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

.navbar.scrolled .nav-toggle span { background: var(--gray-900); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 23, 42, 0.45) 0%,
      rgba(14, 116, 144, 0.55) 40%,
      rgba(6, 182, 212, 0.7) 100%
    ),
    url('https://images.pexels.com/photos/12858509/pexels-photo-12858509.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

/* Animated wave-like shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(254, 240, 138, 0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sand-200);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--sand-200), var(--teal-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-cta-group .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta-group .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-indicator {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* --- Features --- */
.features {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--teal-100);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Scooter Showcase --- */
.scooter-showcase {
  padding: var(--section-padding) 0;
  background: var(--bg-alt);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.showcase-specs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spec-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

.spec-item:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.spec-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.spec-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.spec-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.spec-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.spec-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 40px;
}

/* --- Explore Akumal --- */
.explore {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.explore-grid-5 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}

.explore-grid-5 .explore-card-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.explore-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 240px;
  cursor: pointer;
  transition: transform var(--transition);
}

.explore-card:hover {
  transform: translateY(-4px);
}

.explore-card-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 500px;
}

.explore-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.explore-card:hover .explore-card-bg {
  transform: scale(1.05);
}

.explore-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  color: white;
}

.explore-distance {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}

.explore-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.explore-card-large h3 {
  font-size: 1.8rem;
}

.explore-card p {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* --- How It Works --- */
.how-it-works {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--teal-50) 100%);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 28px;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-200), var(--teal-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  color: var(--teal-300);
}

/* --- Pricing --- */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
  border-color: var(--teal-400);
  box-shadow: 0 8px 30px rgba(14, 116, 144, 0.15);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-popular,
.pricing-save {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-popular {
  background: linear-gradient(135deg, var(--teal-600), var(--ocean-600));
  color: white;
}

.pricing-save {
  background: linear-gradient(135deg, var(--coral-500), #f97316);
  color: white;
}

.pricing-compare {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: -16px;
  margin-bottom: 8px;
}
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 24px 0;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.price-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--teal-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 32px;
}

/* --- Social Proof --- */
.social-proof {
  padding: var(--section-padding) 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(240, 253, 250, 0.92) 100%),
    url('https://images.pexels.com/photos/12858509/pexels-photo-12858509.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: var(--sand-300);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

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

/* --- Booking Section --- */
.booking-section {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.booking-form-centered {
  max-width: 640px;
  margin: 0 auto;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr !important;
}

/* --- Form --- */
.contact-form-wrap {
  background: var(--bg-alt);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.tos-agreement {
  padding: 16px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: 12px;
}

.tos-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.tos-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tos-checkmark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}

.tos-checkmark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s;
}

.tos-label input:checked ~ .tos-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.tos-label input:checked ~ .tos-checkmark::after {
  transform: rotate(45deg) scale(1);
}

.tos-label input:focus-visible ~ .tos-checkmark {
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.tos-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.tos-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* --- Availability Calendar --- */
.availability-calendar {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.cal-nav {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cal-nav:hover {
  background: var(--teal-50);
  border-color: var(--teal-200);
  color: var(--primary);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: none;
  color: var(--gray-700);
  transition: all 0.15s ease;
  font-family: inherit;
  position: relative;
}

.cal-day-num {
  font-weight: 600;
  line-height: 1;
}

.cal-day-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.2;
}

.cal-badge-available {
  background: var(--teal-50);
  color: var(--teal-700);
}

.cal-badge-limited {
  background: #fef3c7;
  color: #92400e;
}

.cal-badge-full {
  background: #fee2e2;
  color: #991b1b;
}

.cal-day-empty { cursor: default; }

.cal-day-past {
  color: var(--gray-300);
  cursor: default;
}

.cal-day-available:hover {
  background: var(--teal-50);
  color: var(--primary);
}

.cal-day-limited:hover {
  background: #fef3c7;
}

.cal-day-full {
  color: var(--gray-300);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day-sunday {
  color: var(--gray-300);
  cursor: not-allowed;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.03) 3px,
    rgba(0,0,0,0.03) 6px
  );
}

.cal-day-start,
.cal-day-end {
  background: linear-gradient(135deg, var(--teal-600), var(--ocean-600)) !important;
  color: white !important;
}

.cal-day-start .cal-day-badge,
.cal-day-end .cal-day-badge {
  background: rgba(255,255,255,0.3);
  color: white;
}

.cal-day-in-range {
  background: var(--teal-50) !important;
  color: var(--teal-700) !important;
}

.cal-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-light);
}


/* --- Booking Summary --- */
.booking-summary {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--border-radius-sm);
  padding: 16px;
}

.summary-dates {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--teal-100);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.summary-discount {
  font-size: 0.8rem;
  color: var(--teal-700);
  font-weight: 600;
  margin-top: 6px;
}

.summary-availability {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--teal-100);
}

.summary-available { color: var(--teal-700); }

.summary-unavailable { color: var(--coral-500); }

/* --- Booking Confirmation --- */
.booking-confirmation {
  text-align: center;
  padding: 20px 0;
}

.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.booking-confirmation h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.booking-confirmation > p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.confirm-details {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.confirm-row:last-child { border-bottom: none; }

.confirm-row span { color: var(--text-light); }
.confirm-row strong { color: var(--gray-900); }

.confirm-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* --- Payment Section --- */
.payment-section {
  background: white;
  border: 2px solid #635bff;
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.payment-section-stripe {
  border-color: #635bff;
}

.payment-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #635bff;
  margin-bottom: 4px;
}

.payment-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1;
}

.qr-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.qr-container img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qr-instruction {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.btn-stripe {
  background: #635bff;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
}

.btn-stripe:hover {
  background: #4b45c6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 91, 255, 0.4);
}

.btn-stripe:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

.payment-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray-400);
  font-size: 0.8rem;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* --- FAQ --- */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--primary); }

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text { color: white; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--teal-400); }

.footer-links li:not(:has(a)) {
  font-size: 0.85rem;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s var(--ease) forwards;
  opacity: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-image-placeholder {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .explore-card-large,
  .explore-grid-5 .explore-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .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);
  }
  .nav-toggle.active span {
    background: var(--gray-900) !important;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    color: var(--gray-800) !important;
    padding: 14px 24px;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: none;
    width: auto;
    display: block;
  }

  .nav-links a:hover {
    color: var(--primary) !important;
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--teal-600), var(--ocean-600)) !important;
    color: white !important;
    text-align: center;
    border: none !important;
    margin-top: 32px !important;
    padding: 16px 48px !important;
    font-size: 1.1rem !important;
    border-radius: 100px;
    display: inline-block !important;
  }

  .hero { min-height: 100svh; padding: 100px 0 60px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-scroll { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
    height: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }


  .form-row, .form-row-3 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

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

  .explore-card-large {
    min-height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p { margin: 12px auto 0; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 300px; }
}
