/* ============================================================
   ZANTE POSEIDON WATERSPORTS — Main Stylesheet
   Palette: Deep Ocean Blue (#0a1628), Neon Cyan (#00e5ff), White
   Mobile-first responsive design
   ============================================================ */

/* -------- CSS VARIABLES -------- */
:root {
  --deep-ocean: #0a1628;
  --ocean-dark: #0d1f3c;
  --ocean-mid: #132848;
  --ocean-light: #1a3a5c;
  --neon-cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.3);
  --cyan-soft: #b2f5fc;
  --white: #ffffff;
  --off-white: #f0f8ff;
  --light-gray: #e8f4fd;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dark: #0a1628;
  --success: #00e676;
  --warning: #ffab00;
  --danger: #ff5252;
  --whatsapp: #25d366;
  --instagram: #e4405f;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- RESET & BASE -------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--deep-ocean);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--cyan-soft);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------- PRELOADER -------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--deep-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.trident-loader {
  font-size: 3rem;
  animation: pulse 1s ease-in-out infinite, float 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.preloader-inner p {
  margin-top: 16px;
  color: var(--neon-cyan);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* -------- NAVBAR -------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px var(--cyan-glow));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--white), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text small {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  font-weight: 600;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
}

.lang-selector {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-selector::before {
  content: '🌐';
  font-size: 1rem;
  opacity: 0.7;
}

.lang-btn {
  background: rgba(0, 229, 255, 0.1);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 8px;
  transition: var(--transition);
  line-height: 1;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  background: rgba(0, 229, 255, 0.25);
  transform: scale(1.15);
}

.lang-btn.active {
  border-color: var(--neon-cyan);
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
  color: var(--deep-ocean);
  font-weight: 700;
}

.nav-cta {
  display: none;
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  color: var(--deep-ocean) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--ocean-dark);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    display: flex;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 16px;
  }

  .nav-links::after {
    content: '';
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Mobile lang selector inside nav */
  .lang-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 20px 0;
  }

  .lang-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

/* Desktop Nav */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .lang-selector {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* -------- HERO SECTION -------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 100, 200, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--deep-ocean) 0%, #061224 50%, #0a1628 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.3) 0%,
    rgba(10, 22, 40, 0.5) 50%,
    rgba(10, 22, 40, 0.9) 100%
  );
}

/* Animated Waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  animation: waveAnim 8s linear infinite;
}

.wave-1 {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 229, 255, 0.08) 100%);
  border-radius: 100% 100% 0 0;
  height: 60px;
  bottom: 0;
  animation-duration: 6s;
}

.wave-2 {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 229, 255, 0.05) 100%);
  border-radius: 100% 100% 0 0;
  height: 80px;
  bottom: 0;
  animation-duration: 8s;
  animation-direction: reverse;
}

.wave-3 {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 229, 255, 0.03) 100%);
  border-radius: 100% 100% 0 0;
  height: 100px;
  bottom: 0;
  animation-duration: 10s;
}

@keyframes waveAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4, #0091ea, var(--neon-cyan));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 1;
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  color: var(--deep-ocean);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.5);
  color: var(--deep-ocean);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
}

.btn-secondary {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.6); }
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* -------- SECTIONS -------- */
.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--ocean-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -------- SERVICES -------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--ocean-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

.services .service-card {
  background: var(--ocean-mid);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: var(--neon-cyan);
  background: linear-gradient(135deg, var(--ocean-mid), rgba(0, 229, 255, 0.05));
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--neon-cyan);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(0, 229, 255, 0.15);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.featured-badge {
  background: rgba(0, 229, 255, 0.25) !important;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* -------- FLEET -------- */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fleet-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 229, 255, 0.3);
}

.fleet-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fleet-image-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fleet-emoji {
  font-size: 3rem;
}

.fleet-badge-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.25);
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(5px);
}

.fleet-name-overlay {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.fleet-info {
  padding: 24px;
}

.fleet-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fleet-model {
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: rgba(0, 229, 255, 0.05);
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.spec svg {
  width: 14px;
  height: 14px;
  color: var(--neon-cyan);
}

.fleet-reg {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* -------- PRICING -------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  height: 50px;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.3);
}

.pricing-card.popular {
  border-color: var(--neon-cyan);
  background: linear-gradient(135deg, var(--ocean-mid), rgba(0, 229, 255, 0.08));
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-card.premium {
  border-color: #ffd740;
  background: linear-gradient(135deg, var(--ocean-mid), rgba(255, 215, 64, 0.05));
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  color: var(--deep-ocean);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.premium-tag {
  background: linear-gradient(135deg, #ffd740, #ff8f00) !important;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-duration {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  vertical-align: top;
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* Paragliding pricing */
.paragliding-pricing {
  margin-top: 16px;
}

.para-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.para-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.para-icon {
  width: 48px;
  height: 48px;
  color: var(--neon-cyan);
}

.para-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.para-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.para-price-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.inline-price {
  margin-bottom: 0 !important;
}

/* -------- SAFETY -------- */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.safety-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.safety-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
}

.safety-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--neon-cyan);
}

.safety-icon svg {
  width: 24px;
  height: 24px;
}

.safety-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.safety-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Policy */
.policy-section {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
}

.policy-section > h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 28px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.policy-item {
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid;
}

.policy-green {
  background: rgba(0, 230, 118, 0.08);
  border-color: var(--success);
}

.policy-yellow {
  background: rgba(255, 171, 0, 0.08);
  border-color: var(--warning);
}

.policy-blue {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--neon-cyan);
}

.policy-purple {
  background: rgba(156, 39, 176, 0.08);
  border-color: #ce93d8;
}

.policy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
}

