/* app.css — Yonkers Car Wash (full stylesheet) */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Theme tokens */
:root {
  --midnight: #0f172a;
  --slate: #1e293b;
  --charcoal: #334155;
  --silver: #94a3b8;
  --pearl: #f8fafc;
  --racing-red: #ef4444;
  --checkered: #000000;
  --metallic: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #64748b 100%);
  --shine: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
html {
  -webkit-text-size-adjust: 100%; /* iOS Safari (the one we care about) */
  text-size-adjust: 100%;         /* Standard property for other engines */
}


/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--slate);
  background: var(--pearl);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.95);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--pearl);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--racing-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: 'YO WASH';
  color: #fff;
  font-weight: 900;
  font-size: 9px;
  z-index: 1;
}
.logo-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  animation: speedLine 2s infinite;
}
@keyframes speedLine {
  0% { transform: translateX(-100%) translateY(-50%); }
  100% { transform: translateX(200%) translateY(-50%); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.nav-menu a {
  color: var(--pearl);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: var(--racing-red);
  transition: transform 0.3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--pearl);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================= */
/*           HERO AREA           */
/* ============================= */

/* Section shell */
.hero{
  margin-top:80px;
  position:relative;
  min-height:93vh;
  display:block;
  background:linear-gradient(135deg,var(--midnight) 0%,var(--slate) 100%);
  overflow:hidden;
}

/* 3-column photo wall */
.hero-gallery{
  position:absolute; inset:0;
  display:grid; grid-template-columns:repeat(3,1fr);
  z-index:0;
}
.hero-gallery .lane{ position:relative; overflow:hidden; }

/* Smooth loop: ~3s pause at each end, slow travel between */
.hero-gallery .lane .strip{
  position:absolute; inset:0; height:200%;
  display:flex; flex-direction:column;
  will-change:transform; backface-visibility:hidden;
  animation:stripSlide 18s ease-in-out infinite alternate;
}

/* Stagger + alternate so they’re not in sync */
.hero-gallery .lane:nth-child(2) .strip{ animation-direction:alternate-reverse; animation-delay:.2s; }
.hero-gallery .lane:nth-child(3) .strip{ animation-delay:.4s; }

/* Each strip holds two stacked images */
.hero-gallery img{
  width:100%; height:50%;
  object-fit:cover; display:block;
}

/* Overlay for readability */
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(15,23,42,.78) 0%,rgba(15,23,42,.50) 45%,rgba(15,23,42,.80) 100%);
  z-index:1;
}

/* Content above photos */
.hero-content{ position:relative; z-index:2; }

/* Keyframes: 3s hold at start + end (3/18 ≈ 16.666%) */
@keyframes stripSlide{
  0%,16.666%   { transform:translateY(0%); }
  83.333%,100% { transform:translateY(-50%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-gallery .lane .strip{ animation:none; transform:translateY(0); }
}


.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--pearl);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6);
  animation: textGlow 4s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: clamp(18px, 3.6vw, 29px);
  color: #fcfcfc;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  margin-bottom: 12px;
  animation: subtitleFloat 6s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes photoParallax1 {
  0%, 20% { transform: translateY(0%); }
  40%, 60% { transform: translateY(-30%); }
  80%, 100% { transform: translateY(0%); }
}

@keyframes photoParallax2 {
  0%, 25% { transform: translateY(-20%); }
  50%, 75% { transform: translateY(-50%); }
  100% { transform: translateY(-20%); }
}

