/* ============================================================
   ALPHA SHINE DETAILING — Stylesheet
   Theme: Premium dark + electric blue + chrome silver
   ============================================================ */

/* ----------- DESIGN TOKENS ----------- */
:root {
  /* Brand colors — pulled from the Alpha Shine logo */
  --blue-500: #00b8ff;        /* electric blue (logo splash) */
  --blue-400: #38c9ff;
  --blue-600: #0095d4;
  --blue-700: #006fa3;
  --blue-glow: rgba(0, 184, 255, 0.35);

  /* Neutrals */
  --bg-0: #050811;            /* deepest */
  --bg-1: #0a0e1a;            /* page bg */
  --bg-2: #0f1424;            /* surface */
  --bg-3: #161c2e;            /* surface raised */
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(0,184,255,0.25);

  /* Text */
  --text: #e7ecf5;
  --text-mute: #9aa3b8;
  --text-dim: #6b7388;

  /* Chrome silver — for headings */
  --silver-1: #f6f8fc;
  --silver-2: #b9c2d3;
  --silver-3: #7a8398;

  /* Spacing & radii */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;

  /* Shadows */
  --shadow-card: 0 20px 50px -20px rgba(0,0,0,0.7), 0 0 0 1px var(--line) inset;
  --shadow-glow: 0 0 0 1px rgba(0,184,255,0.4), 0 20px 60px -20px rgba(0,184,255,0.4);
}

/* ----------- BASE ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-1);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------- TYPOGRAPHY HELPERS ----------- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-500) 50%, #7fdcff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-400);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0,184,255,0.06);
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--silver-1);
}
.section-sub {
  color: var(--text-mute);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.lead { font-size: 18px; color: var(--text-mute); }
.small { color: var(--text-dim); font-size: 13px; margin: 4px 0 0; }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
  color: #001a26;
  box-shadow: 0 10px 30px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 35px -10px var(--blue-glow); color: #001a26; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(0,184,255,0.08); border-color: var(--blue-500); }

/* ----------- NAVBAR ----------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(10,14,26,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,14,26,0.85);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 16px;
  background: linear-gradient(180deg, var(--silver-1), var(--silver-3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--blue-400);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--blue-500);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------- HERO ----------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,184,255,0.2), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,184,255,0.1), transparent 50%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.hero-shine {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(0,184,255,0.05) 90deg, transparent 180deg);
  animation: rotate 30s linear infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,184,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
@keyframes rotate { to { transform: rotate(360deg); } }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0,184,255,0.08);
  border: 1px solid var(--line-strong);
  color: var(--blue-400);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  background: linear-gradient(180deg, var(--silver-1) 0%, var(--silver-2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
}
.hero-badges li {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: rgba(15,20,36,0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.hero-badges strong {
  color: var(--blue-400);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-badges span {
  color: var(--text-mute);
  font-size: 12px;
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.car-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15,20,36,0.9), rgba(10,14,26,0.6));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.car-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 50%, var(--blue-glow), transparent 50%);
  filter: blur(30px);
  z-index: 0;
}
.car-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,184,255,0.3));
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 13px;
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 2px;
  margin: 6px auto;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ----------- TRUST STRIP ----------- */
.trust-strip {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-400);
}
.trust-item > span:last-child {
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ----------- SECTIONS ----------- */
.section {
  padding: 110px 0;
}

/* ----------- ABOUT ----------- */
.about { background: var(--bg-1); }
.about-grid { max-width: 1000px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,184,255,0.1);
  color: var(--blue-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; margin: 0 0 6px; color: var(--silver-1); }
.feature-card p { color: var(--text-mute); font-size: 14px; margin: 0; }

/* ----------- SERVICES ----------- */
.services {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  position: relative;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--bg-2);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-mute);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.tab.is-active {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #001a26;
  box-shadow: 0 8px 20px -8px var(--blue-glow);
}
.tab-panel { display: none; animation: fadeUp 0.4s ease; }
.tab-panel.is-active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.price-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.price-card.featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-glow);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #001a26;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.vehicle-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 18px;
  margin: 0;
  color: var(--silver-1);
}
.price { display: flex; align-items: baseline; gap: 10px; }
.price .amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--blue-400);
  line-height: 1;
}
.price .period {
  color: var(--text-mute);
  font-size: 14px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.price-features li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text-mute);
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(0,184,255,0.15);
  border: 1px solid var(--blue-500);
}
.price-features li::after {
  content: '';
  position: absolute;
  left: 5px; top: 9px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--blue-400);
  border-bottom: 2px solid var(--blue-400);
  transform: rotate(-45deg);
}

/* Detail includes panel */
.detail-includes {
  background: linear-gradient(135deg, rgba(0,184,255,0.06), rgba(0,184,255,0.01));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}
.detail-includes h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  margin: 0 0 18px;
  color: var(--silver-1);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.includes-grid h4 {
  color: var(--blue-400);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.includes-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes-grid li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text-mute);
  font-size: 14px;
}
.includes-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-400);
  font-weight: 700;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.addon-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.addon-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.addon-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(0,184,255,0.1);
  color: var(--blue-400);
  display: flex; align-items: center; justify-content: center;
}
.addon-icon svg { width: 26px; height: 26px; }
.addon-card h3 { color: var(--silver-1); margin: 0 0 8px; font-size: 18px; }
.addon-card p { color: var(--text-mute); font-size: 14px; margin: 0 0 18px; }

