/* ========================================
   Sin City Drips - Main Stylesheet
   Neon Green + Hot Pink + Dark Theme
   ======================================== */

/* CSS Variables */
:root {
  --neon-green: #00ff7f;
  --neon-green-dark: #00cc66;
  --hot-pink: #ff1493;
  --hot-pink-light: #ff69b4;
  --teal-bg: #0abab5;
  --dark-bg: #1a1a2e;
  --darker-bg: #0f1419;
  --mid-bg: #16213e;
  --white: #FFFFFF;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-300: #cccccc;
  --gray-text: #e0e0e0;
  --gray-600: #999999;
  --gray-700: #666666;
  --gold: #FFD700;
  --gold-light: #FFE44D;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', 'Inter', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-green: 0 4px 20px rgba(0, 255, 127, 0.3);
  --shadow-pink: 0 4px 20px rgba(255, 20, 147, 0.3);
  --radius: 15px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--darker-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--darker-bg);
}

.section-mid {
  background: var(--dark-bg);
}

.section-teal {
  background: linear-gradient(135deg, var(--teal-bg), #089e9a);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 48px;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-green-dark));
  color: var(--darker-bg);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  filter: brightness(1.1);
}

.btn-pink {
  background: linear-gradient(135deg, var(--hot-pink), var(--hot-pink-light));
  color: var(--white);
}

.btn-pink:hover,
.btn-pink:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--neon-green);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--neon-green);
  color: var(--darker-bg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  background: var(--white);
  color: var(--darker-bg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--darker-bg);
}

.btn-gold:hover,
.btn-gold:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  min-height: 40px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header-bar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--hot-pink), var(--neon-green)) 1;
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 24px;
  max-width: 1400px;
  margin: 0 auto;
  height: 58px;
}

.logo {
  position: fixed;
  top: -6px;
  left: 8px;
  z-index: 9999;
  display: block;
  overflow: visible;
  padding: 10px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Logo Shrink Toggle */
.logo-shrink-btn {
  position: fixed;
  top: 16px;
  left: 240px;
  z-index: 10000;
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: var(--neon-green);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: width 0.6s ease, height 0.6s ease, padding 0.6s ease, font-size 0.6s ease, left 0.6s ease, border-radius 0.6s ease, letter-spacing 0.6s ease;
  white-space: nowrap;
  overflow: visible;
  width: auto;
  height: auto;
  position: fixed;
  isolation: isolate;
}

.logo-shrink-btn:hover {
  background: rgba(0, 255, 127, 0.15);
  border-color: var(--neon-green);
}

/* Racing light around pill outline */
.logo-shrink-btn.orbiting {
  border-color: transparent;
  background-clip: padding-box;
}

.logo-shrink-btn.orbiting::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(
    from var(--a),
    transparent 0deg,
    transparent 340deg,
    #00ff7f 350deg,
    #ff1493 355deg,
    #00ff7f 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: race-spin 1.2s linear infinite;
}

.logo-shrink-btn.minimized.orbiting::before,
.logo-shrink-btn.shrunk.orbiting::before {
  border-radius: 50%;
}

@property --a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes race-spin {
  to { --a: 360deg; }
}

.logo-shrink-btn.minimized {
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 0;
  letter-spacing: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-shrink-btn.shrunk {
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 0;
  letter-spacing: 0;
  left: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .logo-shrink-btn {
    left: 200px;
    top: 10px;
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .logo-shrink-btn.minimized {
    left: 200px;
  }

  .logo-shrink-btn.shrunk {
    left: 55px;
  }
}

.logo img {
  height: 288px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 127, 0.4)) drop-shadow(0 0 40px rgba(255, 105, 180, 0.3));
  transition: height 0.4s ease, transform 0.3s ease;
  overflow: visible;
}

.logo.shrunk img {
  height: 65px !important;
}

/* Footer logo override - not fixed */
.footer .footer-logo {
  position: static;
  z-index: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .footer-logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.3));
}

.logo:hover img {
  transform: scale(1.05);
}

/* ========================================
   Drip Animation
   ======================================== */

.drip-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

/* Droplet - CSS-driven for GPU performance */
.drip-drop {
  position: fixed;
  width: 12px;
  height: 16px;
  background: radial-gradient(ellipse at 40% 30%, #80ffbf, #00ff7f 50%, #00cc66);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  opacity: 0;
  box-shadow: 0 0 6px rgba(0, 255, 127, 0.7), 0 0 16px rgba(0, 255, 127, 0.3);
  pointer-events: none;
  will-change: transform, opacity;
}

.drip-drop::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

@keyframes drip-form {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1, 1.2); }
}

