/* ===========================================
   EXTREME NEON GLASSMORPHISM 2025 DESIGN
   Built for visual impact and eye-catching UI
   =========================================== */

/* ============ CSS Variables ============ */
:root {
  /* Neon Purple Palette */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  
  /* Electric Accents */
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --pink-500: #ec4899;
  --emerald-500: #10b981;
  
  /* Neutral Grays */
  --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;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Neon Glows */
  --glow-purple: 0 0 30px rgba(147, 51, 234, 0.6), 0 0 60px rgba(147, 51, 234, 0.3);
  --glow-cyan: 0 0 30px rgba(34, 211, 238, 0.6), 0 0 60px rgba(34, 211, 238, 0.3);
  --glow-amber: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 60px rgba(251, 191, 36, 0.3);
  
  /* Typography */
  --font-display: 'Clash Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --shell-width: 1400px;
  --shell-padding: clamp(1.5rem, 4vw, 3rem);
  --section-spacing: clamp(5rem, 12vw, 10rem);
  
  /* Animations */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-100);
  background: #0a0118;
  overflow-x: hidden;
  position: relative;
}

/* ============ Animated Background ============ */
.neo-body {
  background: linear-gradient(135deg, 
    #0a0118 0%, 
    #1a0b2e 25%, 
    #2d1b4e 50%, 
    #1a0b2e 75%, 
    #0a0118 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  min-height: 100vh;
  position: relative;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ Futuristic Grid Background ============ */
.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 51, 234, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ============ Floating Neon Orbs ============ */
.floating-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.floating-orb.orb-1 {
  top: -300px;
  left: -200px;
  animation-delay: 0s;
}

.floating-orb.orb-2 {
  bottom: -300px;
  right: -200px;
  animation-delay: 7s;
}

.floating-orb.orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

.floating-orb.is-cyan {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35) 0%, transparent 70%);
}

.floating-orb.is-amber {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -100px) scale(1.1); }
  50% { transform: translate(-50px, 100px) scale(0.9); }
  75% { transform: translate(150px, 50px) scale(1.05); }
}

/* ============ Container Shell ============ */
.shell {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 0 var(--shell-padding);
  position: relative;
  z-index: 1;
}

/* ============ Typography System ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5)); }
  50% { filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.8)); }
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gray-300);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.feature-copy {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============ Glassmorphism Cards ============ */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(147, 51, 234, 0.8), 
    transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 
    0 20px 60px rgba(147, 51, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-card:hover::before {
  opacity: 1;
}

/* ============ Neon Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--purple-500);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

/* ============ Header Navigation ============ */
.neo-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 1, 24, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-300);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-500), var(--cyan-400));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(147, 51, 234, 0.6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============ Hero Section ============ */
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-base);
}

.metric:hover {
  background: rgba(147, 51, 234, 0.08);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-4px);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-card {
  position: relative;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-500);
  margin-bottom: 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--emerald-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============ Chips & Badges ============ */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.chip {
  padding: 0.5rem 1rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-300);
  white-space: nowrap;
  transition: all var(--transition-base);
}

.chip:hover {
  background: rgba(147, 51, 234, 0.25);
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

/* ============ Forms ============ */
.quick-form {
  display: grid;
  gap: 1.5rem;
}

.quick-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-300);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  transition: all var(--transition-base);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-500);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  background: rgba(147, 51, 234, 0.08);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============ Sections ============ */
.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.section-highlight {
  background: rgba(147, 51, 234, 0.03);
  border-top: 1px solid rgba(147, 51, 234, 0.1);
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.section-heading .section-eyebrow {
  margin: 0 auto 1.5rem;
}

/* ============ Cards Grid ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  background: rgba(147, 51, 234, 0.08);
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(147, 51, 234, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  border-radius: 16px;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.6);
}

/* ============ Table Cards ============ */
.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.table-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all var(--transition-smooth);
}

.table-card:hover {
  background: rgba(147, 51, 234, 0.1);
  border-color: rgba(147, 51, 234, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.3);
}

/* ============ Process Steps ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  transition: all var(--transition-smooth);
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(147, 51, 234, 0.15);
  line-height: 1;
}

.process-step:hover {
  background: rgba(147, 51, 234, 0.08);
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.3);
}

.process-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============ Testimonials ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  background: rgba(147, 51, 234, 0.08);
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(147, 51, 234, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1rem;
  color: var(--amber-400);
}

.testimonial-card > p {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-600), var(--cyan-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

/* ============ Final CTA ============ */
.final-cta {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(147, 51, 234, 0.2);
}

