/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.6);
  --text-muted: rgba(240, 240, 245, 0.35);
  --accent-1: #a855f7;
  --accent-2: #6366f1;
  --accent-3: #ec4899;
  --accent-4: #14b8a6;
  --gradient-main: linear-gradient(135deg, #a855f7, #6366f1, #ec4899);
  --gradient-alt: linear-gradient(135deg, #14b8a6, #6366f1);
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Outfit', 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-main); font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: var(--radius-md); cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 14px 24px; }
.btn-primary {
  background: var(--gradient-main); color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-glass-hover);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--accent-1); }
.btn-glass {
  background: rgba(255,255,255,0.06); color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: var(--border-glass-hover); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 15, 0.92);
  border-bottom-color: var(--border-glass);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.5rem; color: var(--accent-1); }
.logo-text { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-accent { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brand-logo { height: 45px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-main); border-radius: 2px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-primary); 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); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 120px 24px 80px;
  overflow: hidden;
}
/* Background image */
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.85) 100%);
}
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3;
}
.hero-orb-1 {
  width: 500px; height: 500px; top: -10%; left: -5%;
  background: radial-gradient(circle, var(--accent-1), transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: -5%; right: -5%;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px; top: 40%; left: 50%;
  background: radial-gradient(circle, var(--accent-3), transparent 70%);
  animation: float 12s ease-in-out infinite 2s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(168, 85, 247, 0.5);
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 3; max-width: 1200px; width: 100%;
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.hero-content { text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.25);
  font-size: 0.8rem; font-weight: 500; color: var(--accent-1);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-4);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px;
}
.hero-title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out both;
}
.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.25s; }
.hero-title-line:nth-child(3) { animation-delay: 0.4s; }
.gradient-text {
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-alt {
  background: var(--gradient-alt); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-secondary);
  max-width: 480px; line-height: 1.7; margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  animation: fadeInUp 0.8s ease-out 0.75s both;
}
.stat-item { text-align: left; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--accent-1); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 44px; background: var(--border-glass); }

/* Floating Glass Cards */
.hero-visual {
  position: relative; height: 500px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  cursor: default; z-index: 4;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.floating-card:hover {
  transform: translateY(-6px) scale(1.04) !important;
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(255, 255, 255, 0.09);
}
.fc-icon { font-size: 1.8rem; flex-shrink: 0; }
.fc-title { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.fc-desc { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.fc-1 { top: 5%; left: 10%; animation: fc-float-1 6s ease-in-out infinite, fadeInUp 0.8s ease-out 0.4s both; }
.fc-2 { top: 30%; right: 5%; animation: fc-float-2 7s ease-in-out infinite, fadeInUp 0.8s ease-out 0.6s both; }
.fc-3 { bottom: 25%; left: 5%; animation: fc-float-3 8s ease-in-out infinite, fadeInUp 0.8s ease-out 0.8s both; }
.fc-4 { bottom: 5%; right: 15%; animation: fc-float-4 6.5s ease-in-out infinite, fadeInUp 0.8s ease-out 1s both; }

@keyframes fc-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}
@keyframes fc-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 12px); }
}
@keyframes fc-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, 15px); }
}
@keyframes fc-float-4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, -10px); }
}

/* Decorative ring */
.hero-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.12);
  animation: ring-spin 20s linear infinite;
}
.hero-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-1); box-shadow: 0 0 12px var(--accent-1);
}
.hero-ring::after {
  content: ''; position: absolute; inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(99, 102, 241, 0.1);
  animation: ring-spin 15s linear infinite reverse;
}
@keyframes ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

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


/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.2);
  font-size: 0.78rem; font-weight: 600; color: var(--accent-1);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto;
}

/* ===== PLANS ===== */
.plans-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.plans-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent 70%);
  pointer-events: none;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  align-items: stretch;
}
.plan-card {
  padding: 32px 24px; position: relative; display: flex; flex-direction: column;
  overflow: hidden; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
}