@keyframes drip-gravity {
  0% { transform: translateY(0) scale(1, 1.2); opacity: 1; }
  100% { transform: translateY(100vh) scale(0.7, 1.8); opacity: 0.6; }
}

/* Drip splash - multi-element for realistic effect */
.drip-splash-css {
  position: fixed;
  pointer-events: none;
}

/* Main impact ring */
.splash-ring-main {
  position: absolute;
  border: 2px solid rgba(0, 255, 127, 0.8);
  border-radius: 50%;
  animation: splash-ring-expand 0.6s ease-out forwards;
  transform: translate(-50%, -50%);
}

@keyframes splash-ring-expand {
  0% { width: 4px; height: 2px; opacity: 1; }
  50% { opacity: 0.7; }
  100% { width: 50px; height: 14px; opacity: 0; }
}

/* Second outer ring */
.splash-ring-outer {
  position: absolute;
  border: 1px solid rgba(0, 255, 127, 0.4);
  border-radius: 50%;
  animation: splash-ring-outer 0.8s ease-out 0.1s forwards;
  transform: translate(-50%, -50%);
  opacity: 0;
}

@keyframes splash-ring-outer {
  0% { width: 10px; height: 4px; opacity: 0.6; }
  100% { width: 70px; height: 18px; opacity: 0; }
}

/* Puddle glow */
.splash-puddle-main {
  position: absolute;
  background: radial-gradient(ellipse, rgba(0, 255, 127, 0.5), rgba(0, 255, 127, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  animation: splash-puddle-grow 1s ease-out forwards;
  transform: translate(-50%, -50%);
}

@keyframes splash-puddle-grow {
  0% { width: 6px; height: 3px; opacity: 0.7; }
  30% { width: 40px; height: 10px; opacity: 0.5; }
  100% { width: 60px; height: 14px; opacity: 0; }
}

/* Splash droplets that fly up and out */
.splash-droplet {
  position: absolute;
  width: 4px;
  height: 5px;
  background: radial-gradient(ellipse at 30% 30%, #80ffbf, #00ff7f);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  box-shadow: 0 0 4px rgba(0, 255, 127, 0.6);
  animation: splash-droplet-fly var(--dur, 0.5s) ease-out forwards;
  transform: translate(-50%, -50%);
}

@keyframes splash-droplet-fly {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.3); }
}

/* Upward mist particles */
.splash-mist {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 255, 127, 0.4);
  border-radius: 50%;
  filter: blur(1px);
  animation: splash-mist-rise var(--dur, 0.6s) ease-out forwards;
  transform: translate(-50%, -50%);
}

@keyframes splash-mist-rise {
  0% { opacity: 0.5; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--mx), var(--my)) scale(2); }
}

/* Fireworks - CSS-driven */
.fw-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: fw-rise 0.8s ease-out forwards;
  will-change: transform;
}

@keyframes fw-rise {
  0% { opacity: 1; transform: translate(0, 0); }
  80% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)); }
}

.fw-spark {
  position: fixed;
  border-radius: 50%;
  animation: fw-burst 1.2s ease-out forwards;
  will-change: transform;
}

@keyframes fw-burst {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  30% { opacity: 1; }
  60% { opacity: 0.7; transform: translate(var(--sx), var(--sy)) scale(0.8); }
  100% { opacity: 0; transform: translate(var(--sx), calc(var(--sy) + var(--grav, 40px))) scale(0.1); }
}

.fw-glow {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  filter: blur(4px);
  animation: fw-flash 0.7s ease-out forwards;
  transform: translate(-50%, -50%);
  will-change: transform;
}

@keyframes fw-flash {
  0% { opacity: 1; width: 12px; height: 12px; }
  30% { opacity: 0.8; width: 60px; height: 60px; }
  100% { opacity: 0; width: 80px; height: 80px; }
}

/* ========================================
   Fireworks
   ======================================== */

.fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.firework-trail {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
}

.firework-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
}

.firework-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  filter: blur(2px);
}

/* ========================================
   Booking Modal
   ======================================== */

.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: var(--dark-bg);
  border: 1px solid rgba(0, 255, 127, 0.3);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 127, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-modal-close {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.booking-modal-close:hover {
  color: var(--white);
}

.booking-modal-body {
  padding: 24px;
}

.booking-modal-service {
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--gray-text);
}

.booking-modal-service strong {
  color: var(--hot-pink);
}

