/* ========================================
   NafiRent - Premium Rent a Car · 2026
   Luxury dark + champagne gold
   ======================================== */

:root {
  --bg: #141824;
  --bg-2: #1B2030;
  --surface: #232A3C;
  --surface-2: #2B3348;
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #FFFFFF;
  --text-2: #C4CAD8;
  --text-3: #99A1B3;
  --gold: #3B82F6;
  --gold-2: #7CC4FF;
  --gold-glow: rgba(59, 130, 246, 0.4);
  --danger: #EF4444;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  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; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--gold); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-2); font-size: 17px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
}
.btn-primary:hover { background: #2563EB; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost::after {
  content: '→';
  margin-left: 2px;
  transition: transform 0.25s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-block { width: 100%; }

/* ========== NAVIGATION - Slate-blue glass ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background:
    linear-gradient(180deg, rgba(28, 39, 58, 0.88) 0%, rgba(22, 30, 48, 0.82) 100%);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.35s var(--ease);
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.35) 50%, transparent 100%);
  pointer-events: none;
}
.nav.scrolled {
  background:
    linear-gradient(180deg, rgba(22, 31, 50, 0.94) 0%, rgba(16, 23, 40, 0.90) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 32px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s var(--ease-out), filter 0.3s;
}
.brand:hover .brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px var(--gold-glow));
}
.brand-logo-sm { height: 40px; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 4px 20px -4px var(--gold-glow);
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; background: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-btn {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-3);
  border-radius: 999px;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--text-2); }
.lang-btn.active {
  background: var(--gold);
  color: #FFFFFF;
}

/* Phone card - top right, tap to call */
.phone-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 999px;
  color: var(--text);
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}
.phone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.phone-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px var(--gold-glow);
  color: #FFFFFF;
}
.phone-card:hover::before { opacity: 1; }
.phone-card svg { color: var(--gold); transition: color 0.3s; position: relative; z-index: 1; }
.phone-card:hover svg { color: #FFFFFF; }
.phone-text {
  display: flex; align-items: center; justify-content: center;
  line-height: 1; position: relative; z-index: 1;
}
.phone-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
  text-align: center;
}
.phone-card:hover .phone-label { color: #FFFFFF; opacity: 0.95; }

.phone-pulse {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: pulse 2s infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  100% { transform: translateY(-50%) scale(2.4); opacity: 0; }
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.burger span {
  width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(59, 130, 246, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(59, 130, 246, 0.08), transparent 60%),
    linear-gradient(180deg, #141824 0%, #1B2030 100%);
  z-index: -2;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 80%);
  z-index: -1;
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 600px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s var(--ease-out);
}
.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18); }
  50% { box-shadow: 0 0 0 9px rgba(59, 130, 246, 0.04); }
}
.hero-title {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
  animation: fadeUp 1s var(--ease-out) 0.1s both;
}
.hero-title span { display: inline; margin-right: 0.2em; }
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 54px;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}
.hero-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}
.hero-meta li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.hero-meta em {
  font-style: normal;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeIn 1.2s var(--ease-out) 0.3s both;
}
.hero-car {
  position: relative;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-car img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.25);
  filter: saturate(1.18) contrast(1.12) brightness(0.96);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out), filter 0.8s;
}
.hero-car:hover img { transform: scale(1.05); filter: saturate(1.25) contrast(1.14) brightness(1); }
.hero-glow {
  position: absolute;
  inset: -100px;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(59, 130, 246, 0.85), transparent 60%),
    radial-gradient(ellipse 80% 60% at 25% 40%, rgba(124, 196, 250, 0.55), transparent 65%),
    radial-gradient(ellipse 70% 55% at 75% 70%, rgba(96, 165, 250, 0.6), transparent 65%);
  filter: blur(70px);
  animation: heroGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlow {
  0%   { transform: scale(1) translateX(0); opacity: 0.9; }
  50%  { transform: scale(1.06) translateX(8px); opacity: 1; }
  100% { transform: scale(1.1) translateX(-12px); opacity: 0.92; }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 15, 28, 0.0) 40%, rgba(10, 15, 28, 0.55) 100%),
    linear-gradient(95deg, rgba(20, 30, 55, 0.25) 0%, transparent 35%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}