/* Glow effect behind each card */
.plan-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  filter: blur(80px); opacity: 0; transition: opacity 0.5s ease;
  pointer-events: none;
}
.plan-card:hover .plan-glow { opacity: 1; }
.plan-glow-teal { background: rgba(20, 184, 166, 0.25); }
.plan-glow-blue { background: rgba(99, 102, 241, 0.25); }
.plan-glow-purple { background: rgba(168, 85, 247, 0.3); }
.plan-glow-gold { background: rgba(245, 158, 11, 0.25); }

/* Featured card */
.plan-card.featured {
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.06);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
  transform: scale(1.03);
}
.plan-card.featured:hover {
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.2);
  transform: scale(1.03) translateY(-8px);
}
.plan-card.featured .plan-glow { opacity: 0.6; }

/* Bestseller ribbon */
.plan-badge-ribbon {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 14px; border-radius: 50px;
  background: var(--gradient-main);
  font-size: 0.72rem; font-weight: 700; color: #fff;
  letter-spacing: 0.5px; z-index: 2;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
  animation: ribbon-pulse 2.5s ease-in-out infinite;
}
@keyframes ribbon-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(168, 85, 247, 0.55); }
}

/* Icon badge */
.plan-icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.plan-card:hover .plan-icon-badge { transform: scale(1.1) rotate(5deg); }
.teal-badge { background: rgba(20, 184, 166, 0.12); border: 1px solid rgba(20, 184, 166, 0.25); color: #14b8a6; }
.blue-badge { background: rgba(99, 102, 241, 0.12); border: 1px solid rgba(99, 102, 241, 0.25); color: #6366f1; }
.purple-badge { background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25); color: #a855f7; }
.gold-badge { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.25); color: #f59e0b; }

.plan-header { margin-bottom: 20px; }
.plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.plan-tagline { font-size: 0.82rem; color: var(--text-muted); }

.plan-price { margin-bottom: 8px; }
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); vertical-align: top; line-height: 2.5; }
.price-amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; }
.price-period { font-size: 0.85rem; color: var(--text-muted); }

/* Savings chip */
.plan-savings {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.2);
  font-size: 0.72rem; font-weight: 600; color: var(--accent-4);
  margin-bottom: 20px;
}