@keyframes photoParallax3 {
  0%, 15% { transform: translateY(0%); }
  35%, 65% { transform: translateY(-35%); }
  85%, 100% { transform: translateY(0%); }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes lightStreaks {
  0% { transform: translateX(-20%) rotate(-2deg); opacity: 0.6; }
  50% { transform: translateX(0%) rotate(0deg); opacity: 1; }
  100% { transform: translateX(20%) rotate(2deg); opacity: 0.6; }
}

@keyframes premiumShine {
  0% { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
  30% { opacity: 0.8; }
  70% { opacity: 0.8; }
  100% { transform: translateX(200%) skewX(-20deg); opacity: 0; }
}

@keyframes textGlow {
  0% { text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6), 0 0 30px rgba(239,68,68,0.3); }
  100% { text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6), 0 0 50px rgba(239,68,68,0.5); }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-gallery .lane .strip {
    animation-duration: 15s; /* Slower on mobile for better performance */
  }
  
  .hero-content {
    padding: 60px 20px 20px;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-gallery .lane .strip,
  .hero::before,
  .hero::after,
  .hero-shine,
  .hero h1,
  .hero-subtitle {
    animation: none;
  }
  
  .hero-gallery .lane .strip {
    transform: translateY(-25%);
  }
}


/* One global overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,23,42,.78) 0%,
    rgba(15,23,42,.50) 45%,
    rgba(15,23,42,.80) 100%
  );
  z-index: 1;
}

/* Content pinned near the top */
.hero-content {
  position: relative;
  z-index: 2;                   /* above overlay/photos */
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 30px 20px;      /* tighten spacing toward top */
  text-align: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--pearl);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.hero-subtitle {
  font-size: clamp(18px, 3.6vw, 29px);
  color: #fcfcfc;               /* brighter than var(--silver) */
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
  margin-bottom: 12px;          /* no giant gap */
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-gallery .strip { animation: none; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
  background: var(--racing-red);
  color: #fff;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--racing-red);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239,68,68,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--pearl);
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--pearl);
}
.btn-secondary:hover {
  background: var(--pearl);
  color: var(--midnight);
}

/* Main layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--midnight);
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: -1px;
}
.section-header p {
  font-size: 18px;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-header {
  padding: 30px;
  background: linear-gradient(135deg, var(--slate) 0%, var(--charcoal) 100%);
  position: relative;
}
.service-header h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}
.service-price {
  font-size: 36px;
  color: #fff;
  font-weight: 900;
}
.service-price span {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--racing-red);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-features { padding: 30px; }
.service-features ul { list-style: none; }
.service-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-features li:last-child { border-bottom: none; }

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--racing-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

/* VIP Section */
.vip-section {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--slate) 100%);
  border-radius: 24px;
  padding: 60px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.vip-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--racing-red);
  border-radius: 50%;
  opacity: 0.1;
  top: -150px;
  right: -150px;
}
.vip-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.vip-content h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
}
.vip-content p {
  color: var(--silver);
  font-size: 20px;
  margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.feature-card { text-align: center; }
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--midnight);
}
.feature-card p { color: var(--charcoal); line-height: 1.6; }

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  position: relative;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.06);
  background: transparent;
}
.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}
.contact-info h3 {
  color: var(--midnight);
  font-size: 24px;
  margin-bottom: 30px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.info-icon {
  width: 40px;
  height: 40px;
  background: var(--racing-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.info-text h4 { color: var(--midnight); margin-bottom: 5px; }
.info-text p { color: var(--charcoal); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1.5px solid #e2e8f0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: var(--midnight);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--racing-red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
  background: #fff;
}
.form-submit {
  background: var(--racing-red);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

/* Map */
.map-wrapper {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 450px;
}

/* Footer */
footer {
  background: var(--midnight);
  color: var(--pearl);
  padding: 60px 0 30px;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand h3 { font-size: 24px; margin-bottom: 15px; }
.footer-brand p { color: var(--silver); line-height: 1.8; margin-bottom: 20px; }
.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-column ul { list-style: none; }
.footer-column a {
  color: var(--silver);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s;
}
.footer-column a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--silver);
}

/* Page hero (internal pages) */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--slate) 100%);
  padding: 80px 30px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
}

/* VIP Signup */
.vip-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--slate) 100%);
  padding: 80px 30px;
  text-align: center;
}
.vip-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
}
.vip-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 30px; }
.vip-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 50px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--racing-red), #dc2626);
}
.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}
.stepper .dot {
  text-align: center;
  padding: 15px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  background: #f1f5f9;
  color: #334155;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}
.stepper .dot.active {
  background: rgba(239,68,68,.1);
  border-color: var(--racing-red);
  color: var(--racing-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239,68,68,0.2);
}
.vip-step { margin-bottom: 30px; }
.vip-step h3 {
  color: var(--midnight);
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 800;
}

/* Category chips */
.vip-cat {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
.vip-cat input[type="radio"] { display: none; }
.chip {
  padding: 12px 30px;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--charcoal);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.chip::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.1), transparent);
  transition: left 0.5s;
}
.chip:hover {
  border-color: var(--racing-red);
  color: var(--racing-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239,68,68,0.15);
}
.chip:hover::before { left: 100%; }
.chip.on {
  background: var(--racing-red);
  color: #fff;
  border-color: var(--racing-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239,68,68,0.3);
}

/* Plans */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 20px 0;
}
.plan-card {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--racing-red), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--racing-red);
}
.plan-card:hover::before { transform: scaleX(1); }
.plan-card input[type="radio"] {
  margin-right: 15px;
  transform: scale(1.3);
  accent-color: var(--racing-red);
}
.plan-title {
  font-weight: 800;
  color: var(--midnight);
  font-size: 20px;
  margin-bottom: 8px;
}
.plan-price {
  font-size: 28px;
  font-weight: 900;
  margin-top: 10px;
  color: var(--racing-red);
}

/* Family toggle */
.fam-toggle {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fam-toggle::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(239,68,68,0.05) 0%, transparent 50%);
  animation: pulse 3s infinite;
}
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.fam-toggle label { margin-bottom: 10px; position: relative; z-index: 1; }
.dim { color: var(--charcoal); font-size: 16px; position: relative; z-index: 1; }

/* Fields */
.vip-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 20px 0;
}
.vip-field label {
  display: block;
  color: var(--midnight);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.vip-field input,
.vip-field select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}
.vip-field input:focus,
.vip-field select:focus {
  outline: none;
  border-color: var(--racing-red);
  box-shadow: 0 0 0 4px rgba(239,68,68,.12);
  transform: translateY(-1px);
}