.hero-car::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 80px 10px rgba(10, 15, 28, 0.35);
  pointer-events: none;
  z-index: 3;
}
.hero-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.hero-caption small {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}
.hero-caption strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.card-rating {
  top: 40px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-rating .stars { color: var(--gold); font-size: 16px; }
.card-rating strong { display: block; font-size: 17px; }
.card-rating span { font-size: 11px; color: var(--text-3); }
.card-price {
  bottom: 40px;
  right: -10px;
  display: flex;
  flex-direction: column;
  animation-delay: -2.5s;
}
.card-price span { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.card-price strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.card-price small { font-size: 14px; color: var(--text-2); font-weight: 400; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-strong);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ========== FEATURES ========== */
.features { padding: 100px 0 40px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature {
  padding: 30px 28px 26px;
  background: transparent;
  border-top: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s;
}
.feature:hover { border-top-color: var(--gold); }
.feature-num {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.feature h3 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ========== FLEET FILTERS ========== */
.fleet-filters {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
}
.filter-group { display: flex; align-items: center; gap: 10px; }
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.chip:hover { border-color: var(--border-strong); color: var(--text); }
.chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFFFF;
}
.filter-sort select {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.filter-sort select:focus { outline: none; border-color: var(--gold); }
.filter-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-3);
}
.filter-count span:first-child { color: var(--gold); font-weight: 600; }
.fleet-empty {
  text-align: center;
  padding: 80px 20px;
}
.fleet-empty p { color: var(--text-2); margin-bottom: 20px; font-size: 15px; }
@media (max-width: 720px) {
  .fleet-filters { gap: 18px; padding: 16px; flex-direction: column; align-items: stretch; }
  .filter-group { flex-direction: column; align-items: flex-start; gap: 8px; }
  .filter-count { margin-left: 0; }
}

/* ========== FLEET ========== */
.fleet { padding: 80px 0 100px; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.car-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.car-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.car-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold-glow);
}
.car-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  isolation: isolate;
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 78% 60% at 50% 60%, #ffffff 0%, #f3f4f7 62%, #e4e7ec 100%);
}
.car-img::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}
.car-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.8s var(--ease-out);
  mix-blend-mode: darken;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.18)) contrast(1.03);
}
.car-card:hover .car-img img { transform: scale(1.06) translateY(-4px); }
.car-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 16% at 50% 92%, rgba(15, 23, 42, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 3;
}
.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(20, 24, 36, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.car-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.car-name {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.car-cat { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
.car-specs {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.car-specs > div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
}
.car-specs svg { color: var(--gold); flex-shrink: 0; }
.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.car-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.car-price strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.car-price small { font-size: 13px; color: var(--text-3); }
.car-btn {
  padding: 11px 20px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.3s;
}
.car-btn:hover {
  background: var(--gold);
  color: #FFFFFF;
}

/* ========== WHY US ========== */
.why { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.why-text > p { color: var(--text-2); font-size: 17px; margin-bottom: 28px; }
.why-list { list-style: none; margin-bottom: 32px; }
.why-list li {
  padding: 13px 0 13px 26px;
  font-size: 15.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #141824;
}
.why-visual img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.1) brightness(1.05) saturate(1.1);
  transition: transform 1.2s var(--ease-out), filter 0.6s;
}
.why-visual:hover img { transform: scale(1.04); filter: contrast(1.12) brightness(1.08) saturate(1.15); }
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(59, 130, 246, 0.18), transparent 60%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}
.why-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(20, 24, 36, 0.75) 100%),
    linear-gradient(90deg, rgba(20, 24, 36, 0.2) 0%, transparent 40%, transparent 80%, rgba(20, 24, 36, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ========== CONTACT ========== */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s;
  width: 100%;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.contact-form input[type="file"] {
  padding: 14px 16px;
  border: 1.5px dashed var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input[type="file"]:hover {
  border-color: var(--gold);
  background: rgba(59, 130, 246, 0.05);
}
.contact-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 0;
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-form input[type="file"]::file-selector-button:hover {
  opacity: 0.9;
}
.form-note {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  margin-top: 4px;
}
.btn.loading { opacity: 0.7; cursor: wait; position: relative; }
.btn.loading::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  color: #4ade80;
  margin-bottom: 20px;
  font-size: 14.5px;
  transition: opacity 0.8s, transform 0.8s;
}
.form-success strong { font-size: 18px; }
.form-success.fade { opacity: 0; transform: translateY(-10px); }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
}
.info-card:hover {
  border-color: var(--gold);
  background: var(--surface-2);
  transform: translateX(4px);
}
.info-card.info-phone {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border-color: rgba(59, 130, 246, 0.3);
}
.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.info-card > div:not(.info-icon) {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.info-card > div span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}
.info-card > div strong { font-size: 16px; color: var(--text); }
.info-card > div small { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.info-arrow {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.3s;
}
.info-card:hover .info-arrow { transform: translateX(4px); }

.map-wrap {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
  transition: filter 0.3s;
}
.map-wrap:hover { filter: invert(0.92) hue-rotate(180deg) saturate(0.8); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ========== FOOTER ========== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { font-size: 18px; font-weight: 800; display: block; letter-spacing: -0.02em; }
.footer-brand small { font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: right; color: var(--text-3); font-size: 13px; }

/* ========== PAGE HERO (sub-pages) ========== */
.page-hero {
  position: relative;
  padding: 160px 24px 70px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(59, 130, 246, 0.12), transparent 60%),
    linear-gradient(180deg, #141824 0%, #0E0E15 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .kicker { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 820px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--text-3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-3); }

/* Index teaser cards */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 100px 0;
}
.teaser {
  padding: 36px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.teaser:hover { border-color: var(--gold); transform: translateY(-3px); }
.teaser-num {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.teaser h3 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.teaser p { font-size: 15px; color: var(--text-2); line-height: 1.55; }
.teaser-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  padding-top: 14px;
}
.teaser-go::after { content: '→'; transition: transform 0.25s var(--ease-out); }
.teaser:hover .teaser-go::after { transform: translateX(6px); }
@media (max-width: 720px) {
  .teaser-grid { grid-template-columns: 1fr; padding: 60px 0; }
  .page-hero { padding: 130px 20px 50px; }
}

/* Extras list on services page */
.extras-page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.extras-page-list .extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}
.extras-page-list .extra-row:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 28px; }
.extras-page-list .extra-row:nth-child(even) { padding-left: 28px; }
.extras-page-list strong { font-size: 16px; font-weight: 500; color: var(--text); }
.extras-page-list span { color: var(--gold); font-weight: 600; font-size: 15px; }
@media (max-width: 720px) {
  .extras-page-list { grid-template-columns: 1fr; }
  .extras-page-list .extra-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .extras-page-list .extra-row:nth-child(even) { padding-left: 0; }
}

/* Stats strip (why page) */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 80px 0;
}
.stat { padding: 0 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.stat span { font-size: 14px; color: var(--text-2); }
@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 30px 0; padding: 40px 0; margin: 50px 0; }
  .stat { border-right: none; padding: 16px; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}

/* ========== MOTTO ========== */
.motto-section {
  padding: 100px 0 60px;
  border-top: 1px solid var(--border);
  position: relative;
}
.motto {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.motto > small {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}
.motto > p {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 500;
}
.motto > p em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.motto-sig {
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

/* ========== DIFFERENTIATORS ========== */
.diff-section { padding: 80px 0 100px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 20px;
}
.diff-item {
  padding: 30px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s;
}
.diff-item:hover { background: var(--surface); }
.diff-check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.diff-item strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.diff-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

/* ========== HOW IT WORKS (steps) ========== */
.steps-section {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.step h3 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: var(--text-2); line-height: 1.6; max-width: 320px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }
}

/* ========== COMPARISON TABLE ========== */
.compare {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 15px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border-strong);
}
.compare-row .us, .compare-row .them { text-align: center; }
.compare-row .us { color: var(--gold); font-weight: 600; }
.compare-row .them { color: var(--text-3); }
.compare-row.head .us { color: var(--text); }
.yes-mark { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(59, 130, 246, 0.14); color: var(--gold); font-size: 12px; font-weight: 700; }
.no-mark { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, 0.04); color: var(--text-3); font-size: 12px; font-weight: 600; }
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1.6fr 1fr 1fr; font-size: 14px; padding: 14px 2px; }
}