.final-cta h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Footer ============ */
.neo-footer {
  padding: 4rem 0 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.neo-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--purple-400);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ============ Booking Form Specific ============ */
.booking-form {
  display: grid;
  gap: 2rem;
}

.form-block {
  display: grid;
  gap: 1.5rem;
}

.form-block-header {
  display: grid;
  gap: 0.5rem;
}

.form-block-header h3 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.form-block-header p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.info-strip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
}

.info-strip i {
  color: var(--purple-400);
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.info-strip strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.info-strip span {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.info-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.info-panel h4 {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-panel a {
  color: var(--purple-400);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.info-panel a:hover {
  color: var(--purple-300);
}

.info-panel span {
  color: var(--gray-300);
  display: block;
  font-size: 0.95rem;
}

.form-alert {
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  animation: slideDown 0.4s ease-out;
}

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

.form-alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-500);
}

.form-alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.form-alert i {
  font-size: 1.3rem;
  margin-top: 0.25rem;
}

.form-alert strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hidden {
  display: none !important;
}

/* ============ Reveal Animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive Design ============ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .neo-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --shell-padding: 1.5rem;
    --section-spacing: 4rem;
  }
  
  .quick-form-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    justify-content: center;
  }
  
  .cards-grid,
  .table-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .neo-footer-top {
    grid-template-columns: 1fr;
  }
}

/* ============ Modern Table Styles ============ */
.table-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.table-card thead {
  background: rgba(147, 51, 234, 0.15);
  position: sticky;
  top: 0;
  z-index: 10;
}

.table-card th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(147, 51, 234, 0.4);
  white-space: nowrap;
}

.table-card tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-card tbody tr:hover {
  background: rgba(147, 51, 234, 0.12);
  transform: scale(1.01);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.2);
}

.table-card td {
  padding: 1.25rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  vertical-align: middle;
}

.table-card td strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.table-card .table-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.table-card .table-sub i {
  font-size: 0.75rem;
  opacity: 0.7;
}

.table-card td.empty {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Status Pills */
.status-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.status-pill[data-state="pending"] {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.status-pill[data-state="confirmed"] {
  background: rgba(34, 211, 238, 0.2);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.4);
}

.status-pill[data-state="completed"] {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-pill[data-state="cancelled"] {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* Modern Status Dropdown */
.status-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  background: rgba(147, 51, 234, 0.15);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

.status-select:hover {
  background: rgba(147, 51, 234, 0.25);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
}

.status-select:focus {
  outline: none;
  border-color: rgba(147, 51, 234, 0.7);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2), 0 4px 15px rgba(147, 51, 234, 0.4);
}

.status-select option {
  background: #1a0b2e;
  color: #ffffff;
  padding: 0.75rem;
  font-weight: 600;
}

/* Table responsiveness */
@media (max-width: 1200px) {
  .table-card {
    overflow-x: auto;
  }
  
  .table-card table {
    min-width: 1000px;
  }
}

/* Filter Chips */
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-chip:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.filter-chip.is-active {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(99, 102, 241, 0.3));
  border-color: rgba(147, 51, 234, 0.6);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

/* Admin Metrics */
.admin-metrics {
  margin-bottom: 2rem;
}

/* Secondary Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Delete Admin Button Hover */
.delete-admin-btn:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* ============ Scrollbar Styling ============ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-600), var(--purple-800));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple-500), var(--purple-700));
}

/* ============ Selection Styling ============ */
::selection {
  background: rgba(147, 51, 234, 0.4);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(147, 51, 234, 0.4);
  color: #ffffff;
}

/* ===========================================
   ENHANCED DATE & TIME INPUTS
   =========================================== */

/* Make date and time inputs bigger and more readable */
input[type="date"],
input[type="time"] {
  font-size: 1.1rem !important;
  padding: 1rem !important;
  min-height: 3.5rem;
  cursor: pointer;
  font-weight: 500;
}

/* Calendar icon styling for date input */
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Time picker icon styling */
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Make past dates appear grayed out (browser default handles this) */
input[type="date"]:invalid {
  color: #999;
}

/* Highlight current/future dates */
input[type="date"]:valid,
input[type="time"]:valid {
  color: var(--color-text);
}