.plan-features { flex: 1; margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 0.85rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .check { color: var(--accent-4); font-weight: 700; font-size: 0.85rem; }
.plan-features li .cross { color: var(--text-muted); font-size: 0.8rem; }
.plan-features li.disabled { color: var(--text-muted); }

/* Glowing plan buttons */
.btn-plan {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; font-family: var(--font-main); font-weight: 600;
  font-size: 0.9rem; border: none; border-radius: var(--radius-md);
  cursor: pointer; transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.btn-plan::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity 0.35s ease;
}
.btn-plan:hover::before { opacity: 1; }

.btn-plan-teal {
  background: rgba(20, 184, 166, 0.15); color: #14b8a6;
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.btn-plan-teal:hover {
  background: rgba(20, 184, 166, 0.25); border-color: #14b8a6;
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.3);
  transform: translateY(-2px);
}
.btn-plan-blue {
  background: rgba(99, 102, 241, 0.15); color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.btn-plan-blue:hover {
  background: rgba(99, 102, 241, 0.25); border-color: #6366f1;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}
.btn-plan-purple {
  background: var(--gradient-main); color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}
.btn-plan-purple:hover {
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}
.btn-plan-gold {
  background: rgba(245, 158, 11, 0.15); color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.btn-plan-gold:hover {
  background: rgba(245, 158, 11, 0.25); border-color: #f59e0b;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}


/* ===== BOOKING FORM ===== */
.booking-section {
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; bottom: 0; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06), transparent 70%);
  pointer-events: none;
}
.booking-layout {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px;
  align-items: start;
}
.booking-form-card {
  padding: 40px; border-radius: var(--radius-xl);
}
.booking-form-card:hover {
  transform: none;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.input-wrap {
  position: relative; display: flex; align-items: center;
}
.input-icon {
  position: absolute; left: 14px; color: var(--text-muted);
  pointer-events: none; transition: color 0.3s ease;
  z-index: 2;
}
.input-wrap input,
.input-wrap select {
  width: 100%; padding: 14px 14px 14px 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 0.92rem;
  color: var(--text-primary);
  outline: none; transition: all 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.input-wrap input::placeholder { color: var(--text-muted); }
.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--accent-2);
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.input-wrap input:focus ~ .input-icon,
.input-wrap select:focus ~ .input-icon {
  color: var(--accent-2);
}
/* Fix: icon is before the input, use has or sibling selectors */
.input-wrap:focus-within .input-icon { color: var(--accent-2); }

/* Select dropdown arrow */
.select-wrap::after {
  content: '';
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}
.input-wrap select option {
  background: var(--bg-secondary); color: var(--text-primary);
  padding: 8px;
}

/* Date input color fix */
.input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* Error states */
.form-error {
  display: block; font-size: 0.72rem; color: #ef4444;
  margin-top: 5px; min-height: 16px;
  transition: all 0.3s ease;
}
.form-group.has-error .input-wrap input,
.form-group.has-error .input-wrap select {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group.has-error .input-icon { color: #ef4444; }
.form-group.valid .input-wrap input,
.form-group.valid .input-wrap select {
  border-color: rgba(20, 184, 166, 0.5);
}

/* Submit button */
.btn-submit {
  margin-top: 8px; position: relative;
}
.btn-submit .btn-loader {
  display: none; width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-arrow { opacity: 0; }
.btn-submit.loading .btn-loader { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Info cards */
.booking-info {
  display: flex; flex-direction: column; gap: 16px;
}
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; border-radius: var(--radius-md);
}
.info-card:hover { transform: translateY(-3px); }
.info-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px; display: flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.1);
}
.info-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.info-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.info-card code {
  background: rgba(168, 85, 247, 0.15); color: var(--accent-1);
  padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 700;
}
.info-highlight {
  border-color: rgba(168, 85, 247, 0.25);
  background: rgba(168, 85, 247, 0.05);
}
.info-highlight:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}

/* Booking success modal */
.booking-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.booking-modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }
.booking-modal {
  max-width: 420px; width: 90%; padding: 48px 36px;
  text-align: center; border-radius: var(--radius-xl);
  border-color: rgba(20, 184, 166, 0.3);
  animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.booking-modal:hover { transform: none; }
.modal-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(20, 184, 166, 0.12); border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--accent-4);
}
.booking-modal h3 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 12px;
  background: var(--gradient-alt); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.booking-modal p {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== WHY US ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card { padding: 32px; text-align: center; }
.why-icon-wrap {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: rgba(168, 85, 247, 0.2); transform: scale(1.1) rotate(5deg);
}
.why-icon { font-size: 1.6rem; }
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== CAFE SECTION ===== */
.cafe-section {
  background: var(--bg-secondary); position: relative; overflow: hidden;
}
.cafe-section::before {
  content: ''; position: absolute; top: 20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.05), transparent 70%);
  pointer-events: none;
}

/* Bento grid */
.cafe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.cafe-hero-card { grid-row: 1 / 3; }
.cafe-wide-card { grid-column: 1 / -1; }

/* Card base */
.cafe-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow 0.45s ease;
}
.cafe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Image area */
.cafe-card-img {
  position: relative; overflow: hidden;
  height: 220px; flex-shrink: 0;
}
.cafe-hero-card .cafe-card-img { height: 100%; min-height: 300px; }
.cafe-wide-card .cafe-card-img { height: 260px; }
.cafe-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.cafe-card:hover .cafe-card-img img {
  transform: scale(1.08);
}
.cafe-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.2) 50%, transparent 100%);
  pointer-events: none;
}

/* Content */
.cafe-card-content {
  position: relative; z-index: 2; padding: 24px 24px 28px;
  margin-top: auto;
}
.cafe-hero-card .cafe-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
}
.cafe-wide-card .cafe-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
}
.cafe-category {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--accent-1); text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.cafe-card-content h3 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; line-height: 1.2;
}
.cafe-card-content p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 14px; max-width: 560px;
}

/* Price tags */
.cafe-price-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cafe-price {
  padding: 4px 12px; border-radius: 50px;
  background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.2);
  font-size: 0.72rem; font-weight: 600; color: var(--accent-4);
}

/* Feature row (seating card) */
.cafe-feature-row { display: flex; flex-wrap: wrap; gap: 16px; }
.cafe-feat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-secondary);
}
.cafe-feat svg { color: var(--accent-1); flex-shrink: 0; }

