body {
  background: #0b0b0f;
  color: white;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

:focus-visible {
  outline: 2px solid rgba(239, 68, 68, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}

.surface {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}

.soft-shadow {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 20px 60px rgba(0,0,0,.45);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-noise {
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.10), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255,0,60,.10), transparent 40%),
    radial-gradient(circle at 30% 85%, rgba(255,255,255,.08), transparent 38%);
}

.glow {
  position: relative;
}

.glow::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,0,60,.22), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(circle at 30% 90%, rgba(255,0,60,.10), transparent 55%);
  filter: blur(18px);
  z-index: -1;
}

.btn {
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.bg-words {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.10;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.bg-words span {
  position: absolute;
  white-space: nowrap;
}

.bg-words .line1 {
  top: 60px;
  left: -40px;
  transform: rotate(-8deg);
  font-size: clamp(48px, 8vw, 110px);
}

.bg-words .line2 {
  top: 180px;
  right: -60px;
  transform: rotate(10deg);
  font-size: clamp(42px, 7vw, 90px);
}

.bg-words .line3 {
  bottom: 40px;
  left: 40px;
  transform: rotate(-6deg);
  font-size: clamp(38px, 6vw, 80px);
}

.car-viewport {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.car-viewport::-webkit-scrollbar {
  display: none;
}

.car-card {
  flex-shrink: 0;
  width: calc((100% - 24px) / 3);
  border-radius: 1.25rem;
  overflow: hidden;
  scroll-snap-align: start;
}

.car-img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .car-card { width: 82%; }
  .car-img { height: 360px; }
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.15s ease;
  user-select: none;
  z-index: 10;
}

.car-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.car-dot {
  height: 6px;
  width: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.car-dot.active {
  background: rgba(255, 255, 255, 0.85);
  width: 20px;
}

.qb-card {
  cursor: pointer;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.15s ease, background-color 0.15s ease;
  user-select: none;
}

.qb-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

.qb-card:has(input:checked) {
  border-color: rgba(239,68,68,0.55);
  background: rgba(239,68,68,0.07);
}

.qb-pkg-card {
  cursor: pointer;
  border-radius: 1rem;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 1rem 1.125rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  user-select: none;
}

.qb-pkg-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}

.qb-pkg-card:has(input:checked) {
  border-color: rgba(239,68,68,0.65);
  background: rgba(239,68,68,0.06);
}


.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 1rem;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.875rem;
  transition: background 0.15s ease;
  cursor: pointer;
}

.contact-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.contact-input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: white;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-input:focus {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10);
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hours-badge.open {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: rgb(74, 222, 128);
}

.hours-badge.closed {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.20);
  color: rgba(239, 68, 68, 0.85);
}

.service-pkg-card {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.service-pkg-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 24px rgba(239,68,68,0.10), 0 10px 30px rgba(0,0,0,0.35);
}