.booking-modal-body > p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.booking-modal-steps {
  margin: 0 0 16px 20px;
  counter-reset: modal-step;
}

.booking-modal-steps li {
  list-style: none;
  counter-increment: modal-step;
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking-modal-steps li::before {
  content: counter(modal-step);
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon-green);
  color: var(--darker-bg);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-note {
  background: rgba(0, 255, 127, 0.05);
  border-left: 3px solid var(--neon-green);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.booking-modal-note a {
  color: var(--neon-green);
  font-weight: 600;
}

.booking-modal-actions {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-modal-actions .btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

@media (max-width: 480px) {
  .booking-modal-actions {
    flex-direction: column;
  }

  .booking-modal-actions .btn {
    width: 100%;
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--neon-green);
}

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

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

.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--neon-green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--neon-green);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-book-btn {
  background: linear-gradient(135deg, var(--hot-pink), var(--hot-pink-light)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-pink);
}

.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
}

.nav-book-btn::after {
  display: none !important;
}

/* Services Dropdown (Desktop) */
.nav-dropdown {
  position: relative;
}

.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-top: 8px;
}

.nav-dropdown:hover .nav-sub {
  opacity: 1;
  visibility: visible;
}

.nav-sub li {
  list-style: none;
}

.nav-sub a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--gray-text) !important;
  white-space: nowrap;
}

.nav-sub a::after {
  display: none !important;
}

.nav-sub a:hover {
  color: var(--neon-green) !important;
  background: rgba(0, 255, 127, 0.08);
}

.nav-call-btn {
  background: linear-gradient(135deg, var(--hot-pink), var(--hot-pink-light));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-pink);
}

.nav-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--neon-green);
  transition: var(--transition);
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-bg) 50%, var(--darker-bg) 100%);
  overflow: hidden;
  padding: 295px 0 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 127, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.skyline-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: bottom center;
  pointer-events: none;
  z-index: 10;
  opacity: 0.08;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.hero-brand span {
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hot-pink);
  margin-bottom: 6px;
  font-style: italic;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-bottom: 20px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -195px;
}

/* Hero Featured Product */
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.hero-feature:hover {
  transform: translateY(-6px);
}

.hero-feature-img {
  max-width: 440px;
  width: 100%;
  filter: drop-shadow(0 0 50px rgba(255, 20, 147, 0.3)) drop-shadow(0 0 100px rgba(0, 255, 127, 0.15));
  animation: float 6s ease-in-out infinite;
  margin-bottom: -10px;
}

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

.hero-feature-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hot-pink), var(--hot-pink-light));
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-feature-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-feature-info p {
  font-size: 1rem;
  color: var(--gray-text);
}

.hero-feature-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
}

.hero-feature-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
}

.hero-feature .btn {
  margin-top: 6px;
}

/* Neon glow accent lines */
.neon-line {
  position: absolute;
  height: 2px;
  opacity: 0.4;
}

.neon-line-1 {
  top: 30%;
  left: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.neon-line-2 {
  bottom: 20%;
  right: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, var(--hot-pink), transparent);
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

.section-header-light h2 {
  color: var(--darker-bg);
  background: none;
  -webkit-text-fill-color: var(--darker-bg);
}

.section-header-light p {
  color: var(--gray-700);
}

/* ========================================
   Featured Services (Homepage)
   ======================================== */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.featured-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-card:nth-child(even) {
  direction: rtl;
}

.featured-card:nth-child(even) > * {
  direction: ltr;
}

.featured-card:hover {
  box-shadow: var(--shadow-green);
  border-color: rgba(0, 255, 127, 0.5);
}

.featured-card-img {
  min-height: 500px;
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.featured-card-img img {
  width: 180%;
  max-width: none;
  object-fit: contain;
}

.featured-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--white);
}

.featured-card-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.featured-card-body p {
  color: var(--gray-text);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ========================================
   How It Works
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green), var(--hot-pink));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--darker-bg);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 255, 127, 0.3);
}

.step h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  color: var(--gray-text);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ========================================
   Category Cards (Homepage)
   ======================================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.category-card:hover {
  border-color: rgba(0, 255, 127, 0.6);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 255, 127, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  border: 2px solid rgba(0, 255, 127, 0.3);
}