/* Enhanced datalist dropdown styling */
datalist {
  position: absolute;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

/* Autocomplete dropdown for cities */
input[list]::-webkit-calendar-picker-indicator {
  display: none;
}

input[list] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237f5fff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 3rem;
}

/* Make form fields with date/time fully clickable */
.form-field label[for="pickup_date"],
.form-field label[for="pickup_time"] {
  cursor: pointer;
  user-select: none;
}

/* Hover effect on date/time form fields */
.form-field:has(input[type="date"]):hover,
.form-field:has(input[type="time"]):hover {
  background: rgba(127, 95, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* ============================================
   MODERN SCROLL EFFECTS & ANIMATIONS
   ============================================ */

/* Smooth scroll with easing */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Parallax scrolling effects */
.parallax {
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered reveal for multiple elements */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }

/* Fade up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Bounce in effect */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Apply animations on scroll */
.animate-on-scroll {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animate-fade-up {
  animation-name: fadeUp;
}

.animate-scale-in {
  animation-name: scaleIn;
}

.animate-slide-left {
  animation-name: slideInLeft;
}

.animate-slide-right {
  animation-name: slideInRight;
}

.animate-bounce-in {
  animation-name: bounceIn;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile breakpoints */
@media (max-width: 1024px) {
  :root {
    --shell-padding: 2rem;
    --section-spacing: 4rem;
  }
}

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
  }
  
  .hero-tagline {
    font-size: 1.125rem !important;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile styles (below 768px) */
@media (max-width: 768px) {
  :root {
    --shell-padding: 1.5rem;
    --section-spacing: 3rem;
  }
  
  /* Header mobile */
  .neo-header {
    padding: 1rem 0;
  }
  
  .brand-text {
    display: none;
  }
  
  .brand-logo img {
    width: 40px;
    height: 40px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
  }
  
  .nav-cta {
    width: auto !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
  
  /* Hero mobile */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.2 !important;
  }
  
  .hero-tagline {
    font-size: 1rem !important;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    font-size: 1.125rem !important;
    padding: 1.25rem 2rem !important;
  }
  
  .hero-metrics {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .metric-value {
    font-size: 1.5rem !important;
  }
  
  .metric-label {
    font-size: 0.75rem !important;
  }
  
  /* Cards mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  /* Forms mobile */
  .quick-form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .booking-form .quick-form-grid {
    grid-template-columns: 1fr !important;
  }
  
  .form-field textarea {
    min-height: 120px;
  }
  
  /* Glass cards mobile */
  .glass-card {
    padding: 1.5rem !important;
  }
  
  .hero-card {
    padding: 2rem !important;
  }
  
  /* Section headings mobile */
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-subtitle {
    font-size: 1rem !important;
  }
  
  /* Footer mobile */
  .neo-footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .footer-bottom {
    font-size: 0.875rem;
    text-align: center;
    padding: 1.5rem 0;
  }
  
  /* Buttons mobile */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .btn-primary {
    width: 100%;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 2rem 1.5rem !important;
  }
  
  .contact-form h2 {
    font-size: 1.75rem !important;
  }
  
  /* Admin panel mobile */
  .admin-panel {
    padding: 1rem;
  }
  
  .admin-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  table {
    font-size: 0.875rem;
  }
  
  table th,
  table td {
    padding: 0.75rem 0.5rem;
  }
  
  /* Hide certain columns on mobile */
  .hide-mobile {
    display: none;
  }
}

/* Extra small mobile (below 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem !important;
  }
  
  .hero-cta .btn {
    font-size: 1rem !important;
    padding: 1rem 1.5rem !important;
  }
  
  .hero-metrics {
    grid-template-columns: 1fr !important;
  }
  
  .section-title {
    font-size: 1.75rem !important;
  }
  
  .glass-card {
    padding: 1.25rem !important;
  }
}

/* Landscape mobile */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-metrics {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-link {
    padding: 1rem;
  }
  
  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .glass-card {
    backdrop-filter: blur(20px);
  }
}

/* Print styles */
@media print {
  .neo-header,
  .neo-footer,
  .floating-orb,
  .background-grid,
  .btn {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .glass-card {
    border: 1px solid #ddd;
    background: white !important;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus visible styles */
*:focus-visible {
  outline: 3px solid var(--purple-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .glass-card {
    border: 2px solid white;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Already dark by default */
}