/* Vehicle 2 block */
.vip-veh2 {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  margin: 25px 0;
  position: relative;
}
.vip-veh2 h4 {
  color: var(--midnight);
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vip-hint {
  margin-top: 20px;
  padding: 15px 20px;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 12px;
  color: var(--midnight);
  font-size: 14px;
  font-weight: 500;
}

/* Consents */
.consent-group {
  margin: 15px 0;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.consent-group label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}
.consent-group input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.2);
  accent-color: var(--racing-red);
}

/* Actions */
.vip-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 16px 30px;
  border-radius: 100px;
  border: 2px solid #e2e8f0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  background: #f8fafc;
  border-color: var(--racing-red);
  color: var(--racing-red);
  transform: translateY(-2px);
}

/* Notices */
.notice {
  margin: 20px 0;
  padding: 20px 25px;
  border-radius: 12px;
  border: 2px solid #a7f3d0;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #065f46;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.notice::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #10b981;
}

.error {
  color: #b91c1c;
  font-size: 14px;
  margin-top: 10px;
  padding: 15px 20px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
}

.summary {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* Receipt */
.receipt {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  margin-top: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  color: var(--charcoal);
  position: relative;
}
.receipt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--racing-red), #dc2626);
  border-radius: 20px 20px 0 0;
}
.receipt h2 {
  color: var(--midnight);
  margin-bottom: 20px;
  font-size: 28px;
}
.receipt .meta {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.receipt .row {
  margin: 10px 0;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.receipt .note {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 2px solid #a7f3d0;
  color: #065f46;
  font-weight: 600;
}
.receipt-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--midnight);
    width: 100%;
    padding: 30px;
    transition: 0.3s;
    gap: 20px;
  }
  .nav-menu.active { left: 0; }
  .mobile-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 28px 20px 16px; }
  .hero h1 { font-size: clamp(30px, 7vw, 48px); }
  .hero-subtitle { font-size: clamp(16px, 4vw, 22px); }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .contact-container,
  .form-row,
  .vip-grid-2 { grid-template-columns: 1fr; }

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

  .vip-section { padding: 40px 20px; }
  .vip-card { padding: 30px 20px; }
  .vip-cat { flex-direction: column; align-items: center; }
  .plan-cards { grid-template-columns: 1fr; }
  .vip-actions { flex-direction: column; }
  .stepper { grid-template-columns: 1fr; gap: 10px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }
.hidden { display: none; }

.vip-card.receipt-mode > *:not(#vipReceipt) { display: none !important; }
#vipReceipt { display: block; }

/* Print */
@media print {
  header, nav, footer, .page-hero, .vip-card > *:not(#vipReceipt) {
    display: none !important;
  }
  #vipReceipt {
    display: block !important;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
  }
  .receipt-actions { display: none !important; }
  body { background: #fff !important; }
}


/* === HERO position override (put at very bottom of app.css) === */
/* Bigger number = pushes text/buttons lower. Smaller = higher. */
.hero { --hero-offset: 120px; }

.hero-content {
  padding-top: var(--hero-offset) !important; /* beats earlier + mobile rules */
}

/* Optional: different offset on phones */
@media (max-width: 768px) {
  .hero { --hero-offset: 40px; }
}



/* ==== PHONE TUNING (iPhone & small Android) ==== */
@media (max-width: 480px) {
  /* Header/nav a bit shorter */
  nav { height: 64px; padding: 0 16px; }
  .logo { font-size: 18px; gap: 10px; }
  .logo-icon { width: 32px; height: 32px; }

  /* Hero: less offset, tighter padding, smaller type */
  .hero { --hero-offset: 8px; min-height: 76vh; }
  .hero-content { padding: 18px 16px 14px !important; }

  /* Headline + subtitle: dial back minimums */
  .hero h1 {
    font-size: clamp(22px, 6.2vw, 32px) !important; /* was min 36/30 */
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0,0,0,.45);
  }
  .hero-subtitle {
    font-size: clamp(13px, 3.8vw, 18px) !important;
    font-weight: 700;
    margin-bottom: 14px;
  }

  /* Buttons: slimmer */
  .btn-primary, .btn-secondary {
    padding: 12px 20px !important;
    font-size: 14px !important;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }

  /* Section titles below hero a touch smaller */
  .section-header h2 { font-size: clamp(22px, 6vw, 28px); }
  .section-header p  { font-size: 15px; }

  /* General spacing */
  .container { padding: 36px 16px; }
  .service-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Tiny devices (SE/old Android) */
@media (max-width: 360px) {
  .hero h1 { font-size: clamp(20px, 6.5vw, 28px) !important; }
  .hero-subtitle { font-size: 13px !important; }
  .btn-primary, .btn-secondary { padding: 10px 18px !important; font-size: 13px !important; }
}

/* Keep hero and mobile menu flush with shorter 64px header */
@media (max-width: 480px) {
  .nav-menu { top: 64px; }
  .hero { margin-top: 64px; }
  .page-hero, .vip-hero { margin-top: 64px; }
}