.category-card.premium .category-icon {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.category-card .price-range {
  color: var(--neon-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.category-card.premium .price-range {
  color: var(--gold);
}

.category-card p {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ========================================
   Trust Signals
   ======================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.trust-item {
  padding: 24px;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--neon-green);
}

.trust-item p {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ========================================
   Info Cards (from existing concept)
   ======================================== */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-card {
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid rgba(0, 255, 127, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
  border-color: rgba(0, 255, 127, 0.6);
}

.info-card svg {
  width: 50px;
  height: 50px;
  fill: var(--neon-green);
  margin: 0 auto 12px;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--neon-green);
  margin-bottom: 6px;
}

.info-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--mid-bg));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: var(--gray-text);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-section .btn {
  position: relative;
  z-index: 2;
}

/* ========================================
   Services Page
   ======================================== */

.services-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-bg) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero p {
  color: var(--gray-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.services-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-nav a {
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.services-nav a:hover {
  background: var(--neon-green);
  color: var(--darker-bg);
  border-color: var(--neon-green);
}

/* Service Section Headings */
.service-section-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.service-section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-section-header .price-range-label {
  font-size: 1.1rem;
  color: var(--neon-green);
  font-weight: 700;
}

.service-section-header.premium h2 {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-section-header.premium .price-range-label {
  color: var(--gold);
}

.service-section-header p.section-desc {
  color: var(--gray-text);
  max-width: 600px;
  margin: 8px auto 0;
}

/* Service Cards Grid */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 127, 0.15);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
  backdrop-filter: blur(5px);
}

.service-card:nth-child(even) {
  direction: rtl;
}

.service-card:nth-child(even) > * {
  direction: ltr;
}

.service-card:hover {
  box-shadow: var(--shadow-green);
  border-color: rgba(0, 255, 127, 0.4);
}

.service-card-img {
  aspect-ratio: 1;
  min-height: 360px;
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  max-width: 100%;
  max-height: 75%;
  object-fit: contain;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.service-card-header h3 {
  font-size: 1.4rem;
  color: var(--white);
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-green);
  white-space: nowrap;
}

.service-card-tagline {
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-card-duration {
  display: inline-block;
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--neon-green);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.service-card-ingredients {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-card-benefits {
  margin-bottom: 20px;
  flex: 1;
}

.service-card-benefits li {
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.service-card-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: 700;
}

.service-card .btn {
  width: 100%;
}

/* Premium Card Styling */
.service-card.premium {
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.service-card.premium:hover {
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.7);
}

.service-card.premium .service-card-img {
  background: linear-gradient(135deg, #1a1000, #2a1a00);
}

.service-card.premium .service-card-price {
  color: var(--gold);
}

.service-card.premium .service-card-benefits li::before {
  color: var(--gold);
}

.premium-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--darker-bg);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GLP-1 Cards */
.service-card.glp1 {
  border: 2px solid rgba(255, 20, 147, 0.3);
}

.service-card.glp1:hover {
  box-shadow: var(--shadow-pink);
  border-color: rgba(255, 20, 147, 0.6);
}

.service-card.glp1 .service-card-img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}



.service-card.glp1 .service-card-price {
  color: var(--hot-pink);
}

.consultation-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--hot-pink);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Booster Cards */
.boosters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.booster-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 127, 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.booster-card:hover {
  box-shadow: var(--shadow-green);
  border-color: rgba(0, 255, 127, 0.4);
}

.booster-card-top {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.booster-card-img {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 1;
  border-radius: 0;
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.booster-card-img img {
  width: 56%;
  max-width: none;
  object-fit: contain;
}

.booster-card-info {
  padding: 20px;
}

.booster-card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: var(--white);
}

.booster-card-type {
  font-size: 0.8rem;
  color: var(--neon-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booster-card-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--neon-green);
}

.addon-badge {
  display: inline-block;
  background: rgba(255, 20, 147, 0.2);
  color: var(--hot-pink);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booster-card p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 8px;
  flex: 1;
  padding: 0 20px;
}

.booster-card .benefits-inline {
  color: var(--neon-green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 0 20px;
}

.booster-card .btn {
  margin: 0 20px 20px;
}

/* Booster Legend */
.booster-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 18px;
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius-sm);
  width: fit-content;
}

.booster-legend-icon {
  width: 24px;
  height: 24px;
  background: var(--neon-green);
  color: var(--darker-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.booster-legend p {
  color: var(--gray-text);
  font-size: 0.85rem;
  line-height: 1.4;
  padding: 0;
}

.booster-legend strong {
  color: var(--neon-green);
}

/* Disclaimer */
.disclaimer {
  background: rgba(255, 20, 147, 0.08);
  border-left: 4px solid var(--hot-pink);
  padding: 20px 24px;
  margin-top: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--hot-pink);
}

/* ========================================
   About Page
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-bg) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--gray-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 60px 0;
}

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

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--neon-green);
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about-image img {
  max-width: 80%;
  filter: drop-shadow(0 0 30px rgba(0, 255, 127, 0.2));
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 127, 0.5);
  box-shadow: var(--shadow-green);
}

.why-card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--neon-green);
}

.why-card p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* Service Areas */
.service-areas-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.area-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(0, 255, 127, 0.08);
  border: 2px solid rgba(0, 255, 127, 0.25);
  border-radius: var(--radius);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 127, 0.5);
  box-shadow: var(--shadow-green);
}

.area-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.area-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.area-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.areas-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .service-areas-highlight {
    grid-template-columns: 1fr;
  }
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.areas-list li {
  padding: 14px 20px;
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.25);
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
}

/* Process Steps */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  counter-reset: process;
}