/* ========== QUOTE BLOCK ========== */
.quote-block {
  margin: 80px auto;
  max-width: 880px;
  padding: 48px 40px;
  border-left: 2px solid var(--gold);
  position: relative;
}
.quote-block p {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.quote-block cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.quote-block cite strong { color: var(--text); font-weight: 600; }
.quote-block cite::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ========== TIMELINE ========== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 50px;
}
.milestone {
  padding: 0 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.milestone:last-child { border-right: none; }
.milestone-year {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.milestone h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.milestone p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .milestone { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .milestone:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 500px) {
  .timeline { grid-template-columns: 1fr; }
  .milestone { border-bottom: 1px solid var(--border) !important; }
  .milestone:last-child { border-bottom: none !important; }
}

/* ========== REVIEWS ========== */
.reviews-section { padding: 100px 0; }
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.reviews-head .section-head { margin-bottom: 0; }
.reviews-aggregate {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  flex-shrink: 0;
}
.reviews-aggregate .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-aggregate strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.reviews-aggregate small {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.review:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}
.review-verified {
  position: absolute;
  top: 22px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 4px 7px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.04em;
}
.review-verified svg { width: 11px; height: 11px; fill: #4ade80; flex-shrink: 0; }
.review-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.35; }
.review-meta strong { font-size: 13.5px; color: var(--text); font-weight: 600; }
.review-meta small { font-size: 11.5px; color: var(--text-3); }
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .reviews-aggregate { text-align: left; }
}

/* ========== CONTACT EXTRAS ========== */
.hours-card {
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 18px;
}
.hours-card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--text); font-weight: 500; }
.hours-row span { color: var(--gold); font-weight: 600; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.flow-step {
  padding: 26px 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow-step-num {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.flow-step h4 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.flow-step p { font-size: 13px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 900px) { .flow-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .flow-steps { grid-template-columns: 1fr; } }

.faq-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.faq-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 720px) {
  .faq-strip { grid-template-columns: 1fr; gap: 0; }
}

/* ========== MODAL (car detail) ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal.open { display: flex; animation: modalFade 0.3s var(--ease-out); }
body.modal-open { overflow: hidden; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  z-index: -1;
}
.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 1080px;
  background: linear-gradient(180deg, #232A3C 0%, #1B2030 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
  overflow: hidden;
  animation: modalUp 0.4s var(--ease-out);
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  z-index: 10;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: #FFFFFF; border-color: var(--gold); transform: rotate(90deg); }

.modal-body { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 600px; }

.modal-visual {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(59, 130, 246, 0.28), transparent 65%),
    linear-gradient(135deg, #1c1c26 0%, #0B0B0F 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.modal-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
  margin: auto 0;
}
.modal-title-block .eyebrow { margin-bottom: 8px; }
.modal-title {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.modal-price-range {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 999px;
}
.modal-price-range strong {
  font-family: 'Sora', 'Manrope', sans-serif;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}
.modal-price-range small { color: var(--text-2); font-size: 13px; }

.modal-content {
  padding: 48px 40px;
  overflow-y: auto;
  max-height: 90vh;
}
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

.modal-desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.modal-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
  list-style: none;
}
.features-list svg { color: var(--gold); flex-shrink: 0; }

.booking-form { display: flex; flex-direction: column; gap: 14px; }
.booking-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-form label { display: flex; flex-direction: column; gap: 6px; }
.booking-form label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
}
.booking-form input,
.booking-form select {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s;
  width: 100%;
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.booking-form input[type="date"],
.booking-form input[type="time"] { color-scheme: dark; }

.extras-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
}
.extra-item:hover { border-color: var(--border-strong); }
.extra-item input { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.extra-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(59, 130, 246, 0.06);
}
.extra-item span { flex: 1; color: var(--text); }
.extra-item small { color: var(--gold); font-weight: 600; }

.price-summary {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.02));
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-summary-left small {
  display: block;
  color: var(--text-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.price-summary-left strong { font-size: 14px; color: var(--text); }
.night-fee {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #facc15;
  line-height: 1.35;
}
.price-summary-total {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-summary-total small { font-size: 13px; color: var(--text-2); font-weight: 400; }

.modal-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .modal { padding: 0; }
  .modal-dialog { border-radius: 0; min-height: 100vh; max-width: 100%; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-visual { padding: 32px 24px; min-height: 340px; }
  .modal-visual img { max-height: 200px; }
  .modal-content { padding: 28px 20px; max-height: none; }
  .booking-form .form-grid { grid-template-columns: 1fr; }
  .extras-list { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}
.legal-page h2 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  color: var(--text);
}
.legal-page h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 26px 0 8px;
  letter-spacing: 0.01em;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 12px;
}
.legal-page ul, .legal-page ol { padding-left: 22px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--text); font-weight: 600; }
.legal-page a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-page .toc {
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
}
.legal-page .toc h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-3); text-transform: uppercase; margin-bottom: 12px; }
.legal-page .toc ol { padding-left: 18px; margin: 0; }
.legal-page .toc li { font-size: 14px; margin-bottom: 4px; }
.legal-page .toc a { color: var(--text-2); text-decoration: none; }
.legal-page .toc a:hover { color: var(--gold); }
.legal-page .meta {
  font-size: 13px;
  color: var(--text-3);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 22px;
  background: rgba(20, 27, 42, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 98;
  display: none;
  animation: cookieIn 0.5s var(--ease-out);
}
.cookie-banner.show { display: block; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner h4 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}
.cookie-btn.accept { background: var(--gold); color: #FFFFFF; flex: 1; }
.cookie-btn.accept:hover { background: #2563EB; }
.cookie-btn.reject {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
}
.cookie-btn.reject:hover { color: var(--text); border-color: var(--gold); }
@media (max-width: 500px) { .cookie-actions { flex-direction: column; } .cookie-btn.accept { width: 100%; } }

/* ========== WHATSAPP WIDGET (floating, all pages) ========== */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 99; font-family: 'Manrope', sans-serif; }
.wa-bubble {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2EE471, #1FBE59);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: waPulse 2.3s infinite;
  transition: transform 0.2s var(--ease-out);
}
.wa-bubble:hover { transform: scale(1.08); }
.wa-bubble svg { width: 36px; height: 36px; fill: #FFFFFF; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50%      { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.65), 0 0 0 18px rgba(37, 211, 102, 0); }
}

.wa-panel {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 320px;
  background: #E6DDD4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='%23D4C9BC' fill-opacity='0.3'><circle cx='8' cy='8' r='1'/><circle cx='28' cy='14' r='1'/><circle cx='48' cy='8' r='1'/><circle cx='18' cy='32' r='1'/><circle cx='38' cy='38' r='1'/><circle cx='8' cy='48' r='1'/></g></svg>");
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
  transform-origin: bottom right;
}
.wa-widget.open .wa-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.wa-header {
  background: #095E54;
  color: #FFFFFF;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.wa-meta { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.wa-meta strong { font-size: 15px; font-weight: 600; color: #FFFFFF; }
.wa-meta small { font-size: 12px; color: rgba(255, 255, 255, 0.75); }
.wa-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.wa-close:hover { color: #FFFFFF; }

.wa-body {
  padding: 18px 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-msg {
  background: #FFFFFF;
  color: #111;
  border-radius: 8px 8px 8px 0;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  position: relative;
  animation: waMsgIn 0.35s var(--ease-out) both;
}
.wa-msg:nth-child(2) { animation-delay: 0.15s; }
.wa-msg::before {
  content: '';
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
.wa-msg small {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}
@keyframes waMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wa-footer {
  padding: 12px 16px 16px;
  background: rgba(230, 221, 212, 0.6);
}
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: #4FCE5D;
  color: #FFFFFF;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-cta:hover { background: #43BE50; }
.wa-cta svg { width: 18px; height: 18px; fill: #FFFFFF; }

@media (max-width: 400px) {
  .wa-panel { width: calc(100vw - 48px); right: 0; }
}

/* ========== FAB mobile call ========== */
.fab-call {
  position: fixed;
  bottom: 98px;
  right: 24px;
  width: 58px;
  height: 58px;
  display: none;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 10px 30px -5px var(--gold-glow), 0 0 0 0 var(--gold-glow);
  z-index: 99;
  animation: fabPulse 2.2s infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px -5px var(--gold-glow), 0 0 0 0 rgba(59, 130, 246, 0.6); }
  50% { box-shadow: 0 10px 30px -5px var(--gold-glow), 0 0 0 18px rgba(59, 130, 246, 0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; order: -1; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .phone-card .phone-text { display: none; }
  .phone-card { padding: 10px; }
  .phone-pulse { left: 50%; transform: translate(-50%, -50%); }
  @keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
  }
  .lang-switch { display: none; }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 12px 0; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-meta li { grid-template-columns: 36px 1fr; padding: 11px 0; font-size: 13.5px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-visual { height: 280px; }
  .features-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-copy { text-align: center; }
  .fab-call { display: grid; }
  .section-head h2 { font-size: 32px; }
}

/* ==========================================================
   2026 REFRESH - hero CTA glow, card polish, stats, avatars
   ========================================================== */

/* Subtle warm ambient glow behind hero-title */
.hero-title {
  position: relative;
}
.hero-title::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(59, 130, 246, 0.12), transparent 70%);
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

/* Hero CTA - primary button with gold glow */
.hero-cta .btn-primary {
  box-shadow: 0 10px 28px -8px rgba(59, 130, 246, 0.55), 0 0 0 1px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-cta .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
}
.hero-cta .btn-primary:hover::after { left: 100%; }
.hero-cta .btn-primary:hover {
  box-shadow: 0 14px 34px -6px rgba(59, 130, 246, 0.7), 0 0 0 1px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

/* Car card polish - softer shadow, warmer hover glow */
.car-card {
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow:
    0 36px 70px -22px rgba(0, 0, 0, 0.75),
    0 12px 24px -12px rgba(59, 130, 246, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.car-card .car-img {
  transition: transform 0.6s var(--ease-out);
}
.car-card:hover .car-img {
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 78% 60% at 50% 58%, #ffffff 0%, #eef0f5 62%, #dee1e9 100%);
}
.car-badge {
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.car-card:hover .car-badge {
  background: rgba(59, 130, 246, 0.9);
  border-color: rgba(59, 130, 246, 0.6);
  color: #fff;
}

/* Stats strip - gradient numbers + more presence */
.stat strong {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, #1D4ED8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 40px rgba(59, 130, 246, 0.1);
}
.stat span {
  font-size: 13px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stats-strip {
  position: relative;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(59, 130, 246, 0.04), transparent 70%);
  padding: 70px 0;
}

/* Review avatars - one warm color per slot */
.reviews-grid .review:nth-child(1) .review-avatar { background: linear-gradient(135deg, #60a5fa, #1E3A8A); }
.reviews-grid .review:nth-child(2) .review-avatar { background: linear-gradient(135deg, #7CC4FF, #2563EB); }
.reviews-grid .review:nth-child(3) .review-avatar { background: linear-gradient(135deg, #3B82F6, #1E40AF); }
.reviews-grid .review:nth-child(4) .review-avatar { background: linear-gradient(135deg, #93C5FD, #1D4ED8); }
.reviews-grid .review:nth-child(5) .review-avatar { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.reviews-grid .review:nth-child(6) .review-avatar { background: linear-gradient(135deg, #BFDBFE, #3B82F6); }
.review-avatar {
  box-shadow: 0 6px 16px -4px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  font-size: 13px;
  letter-spacing: 0;
}

/* Typography - slightly tighter kerning on large serif */
.hero-title, .section-head h2, h1, h2 {
  letter-spacing: -0.028em;
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(34px, 10vw, 52px); line-height: 1.08; }
  .hero-sub { font-size: 15px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 36px); }
  .eyebrow { font-size: 11px; letter-spacing: 0.1em; }
}

/* Section-head eyebrow - warm accent line */
.section-head .eyebrow::before,
.page-hero .kicker::before { background: linear-gradient(90deg, var(--gold), transparent); }

/* Kicker dot softer glow */
.kicker-dot { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14); }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16); }
  50%      { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.03); }
}

/* ============================================
   STEP 2 - DOCUMENTS UPLOAD MODAL
   ============================================ */
.docs-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.docs-modal.open { display: flex; animation: docsFade 0.3s ease; }
@keyframes docsFade { from { opacity: 0; } to { opacity: 1; } }
.docs-modal-bd {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.78); backdrop-filter: blur(8px);
}
.docs-modal-dlg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  max-width: 520px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: docsRise 0.4s var(--ease-out);
}
@keyframes docsRise {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.docs-close-x {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 0;
  color: var(--text); font-size: 22px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s;
}
.docs-close-x:hover { background: rgba(255, 255, 255, 0.12); }

.docs-step-tag {
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gold-glow); color: var(--gold);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.docs-modal-dlg h2 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 26px; line-height: 1.2;
  margin-bottom: 8px;
}
.docs-modal-dlg > p {
  color: var(--text-2);
  font-size: 14px; line-height: 1.55;
  margin-bottom: 22px;
}

#docsForm { display: flex; flex-direction: column; gap: 16px; }
.docs-field { display: flex; flex-direction: column; gap: 6px; }
.docs-field > span {
  font-size: 12px; font-weight: 600;
  color: var(--text-2); letter-spacing: 0.02em;
}
.docs-field input[type="email"] {
  padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text); font-size: 14px; font-family: inherit;
}
.docs-field input[type="email"]:focus {
  outline: 2px solid var(--gold); outline-offset: 1px;
}

.docs-upload input[type="file"] {
  padding: 14px; border-radius: var(--radius-sm);
  border: 1.5px dashed var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2); font-size: 13px;
  cursor: pointer; transition: all 0.2s;
}
.docs-upload input[type="file"]:hover {
  border-color: var(--gold);
  background: rgba(59, 130, 246, 0.05);
}
.docs-upload input[type="file"]::file-selector-button {
  margin-right: 12px; padding: 6px 14px;
  border-radius: 6px; border: 0;
  background: var(--gold); color: #FFFFFF;
  font-weight: 700; font-size: 12px; cursor: pointer;
  font-family: inherit;
}

.docs-disclaimer {
  font-size: 12px; color: var(--text-3);
  line-height: 1.5; margin-top: -4px;
}
.docs-disclaimer a { color: var(--gold); text-decoration: underline; }

.docs-actions {
  display: flex; gap: 10px; margin-top: 8px;
  flex-wrap: wrap;
}
.docs-actions .btn { flex: 1; min-width: 140px; }

@media (max-width: 520px) {
  .docs-modal-dlg { padding: 32px 22px 24px; }
  .docs-modal-dlg h2 { font-size: 22px; }
}

/* ============================================
   Car availability overlay (main site)
   ============================================ */
.car-card.car-unavailable .car-img img {
  filter: blur(5px) grayscale(0.9) brightness(0.55);
  transform: scale(1.05);
  transition: filter 0.3s ease;
}
.car-card.car-unavailable .car-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,24,0.35), rgba(10,10,14,0.55));
  pointer-events: none;
  z-index: 1;
}
.car-card.car-unavailable { opacity: 0.92; cursor: not-allowed; }
.car-card.car-unavailable:hover { transform: none; }
.car-card.car-unavailable .car-btn {
  opacity: 0.45;
  background: rgba(120, 120, 130, 0.15);
  color: #6b7280;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(1);
}

.car-status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 8px;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.car-status-unavailable {
  background: rgba(20, 20, 24, 0.85);
  color: #fff;
}
.car-status-lastone {
  background: rgba(245, 158, 11, 0.95);
  color: #141824;
  border-color: rgba(0, 0, 0, 0.08);
}
.car-status-count {
  background: rgba(34, 197, 94, 0.95);
  color: #141824;
  border-color: rgba(0, 0, 0, 0.1);
}

/* Reservation modal - live price breakdown */
.reservation-calc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reservation-calc .rc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.reservation-calc .rc-line > span { color: #a0a0ad; }
.reservation-calc .rc-line > strong { color: #fff; font-weight: 600; }
.reservation-calc .rc-late {
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
}
.reservation-calc .rc-discount {
  color: #22c55e;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 8px;
}
.reservation-calc .rc-total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: 2px;
  font-size: 15px;
}
.reservation-calc .rc-total > span { color: #fff; font-weight: 600; }
.reservation-calc .rc-total > strong {
  font-size: 22px;
  font-weight: 800;
  color: #22c55e;
}
#reservationSubmit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ============================================
   Admin dashboard
   ============================================ */
.admin-body {
  margin: 0;
  padding: 40px 24px 60px;
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #14141a 0%, #141824 70%);
  color: #fff;
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.admin-login {
  min-height: calc(100vh - 100px);
  display: grid;
  place-items: center;
}
.admin-login[hidden],
.admin-panel[hidden] { display: none !important; }
.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: #14141a;
  padding: 40px 36px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-login-card h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.admin-login-card .admin-sub {
  margin: 0 0 8px;
  font-size: 13px;
  color: #a0a0ad;
  text-align: center;
}
.admin-login-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #d0d0d8;
}
.admin-login-card input {
  padding: 12px 14px;
  background: #141824;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.admin-login-card input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.admin-logo {
  width: 72px;
  height: auto;
  margin: 0 auto 4px;
  display: block;
}
.admin-error {
  color: #ef4444;
  font-size: 13px;
  margin: 0;
  text-align: center;
}

.admin-panel {
  max-width: 1200px;
  margin: 0 auto;
}
.admin-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.admin-header .admin-title { flex: 1; }
.admin-header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.admin-header small {
  display: block;
  color: #a0a0ad;
  font-size: 13px;
  margin-top: 2px;
}
.admin-logo-sm { width: 48px; height: auto; }

.admin-status {
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #bbf7d0;
}
.admin-status.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #14141a;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}
.admin-table th {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0ad;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table input[type="number"],
.admin-table input[type="date"] {
  width: 120px;
  padding: 8px 10px;
  background: #141824;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}
.admin-table input:focus {
  outline: none;
  border-color: #3B82F6;
}
.admin-car-name {
  font-weight: 600;
  min-width: 160px;
}
.admin-loading,
.admin-error-row {
  text-align: center;
  color: #a0a0ad;
  padding: 40px 20px !important;
}
.admin-error-row { color: #fecaca; }

.admin-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.admin-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.admin-toggle span {
  position: absolute;
  inset: 0;
  background: #2a2a33;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.admin-toggle span::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.admin-toggle input:checked + span { background: #22c55e; }
.admin-toggle input:checked + span::before { transform: translateX(20px); }

.admin-body .btn-sm {
  padding: 9px 16px;
  font-size: 13px;
  border-radius: 8px;
}
.admin-body .btn.saved {
  background: #22c55e !important;
  color: #141824 !important;
}

.admin-note {
  margin-top: 20px;
  color: #a0a0ad;
  font-size: 13px;
  text-align: center;
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0 16px;
  gap: 16px;
}
.admin-section-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.admin-reservation-date {
  white-space: nowrap;
  color: #a0a0ad;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.admin-reservation-msg {
  max-width: 280px;
  color: #c0c0cc;
  font-size: 13px;
}
.admin-table a {
  color: #60a5fa;
  text-decoration: none;
}
.admin-table a:hover { text-decoration: underline; }

.admin-body .btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.admin-body .btn-danger:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #fff;
}

@keyframes adminRowPulse {
  0%   { background: rgba(59, 130, 246, 0.22); }
  100% { background: transparent; }
}
.admin-table tr.admin-row-updated td {
  animation: adminRowPulse 1.4s ease-out;
}

.admin-fleet-head { margin-top: 0; }
.admin-car-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.admin-car-thumb {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  background: #1e1e28;
  flex-shrink: 0;
}
.admin-row-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Car add/edit modal */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-modal[hidden] { display: none; }
.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.72);
  backdrop-filter: blur(4px);
}
.admin-modal-dialog {
  position: relative;
  background: #14141a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 36px 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.admin-modal-dialog h2 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
}
.admin-modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.admin-modal-x:hover { background: rgba(255, 255, 255, 0.12); }
.admin-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}
.admin-modal-error {
  margin: 6px 0 12px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 8px;
  color: #fecaca;
  font-size: 13px;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #d0d0d8;
  margin-bottom: 14px;
  flex: 1;
  min-width: 0;
}
.admin-field > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a0a0ad;
  font-weight: 600;
}
.admin-field > span em {
  color: #f87171;
  font-style: normal;
  margin-left: 2px;
}
.admin-field input[type="text"],
.admin-field input[type="number"],
.admin-field input[type="file"],
.admin-field select,
.admin-field textarea {
  padding: 10px 12px;
  background: #141824;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}
.admin-field textarea { resize: vertical; }
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.admin-field small { font-size: 11px; color: #6b7280; }

.admin-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.admin-row .admin-field { margin-bottom: 14px; }
@media (max-width: 640px) {
  .admin-row { flex-direction: column; gap: 0; }
}

.admin-field-toggle {
  flex: 0 0 auto;
  align-self: flex-start;
  min-width: 110px;
}
.admin-field-toggle .admin-toggle { margin-top: 4px; }

.admin-image-preview {
  margin-top: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-image-preview img {
  width: 100px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}
.admin-image-preview small { color: #a0a0ad; font-size: 12px; }

.admin-current-image[hidden] { display: none !important; }
.admin-current-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 18px;
  max-width: 300px;
}
.admin-current-image img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-reservation-period {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  white-space: nowrap;
}
.admin-period-sep {
  color: #60a5fa;
  margin: 0 6px;
  font-weight: 700;
}

/* ============================================
   Reservation modal (new simplified booking)
   ============================================ */
#carModal .modal-dialog { max-width: 520px; }
#carModal .modal-body { display: block; min-height: 0; }
#carModal > .modal-dialog > .modal-close { display: none; }
.reservation-modal {
  position: relative;
  padding: 40px 36px 32px;
  max-width: 460px;
  margin: 0 auto;
}
.reservation-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.reservation-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #d0d0d8;
}
.reservation-specs svg { color: var(--gold-2); flex-shrink: 0; }

/* Facilitati incluse */
.reservation-features { margin: 0 0 22px; }
.reservation-features h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); margin: 0 0 10px;
}
.reservation-features ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px;
}
.reservation-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-2);
}
.reservation-features li svg { color: #2EE471; flex-shrink: 0; }

/* Custom date-time picker */
.dtp { position: relative; }
.dtp-trigger {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 13px 14px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-size: 14.5px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.dtp-trigger:hover { border-color: var(--gold); background: rgba(59,130,246,0.08); }
.dtp-trigger svg { color: var(--gold-2); flex-shrink: 0; }
.dtp-trigger b { font-weight: 600; }
.dtp-trigger em {
  font-style: normal; margin-left: auto; font-weight: 700;
  color: var(--gold-2); font-variant-numeric: tabular-nums;
}
.dtp-backdrop {
  position: fixed; inset: 0; z-index: 499;
  background: rgba(5, 5, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dtp-pop {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(400px, calc(100vw - 28px));
  max-height: min(84vh, 640px);
  overflow-y: auto;
  z-index: 500;
  background: linear-gradient(180deg, #323B54 0%, #272E42 100%);
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 18px; padding: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  animation: modalFade 0.2s var(--ease-out);
}
.dtp-close {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  color: var(--text); font-size: 16px; cursor: pointer;
  display: grid; place-items: center; margin-left: 8px;
}
.dtp-close:hover { background: var(--danger); border-color: var(--danger); }
@media (max-width: 640px) {
  .dtp-pop {
    top: auto; bottom: 0; left: 0; transform: none;
    width: 100vw; max-height: 82vh;
    border-radius: 22px 22px 0 0;
    padding: 18px 16px max(18px, env(safe-area-inset-bottom));
    border-left: none; border-right: none; border-bottom: none;
  }
  .dtp-day { font-size: 15px; }
  .dtp-time { padding: 11px 0; font-size: 14.5px; }
}
.dtp-pop[hidden] { display: none; }
.dtp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dtp-head strong { font-size: 16px; font-weight: 700; text-transform: capitalize; }
.dtp-nav {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text); font-size: 18px; cursor: pointer;
  display: grid; place-items: center; transition: all 0.15s;
}
.dtp-nav:hover { background: var(--gold); border-color: var(--gold); }
.dtp-week { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 4px; }
.dtp-week span {
  text-align: center; font-size: 11px; font-weight: 700;
  text-transform: uppercase; color: var(--text-3); padding: 4px 0;
}
.dtp-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.dtp-day {
  aspect-ratio: 1; border-radius: 9px; border: none; background: transparent;
  color: var(--text); font-size: 14.5px; font-weight: 600; cursor: pointer;
  display: grid; place-items: center; transition: background 0.12s;
}
.dtp-day:hover:not(:disabled):not(.dtp-empty) { background: rgba(59,130,246,0.22); }
.dtp-day.today { box-shadow: inset 0 0 0 1px var(--gold-2); }
.dtp-day.sel { background: var(--gold); color: #fff; font-weight: 700; }
.dtp-day:disabled { color: var(--text-3); opacity: 0.35; cursor: default; }
.dtp-empty { pointer-events: none; }
.dtp-time-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); margin: 12px 0 8px;
}
.dtp-times {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 7px;
  max-height: 150px; overflow-y: auto; padding-right: 4px;
}
.dtp-times::-webkit-scrollbar { width: 5px; }
.dtp-times::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.dtp-time {
  padding: 8px 0; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-2); font-size: 13px; font-weight: 600;
  font-variant-numeric: tabular-nums; cursor: pointer; transition: all 0.12s;
}
.dtp-time:hover { border-color: var(--gold); color: var(--text); }
.dtp-time.sel { background: var(--gold); border-color: var(--gold); color: #fff; }
.reservation-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.reservation-close:hover { background: rgba(255, 255, 255, 0.12); }
.reservation-img {
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.reservation-img img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.reservation-title {
  margin: 0 0 4px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.reservation-sub {
  margin: 0 0 14px;
  color: #a0a0ad;
  font-size: 14px;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reservation-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #d0d0d8;
}
.reservation-field input {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  color-scheme: dark;
}
.reservation-field input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.reservation-error {
  margin: 0;
  color: #fecaca;
  font-size: 13px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
}

@media (max-width: 520px) {
  .reservation-modal { padding: 32px 22px 24px; }
  .reservation-title { font-size: 24px; }
}

/* ============================================
   Contact form - reservation context + block state
   ============================================ */
.selected-car {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  margin-bottom: 14px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
}
.selected-car-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93c5fd;
  font-weight: 600;
}
.selected-car strong {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.contact-form textarea.message-readonly {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.3);
  cursor: default;
}
.contact-form textarea.message-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1.5px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  font-weight: 500;
}
.contact-form .form-error,
#docsForm .form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.38);
  color: #fecaca;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.45;
}
.contact-form .btn.btn-disabled,
.contact-form .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 640px) {
  .admin-body { padding: 24px 12px 40px; }
  .admin-table th,
  .admin-table td { padding: 10px 12px; }
  .admin-table input[type="number"],
  .admin-table input[type="date"] { width: 100px; font-size: 13px; }
}


/* ===== Mobile: butoane flotante ordonate + footer neacoperit ===== */
@media (max-width: 720px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-bubble { width: 58px; height: 58px; border-width: 2px; }
  .wa-bubble svg { width: 30px; height: 30px; }
  .fab-call {
    bottom: 88px; right: 16px;
    width: 52px; height: 52px;
  }
  .fab-call svg { width: 22px; height: 22px; }
  footer, .footer { padding-bottom: 150px !important; }
}