.policy-icon i {
  color: var(--neon-cyan);
  font-size: 1.8rem;
}

.policy-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.policy-item p {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* -------- GALLERY -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 2rem;
}

.gallery-overlay p {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* Reviews */
.reviews-section {
  text-align: center;
}

.reviews-section > h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.review-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  scroll-snap-align: start;
  min-width: 280px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
}

.review-stars {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
}

.review-icon i {
  color: var(--neon-cyan);
  font-size: 1.4rem;
}

.review-quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  margin-right: 6px;
  margin-bottom: 8px;
}

.review-quote-icon i {
  color: var(--neon-cyan);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* -------- BOOKING -------- */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.booking-form {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  background: var(--ocean-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--ocean-dark);
  color: var(--white);
}

.form-agreement {
  margin: 20px 0;
}

.form-agreement label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.form-agreement input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--neon-cyan);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 12px;
}

.sidebar-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.hours-row span {
  color: var(--text-secondary);
}

.conditions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.condition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.condition-row > span:first-child {
  color: var(--text-secondary);
}

.condition-status {
  font-weight: 600;
}

.condition-status.good {
  color: var(--success);
}

.condition-status.warning {
  color: var(--warning);
}

.condition-status.danger {
  color: var(--danger);
}

/* -------- CONTACT -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--neon-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--text-secondary);
}

.contact-item a:hover {
  color: var(--neon-cyan);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 300px;
}

.contact-map iframe {
  display: block;
}

/* -------- FOOTER -------- */
.footer {
  background: #060e1a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--neon-cyan);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.8;
}

/* -------- CHATBOT -------- */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
  transition: var(--transition);
  position: relative;
  animation: glowPulse 3s ease-in-out infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-toggle-icon {
  font-size: 1.8rem;
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--danger);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep-ocean);
}

.chatbot-badge.hidden {
  display: none;
}

/* Chatbot Window */
.chatbot-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 370px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: var(--ocean-dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
}

.chatbot-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-dark));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  flex-shrink: 0;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.chatbot-header-info strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  display: block;
}

.chatbot-status {
  font-size: 0.7rem;
  color: var(--success);
}

.chatbot-header-actions {
  display: flex;
  gap: 8px;
}

.chatbot-lang-toggle,
.chatbot-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: var(--transition);
}

.chatbot-lang-toggle:hover,
.chatbot-close:hover {
  color: var(--neon-cyan);
}

/* Chat Messages */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.2);
  border-radius: 4px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  line-height: 1.6;
  animation: messageIn 0.3s ease-out;
}

@keyframes messageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
  align-self: flex-start;
  background: var(--ocean-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 4px;
  color: var(--text-primary);
}

.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  color: var(--deep-ocean);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-message a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.chat-message.user a {
  color: var(--deep-ocean);
}

.chat-message .chat-book-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  color: var(--deep-ocean);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.chat-message .chat-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  align-self: flex-start;
  background: var(--ocean-mid);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 4px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--neon-cyan);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick Replies */
.chatbot-quick-replies {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.quick-reply-btn {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}

.quick-reply-btn:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--neon-cyan);
}

/* Chat Input */
.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--ocean-mid);
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  background: var(--ocean-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: var(--transition);
}

.chatbot-input::placeholder {
  color: var(--text-muted);
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
}

.chatbot-send {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-ocean);
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: scale(1.1);
}

.chatbot-send svg {
  width: 18px;
  height: 18px;
}

/* -------- BACK TO TOP -------- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--ocean-mid);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--neon-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--neon-cyan);
  color: var(--deep-ocean);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* -------- FORM SUCCESS TOAST -------- */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--success);
  color: var(--deep-ocean);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
  text-align: center;
  max-width: 90vw;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* -------- RESPONSIVE: TABLET (768px+) -------- */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .booking-wrapper {
    grid-template-columns: 2fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .reviews-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .para-card {
    flex-direction: row;
    text-align: left;
  }

  .para-info {
    flex-direction: row;
    align-items: center;
    flex: 1;
  }

  .para-price-cta {
    flex-direction: row;
    align-items: center;
  }

  .service-selection-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* -------- RESPONSIVE: DESKTOP (1024px+) -------- */
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-carousel {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------- UTILITY: Smooth reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- MOBILE CHATBOT FULLSCREEN -------- */
@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 16px);
    height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    right: -12px;
    bottom: 68px;
    border-radius: var(--radius-lg);
  }

  .chatbot-container {
    bottom: 16px;
    right: 16px;
  }
}