.process-step {
  flex: 0 1 calc(33.33% - 16px);
  min-width: 200px;
}

.process-step {
  text-align: center;
  padding: 24px;
  counter-increment: process;
}

.process-step::before {
  content: counter(process);
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-green-dark));
  color: var(--darker-bg);
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.process-step p {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Safety Items */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.safety-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 255, 127, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 255, 127, 0.15);
}

.safety-check {
  color: var(--neon-green);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.safety-item p {
  font-size: 0.95rem;
  color: var(--gray-text);
}

/* ========================================
   Contact Page
   ======================================== */

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-left: 180px;
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--neon-green);
}

.contact-form-wrap > p {
  color: var(--gray-text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 255, 127, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group .required {
  color: var(--hot-pink);
}

.form-success {
  display: none;
  padding: 20px;
  background: rgba(0, 255, 127, 0.1);
  border: 2px solid var(--neon-green);
  border-radius: var(--radius-sm);
  color: var(--neon-green);
  font-weight: 600;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--neon-green);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 127, 0.15);
  border: 1px solid rgba(0, 255, 127, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--neon-green);
}

.contact-info-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-info-item p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--neon-green);
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--hot-pink);
}

.contact-quick-links {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-quick-links h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--white);
}

.contact-quick-links .btn {
  margin-right: 12px;
  margin-bottom: 12px;
}

/* Emergency contact block (from existing concept) */
.emergency-contact {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 20, 147, 0.08);
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: var(--radius);
}

.emergency-contact h3 {
  font-family: var(--font-heading);
  color: var(--hot-pink);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.emergency-contact p {
  color: var(--gray-text);
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-method {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 127, 0.3);
  transition: var(--transition);
}

.contact-method:hover {
  background: rgba(0, 255, 127, 0.15);
  border-color: rgba(0, 255, 127, 0.6);
  transform: scale(1.05);
}

.contact-method a {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-method svg {
  width: 22px;
  height: 22px;
  fill: var(--neon-green);
}

/* ========================================
   Footer
   ======================================== */

/* ========================================
   For Her / For Him Pages
   ======================================== */

.gender-layout {
  display: block;
  position: relative;
}

.gender-layout .gender-content {
  margin-left: 30%;
  max-width: 700px;
}

.gender-layout-reverse .gender-content {
  margin-left: 0;
  margin-right: 30%;
  max-width: 700px;
}

.gender-image {
  position: fixed;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gender-image.hidden {
  opacity: 0;
}

.gender-image-left {
  left: 0;
}

.gender-image-right {
  right: 0;
}

.gender-image img {
  height: 75vh;
  width: auto;
  max-width: none;
  display: block;
}

.gender-image-left img {
  filter: drop-shadow(0 0 40px rgba(255, 20, 147, 0.4));
}

.gender-image-right img {
  filter: drop-shadow(0 0 40px rgba(0, 255, 127, 0.4));
}

.gender-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.gender-intro {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.gender-services {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gender-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.gender-service-card:nth-child(even) {
  direction: rtl;
}

.gender-service-card:nth-child(even) > * {
  direction: ltr;
}

.gender-service-card:hover {
  border-color: rgba(0, 255, 127, 0.3);
  box-shadow: var(--shadow-green);
}

.gender-service-img {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  padding: 10px;
  overflow: hidden;
}

.gender-service-img img {
  width: 108%;
  max-width: none;
  object-fit: contain;
}

.gender-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 8px;
}

.gender-service-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.gender-service-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--neon-green);
}

.gender-service-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gender-service-info p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.6;
}

.gender-service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
}