/* ----------- BOOKING ----------- */
.booking {
  background: var(--bg-1);
  position: relative;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.booking-copy p { color: var(--text-mute); margin-bottom: 28px; }
.booking-info {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.info-value { font-size: 15px; color: var(--text); font-weight: 500; }
.info-value:hover { color: var(--blue-400); }

.hours h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--silver-1);
}
.status-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,184,255,0.1);
  color: var(--blue-400);
  border: 1px solid var(--line-strong);
}
.status-pill.open { background: rgba(0,255,150,0.1); color: #00e5a0; border-color: rgba(0,255,150,0.25); }
.status-pill.closed { background: rgba(255,80,80,0.1); color: #ff7373; border-color: rgba(255,80,80,0.25); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-table th, .hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.hours-table th { color: var(--text-dim); font-weight: 500; width: 80px; }
.hours-table td { color: var(--text); }

/* Booking Form */
.booking-form {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.booking-form h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  margin: 0 0 24px;
  color: var(--silver-1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: none;
  padding: 0;
  min-width: 0;
}
.form-field > label,
.form-field > legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  padding: 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(0,184,255,0.12);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #ff5e5e;
  box-shadow: 0 0 0 4px rgba(255,94,94,0.12);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue-400) 50%),
                    linear-gradient(135deg, var(--blue-400) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.checkbox-row { display: flex; flex-wrap: wrap; gap: 10px; }
.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mute);
  background: var(--bg-3);
  transition: all 0.2s;
}
.check input { display: none; }
.check:has(input:checked) {
  background: rgba(0,184,255,0.15);
  border-color: var(--blue-500);
  color: var(--text);
}
.error-msg {
  display: none;
  color: #ff7373;
  font-size: 12px;
  margin-top: 2px;
}
.error-msg.show { display: block; }
.form-fineprint {
  font-size: 12px;
  color: var(--text-dim);
  margin: 14px 0 0;
  text-align: center;
}

/* Date Picker */
.date-picker {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dp-header span {
  font-weight: 600;
  font-size: 15px;
  color: var(--silver-1);
  font-family: 'Orbitron', sans-serif;
}
.dp-nav {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dp-nav:hover { background: var(--blue-500); color: #001a26; border-color: var(--blue-500); }
.dp-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.dp-weekdays, .dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.dp-weekdays span {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  padding: 6px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dp-days button {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  aspect-ratio: 1;
  border-radius: 8px;
  transition: all 0.15s;
}
.dp-days button:hover:not(:disabled):not(.is-selected) {
  background: var(--bg-2);
  border-color: var(--line-strong);
}
.dp-days button.is-selected {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #001a26;
  font-weight: 700;
}
.dp-days button.is-today {
  border-color: var(--line-strong);
}
.dp-days button:disabled {
  color: var(--text-dim);
  opacity: 0.35;
  cursor: not-allowed;
}
.dp-days .empty { visibility: hidden; }

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}
.time-slots button {
  padding: 10px 8px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.time-slots button:hover:not(:disabled):not(.is-selected) {
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.time-slots button.is-selected {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #001a26;
  border-color: var(--blue-500);
  font-weight: 700;
}
.time-slots .empty-time {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-dim);
  padding: 14px;
  font-size: 13px;
}

/* ----------- FOOTER ----------- */
.footer {
  background: var(--bg-0);
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-name { font-size: 22px; }
.footer-brand .brand-sub { font-size: 11px; }
.footer-brand p { color: var(--text-mute); margin-top: 14px; font-size: 14px; max-width: 280px; }
.footer h5 {
  color: var(--blue-400);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer li { color: var(--text-mute); font-size: 14px; }
.footer a:hover { color: var(--blue-400); }
.footer-hours li { display: flex; justify-content: space-between; }
.footer-hours span { color: var(--text-dim); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}

/* ----------- MODAL ----------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,8,17,0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}
.modal-card {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #001a26;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px -5px var(--blue-glow);
}
.modal-icon svg { width: 36px; height: 36px; }
.modal-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--silver-1);
}
.modal-card > p { color: var(--text-mute); margin: 0 0 22px; }
.modal-summary {
  text-align: left;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 22px;
  font-size: 14px;
}
.modal-summary div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.modal-summary div span:first-child { color: var(--text-dim); }
.modal-summary div span:last-child { color: var(--text); font-weight: 500; text-align: right; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.9) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 960px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-badges { grid-template-columns: 1fr; max-width: 100%; }
  .hero-badges li { flex-direction: row; justify-content: space-between; }

  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .navbar.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(14px);
    padding: 20px 24px;
    border-top: 1px solid var(--line);
    gap: 0;
  }
  .navbar.menu-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .form-row { grid-template-columns: 1fr; }
  .price-grid.two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .booking-form { padding: 24px 20px; }
  .detail-includes { padding: 24px 20px; }
  .tabs { flex-direction: row; max-width: 100%; }
  .tab { font-size: 13px; padding: 10px 12px; }
}

/* ----------- REVEAL ANIMATIONS ----------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----------- ACCESSIBILITY ----------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}