/* Badge */
.cafe-card-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  padding: 5px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.7rem; font-weight: 700; color: #fff;
  letter-spacing: 0.3px;
}

/* CTA bar */
.cafe-cta-row {
  margin-top: 32px; padding: 24px 32px; border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cafe-cta-text {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.cafe-cta-emoji { font-size: 1.8rem; }
.cafe-cta-text strong { color: var(--text-primary); }
.cafe-cta-sub {
  display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px;
}
.cafe-cta-sub code {
  background: rgba(168, 85, 247, 0.15); color: var(--accent-1);
  padding: 2px 8px; border-radius: 4px; font-size: 0.78rem; font-weight: 700;
}


/* ===== INDOOR GAMES ===== */
.games-section { position: relative; overflow: hidden; }
.games-section::before {
  content: ''; position: absolute; top: -10%; left: 30%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
  pointer-events: none;
}
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game-card {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card:hover { transform: translateY(-8px); }
.game-visual {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.game-tt { background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.1)); }
.game-chess { background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(99, 102, 241, 0.1)); }
.game-carrom { background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.1)); }

.game-icon { font-size: 5rem; z-index: 2; transition: transform 0.5s ease; }
.game-card:hover .game-icon { transform: scale(1.15) rotate(5deg); }

.game-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100px; height: 100px; border-radius: 50%;
  background: currentColor; filter: blur(40px); opacity: 0.3;
}
.game-tt .game-glow { color: #ec4899; }
.game-chess .game-glow { color: #14b8a6; }
.game-carrom .game-glow { color: #f59e0b; }

.game-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.game-content h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.game-content p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 20px; flex: 1;
}
.game-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.gtag {
  padding: 4px 12px; border-radius: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass);
  font-size: 0.75rem; font-weight: 600; color: var(--text-secondary);
}


/* ===== TESTIMONIALS ===== */
.testimonials-section { overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 32px; display: flex; flex-direction: column; transition: transform 0.4s ease; }
.testimonial-card:hover { transform: translateY(-6px); }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px; font-style: italic; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-name { display: block; font-weight: 600; font-size: 0.92rem; }
.author-role { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-glass);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-desc { font-size: 0.9rem; color: var(--text-secondary); margin-top: 16px; line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition);
}
.social-link:hover { color: var(--accent-1); border-color: var(--accent-1); background: rgba(168,85,247,0.1); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col li {
  font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; border-top: 1px solid var(--border-glass);
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos].aos-animate { opacity: 1; transform: translate(0, 0); }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,15,0.95); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav-overlay.open { display: flex; animation: fadeIn 0.3s ease; }
.mobile-nav-overlay a {
  font-size: 1.3rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav-overlay a:hover { color: var(--text-primary); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { height: 420px; }
  .hero-ring { width: 260px; height: 260px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .plan-card.featured { transform: scale(1.0); }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid .game-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form-card { padding: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; flex-direction: column; align-items: center; }
  .hero-ctas .btn-lg { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { justify-content: center; flex-direction: column; gap: 20px; }
  .stat-item { text-align: center; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-visual { height: 340px; }
  .hero-ring { width: 200px; height: 200px; }
  .floating-card { padding: 12px 16px; }
  .fc-icon { font-size: 1.4rem; }
  .fc-title { font-size: 0.85rem; }
  .fc-desc { font-size: 0.7rem; }
  .section { padding: 72px 0; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .why-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .games-grid .game-card:last-child { max-width: none; }
  .cafe-grid { grid-template-columns: 1fr; }
  .cafe-hero-card { grid-row: auto; }
  .cafe-hero-card .cafe-card-img { min-height: 220px; }
  .cafe-wide-card .cafe-card-img { height: 200px; }
  .cafe-cta-row { flex-direction: column; text-align: center; }
  .cafe-cta-text { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .booking-form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; letter-spacing: -1px; }
  .section-title { font-size: 1.6rem; }
  .plan-card { padding: 28px 20px; }
  .hero-visual { height: 280px; }
  .floating-card { padding: 10px 14px; gap: 10px; }
  .fc-desc { display: none; }
}