.gender-benefit-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gender-benefit-tag-pink {
  background: rgba(255, 20, 147, 0.15);
  color: var(--hot-pink);
  border: 1px solid rgba(255, 20, 147, 0.25);
}

.gender-benefit-tag-green {
  background: rgba(0, 255, 127, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 127, 0.2);
}

.gender-service-info .btn {
  margin-top: 4px;
}

@media (max-width: 968px) {
  .gender-image {
    position: static;
    text-align: center;
    pointer-events: auto;
    margin-bottom: 24px;
  }

  .gender-image img {
    height: auto;
    max-width: 250px;
    width: 100%;
  }

  .gender-layout .gender-content,
  .gender-layout-reverse .gender-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gender-service-card {
    grid-template-columns: 1fr;
  }

  .gender-service-card:nth-child(even) {
    direction: ltr;
  }

  .gender-service-img {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .gender-image img {
    max-width: 200px;
  }
}

/* ========================================
   Category Quick Select Bar
   ======================================== */

.category-bar {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--neon-green), var(--hot-pink)) 1;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  padding: 0;
}

.category-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1400px;
  margin: 0 auto;
}

.category-bar-inner::-webkit-scrollbar {
  display: none;
}

.category-bar-link {
  padding: 12px 20px;
  color: var(--gray-text);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: var(--transition);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.category-bar-link:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.category-bar-link:hover {
  color: var(--neon-green);
  background: rgba(0, 255, 127, 0.08);
}

.category-bar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
  .category-bar-link {
    padding: 10px 16px;
    font-size: 0.7rem;
  }
}

.footer {
  background: rgba(15, 20, 25, 0.9);
  color: var(--white);
  padding: 60px 0 0;
  border-top: 2px solid rgba(255, 20, 147, 0.3);
}

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

.footer-brand p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--neon-green);
}

.footer-links li:not(:has(a)) {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--neon-green);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-credit {
  text-align: center;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 16px;
}

.footer-credit p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.turn-ceo-logo {
  height: 44px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.turn-ceo-logo:hover {
  opacity: 1;
}

/* ========================================
   Legal Pages (Privacy, Terms)
   ======================================== */

.legal-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
  color: var(--neon-green);
}

.legal-content p {
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  color: var(--gray-text);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ========================================
   404 Page
   ======================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  color: var(--white);
  padding: 24px;
}

.error-page h1 {
  font-size: 8rem;
  background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--gray-text);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-feature-img {
    max-width: 300px;
  }

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

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card:nth-child(even) {
    direction: ltr;
  }

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

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

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 84px;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    padding: 24px 0;
    gap: 20px;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Mobile: show sub-links inline under Services */
  .nav-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 4px 0 0;
    margin-top: 0;
    min-width: auto;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .nav-sub a {
    font-size: 0.8rem;
    padding: 4px 12px;
    color: var(--hot-pink) !important;
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
  }

  .nav-sub a:hover {
    background: rgba(255, 20, 147, 0.15);
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 180px;
  }

  .hero {
    padding-top: 200px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) {
    direction: ltr;
  }

  .service-card-img {
    min-height: 400px;
    padding: 10px;
  }

  .service-card-img img {
    height: 95%;
    width: auto;
    max-width: none;
    max-height: none;
  }

  .service-card-header {
    flex-direction: column;
  }

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

  .process-step {
    flex: 0 1 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-left: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .services-hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

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

  .booster-card-img {
    min-height: 200px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .services-nav {
    flex-direction: column;
    align-items: center;
  }

  .services-nav a {
    width: 100%;
    text-align: center;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 180px;
  }

  .logo-text {
    font-size: 1rem;
  }
}

/* ========================================
   Utilities
   ======================================== */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Lazy load fade in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--neon-green);
  color: var(--darker-bg);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.2s;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}
/* Card fixes */
.featured-card {
  height: 400px !important;
  max-height: none !important;
}
.featured-card-img {
  height: 100% !important;
  overflow: hidden !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.featured-card-img img {
  width: 170% !important;
  max-width: none !important;
  height: auto !important;
}
.featured-card-body {
  display: flex !important;
  flex-direction: column !important;
  padding: 28px !important;
}
.featured-card-body .btn {
  margin-top: 16px !important;
  width: 100% !important;
  justify-content: center !important;
}
.featured-card-img {
  min-height: 0 !important;
}
.featured-card-body {
  padding-top: 16px !important;
}
.featured-card-body p {
  margin-top: auto !important;
  margin-bottom: 12px !important;
}