/* -------- PRINT STYLES -------- */
@media print {
  .navbar, .chatbot-container, .back-to-top, .hero-waves, .preloader {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 20px 0;
  }
}

/* ============ BOOKING WIZARD STYLES ============ */

.booking-wizard {
  background: rgba(10, 22, 40, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}

/* Stepper - More compact */
.stepper-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.stepper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  opacity: 0.4;
  transition: all 0.4s ease;
  flex: 1;
  text-align: center;
  min-width: 100px;
}

.stepper-item.active {
  opacity: 1;
}

.stepper-item.completed {
  opacity: 0.8;
}

.stepper-item.completed .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--deep-ocean);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-ocean);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  transition: all 0.4s ease;
  font-size: 1.1rem;
}

.stepper-item.active .step-circle {
  background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
  color: var(--deep-ocean);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  transform: scale(1.1);
}

.step-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.stepper-item.active .step-title {
  color: var(--neon-cyan);
}

.stepper-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(0, 229, 255, 0.2), rgba(255,255,255,0.05));
  top: 24px;
  left: 40px;
  right: 40px;
  z-index: 1;
}

/* Wizard Steps - Less gap */
.wizard-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service Selection Grid in Booking */
.service-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.service-select-card {
  position: relative;
  cursor: pointer;
}

.service-select-card input[type='radio'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.service-select-card .card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: rgba(10, 22, 40, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 150px;
}

.service-select-card:hover .card-inner {
  background: rgba(10, 22, 40, 0.8);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.service-select-card input:checked + .card-inner {
  border-color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
}

.service-select-card input:checked + .card-inner .card-icon {
  background: var(--neon-cyan);
  color: var(--deep-ocean);
}

.card-details {
  width: 100%;
}

.card-details h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.3;
}

.card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.per-person {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Form Styles Override for Wizard */
.booking-wizard .booking-form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.booking-wizard .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
  width: 100%;
}

.booking-wizard .form-row .form-group {
  width: 100%;
}

@media (max-width: 768px) {
  .booking-wizard .form-row {
    grid-template-columns: 1fr;
  }
}

.booking-wizard .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-wizard .form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.booking-wizard .form-group input,
.booking-wizard .form-group select {
  background: rgba(13, 31, 60, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.booking-wizard .form-group input::placeholder {
  color: var(--text-muted);
}

.booking-wizard .form-group input:focus,
.booking-wizard .form-group select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
  background: rgba(13, 31, 60, 0.9);
}

.booking-wizard .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.booking-wizard .form-group select option {
  background: var(--ocean-dark);
  color: var(--white);
}

/* Date input specific styling */
input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  /* Default icon is usually white with color-scheme: dark */
  /* If we invert it, it might become black on dark background */
  /* filter: invert(1) brightness(1.2); */
  opacity: 1;
  cursor: pointer;
}

input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.booking-wizard .form-group textarea {
  background: rgba(13, 31, 60, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.booking-wizard .form-group textarea::placeholder {
  color: var(--text-muted);
}

.booking-wizard .form-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
  background: rgba(13, 31, 60, 0.9);
}

.booking-wizard .form-group input[type="date"] {
  width: 100%;
  color: var(--white);
  background: rgba(13, 31, 60, 0.7);
  padding: 12px 14px;
  min-height: 48px; /* Improve touch target */
}

.booking-wizard .form-group input[type="date"]::-webkit-calendar-picker-indicator {
  /* No filter needed if color-scheme is dark */
  /* filter: invert(1) brightness(1.2); */ 
  cursor: pointer;
  padding-right: 4px;
  opacity: 1;
}

.booking-wizard .form-agreement {
  margin: 24px 0;
  padding: 16px;
  background: rgba(0, 229, 255, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--neon-cyan);
}

.booking-wizard .form-agreement label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.6;
}

.booking-wizard .form-agreement input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--neon-cyan);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Wizard Actions - More professional */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}

.wizard-actions.right {
  justify-content: flex-end;
}

.wizard-actions .btn {
  padding: 14px 32px;
}

/* Confirmation Summary - Better styling */
.confirmation-box {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(0, 180, 212, 0.03));
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 229, 255, 0.15);
  margin-bottom: 28px;
}

.confirmation-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--white);
}

.summary-details {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.summary-value {
  font-weight: 700;
  color: var(--neon-cyan);
}

.summary-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(0, 229, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  color: var(--neon-cyan);
  font-weight: 800;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .booking-wizard {
    padding: 20px;
  }
  .stepper-title {
    display: none; 
  }
  .card-inner {
    padding: 15px;
  }
  .card-icon {
    width: 40px;
    height: 40px;
  }
}
