/* ============================================================
   ASHOKA WATER PARK & RESORT — Design System
   Premium Tropical Theme | Mobile-First
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --ocean-blue: #0a4b75;
  --ocean-deep: #062d47;
  --aqua-cyan: #00d2ff;
  --aqua-light: #7de8ff;
  --aqua-glow: rgba(0, 210, 255, 0.15);

  /* Secondary Palette */
  --white: #ffffff;
  --off-white: #f8fbff;
  --sand-beige: #fcf0dd;
  --sand-light: #fef9f0;

  /* Accent */
  --sunset-orange: #ff7a45;
  --sunset-warm: #ff9f1c;
  --palm-green: #1b7a52;
  --palm-light: #28a96c;

  /* Neutral */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(10, 75, 117, 0.15);

  /* Gradients */
  --gradient-ocean: linear-gradient(135deg, #0a4b75 0%, #00a8cc 50%, #00d2ff 100%);
  --gradient-sunset: linear-gradient(135deg, #ff7a45 0%, #ff9f1c 100%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(6, 45, 71, 0.7) 0%, rgba(10, 75, 117, 0.5) 50%, rgba(0, 168, 204, 0.3) 100%);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(10,75,117,0.85) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 75, 117, 0.1);
  --shadow-lg: 0 10px 40px rgba(10, 75, 117, 0.15);
  --shadow-xl: 0 20px 60px rgba(10, 75, 117, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 210, 255, 0.3);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-luxury: 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ocean-deep);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-ocean);
  border-radius: var(--radius-full);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ocean-deep);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderPulse 2s ease-in-out infinite;
  overflow: hidden;
}

.preloader-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.preloader-logo-placeholder {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--aqua-cyan);
  text-align: center;
  line-height: 1.3;
}

.preloader-waves {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}

.preloader-waves span {
  width: 6px;
  height: 30px;
  background: var(--aqua-cyan);
  border-radius: var(--radius-full);
  animation: waveBar 1.2s ease-in-out infinite;
}

.preloader-waves span:nth-child(2) { animation-delay: 0.1s; }
.preloader-waves span:nth-child(3) { animation-delay: 0.2s; }
.preloader-waves span:nth-child(4) { animation-delay: 0.3s; }
.preloader-waves span:nth-child(5) { animation-delay: 0.4s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px 10px rgba(0, 210, 255, 0.15); }
}

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

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

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(10, 75, 117, 0.1);
  padding: 10px 0;
}

.navbar.scrolled .nav-link { color: var(--gray-700); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--ocean-blue); }
.navbar.scrolled .nav-logo-text { color: var(--ocean-blue); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo {
  height: 52px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.25));
  flex-shrink: 0;
}

.nav-logo:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.5));
}

.nav-logo img {
  height: 100%;
  width: auto;
  max-height: 48px;
  object-fit: contain;
}

.nav-logo-placeholder {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--aqua-cyan);
  font-family: var(--font-heading);
  text-align: center;
  line-height: 1.2;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition-smooth);
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px;
  background: var(--gradient-sunset);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 122, 69, 0.35);
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 69, 0.45);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
}

.navbar.scrolled .nav-toggle span { background: var(--ocean-blue); }

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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ocean-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--gradient-hero-overlay);
}

/* Floating light particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 850px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--aqua-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--aqua-cyan);
  border-radius: 50%;
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--aqua-cyan), var(--aqua-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.btn:active::after { opacity: 1; }

.btn-primary {
  padding: 16px 36px;
  background: var(--gradient-sunset);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 122, 69, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 122, 69, 0.5);
}

.btn-glass {
  padding: 16px 36px;
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow);
}

.btn-ocean {
  padding: 14px 32px;
  background: var(--gradient-ocean);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.btn-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 210, 255, 0.45);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--ocean-blue);
  border: 2px solid var(--ocean-blue);
}

.btn-outline:hover {
  background: var(--ocean-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  padding: 14px 32px;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: #20bd5a;
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ---------- Section Commons ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-light { background: var(--off-white); }
.section-sand { background: var(--sand-light); }
.section-ocean {
  background: var(--gradient-ocean);
  color: var(--white);
}

.section-ocean h2,
.section-ocean h3,
.section-ocean p { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua-cyan);
  background: var(--aqua-glow);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-ocean .section-badge {
  background: rgba(255,255,255,0.15);
  color: var(--aqua-light);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.section-ocean .section-header p { color: rgba(255,255,255,0.75); }

/* ---------- Wave Dividers ---------- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider-top { margin-bottom: -2px; }
.wave-divider-bottom { margin-top: -2px; }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-luxury), transform var(--transition-luxury);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-luxury), transform var(--transition-luxury);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-luxury), transform var(--transition-luxury);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition-luxury), transform var(--transition-luxury);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children delays */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.8s; }

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Image Placeholder ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.img-placeholder-dark {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-blue) 100%);
  color: rgba(255,255,255,0.3);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.footer-brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--aqua-cyan);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.3);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--gradient-sunset);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--aqua-cyan);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--aqua-cyan);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-smooth);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappRing 2s ease-in-out infinite;
}

@keyframes whatsappRing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Mobile Booking Bar ---------- */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-200);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-booking-bar .bar-info {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.mobile-booking-bar .bar-info strong {
  display: block;
  font-size: 1rem;
  color: var(--ocean-blue);
}

.mobile-booking-bar .bar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--gradient-ocean);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,176C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom / cover;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

.page-hero-breadcrumb a { color: var(--aqua-light); }
.page-hero-breadcrumb a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--ocean-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 4px;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-menu.open { right: 0; }

  .nav-menu .nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--aqua-cyan);
    background: none;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }

  .nav-toggle { display: flex; }

  .mobile-booking-bar { display: flex; }

  .whatsapp-float { bottom: 80px; right: 18px; width: 54px; height: 54px; font-size: 1.5rem; }

  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }

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

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 56px 0;
    --container-padding: 0 16px;
  }

  .hero h1 { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .section-header h2 { font-size: 1.6rem; }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-ocean { color: var(--ocean-blue); }
.text-aqua { color: var(--aqua-cyan); }
.text-sunset { color: var(--sunset-orange); }
.text-gray { color: var(--gray-500); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
