/* ════════════════════════════════════════
   Car Woosh — styles.css  (Chrome/Silver theme)
   ════════════════════════════════════════ */

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

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

body {
  font-family: 'Inter', sans-serif;
  background: #040404;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

/* ── Design tokens ── */
:root {
  --silver: #c8c8c8;
  /* chrome silver accent */
  --silver-lt: #ebebeb;
  /* bright silver / near-white */
  --silver-dk: #7a7a7a;
  /* muted silver */
  --black: #040404;
  --surface: #0e0e0e;
  --card: #151515;
  --card2: #1c1c1c;
  --border: #242424;
  --border-lt: #333333;
  --white: #ffffff;
  --gray: #777777;
  --gray-lt: #aaaaaa;
  --r: 12px;
  --r-lg: 20px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  --shadow-sil: 0 6px 28px rgba(200, 200, 200, 0.12);
  --ease: 0.22s ease;
  --max: 1160px;
}

/* ── Helpers ── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}

.chrome-text {
  background: linear-gradient(135deg, #d8d8d8 0%, #888 50%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--ease), box-shadow var(--ease);
}

#navbar.scrolled {
  background: rgba(4, 4, 4, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ease);
}

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

.nav-cta {
  background: var(--white);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--silver-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sil);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  background: rgba(4, 4, 4, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 8px 24px 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}

.mobile-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--silver);
}

.mobile-book-link {
  color: var(--silver) !important;
  font-weight: 700 !important;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
  box-sizing: content-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #040404;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-mark {
  width: min(60vw, 620px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  padding-top: 80px;
  margin: 0 auto;
  max-width: 660px;
  text-align: center;
}

.hero-content .eyebrow {
  margin-top: 80px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 769px) {
  .hero-actions {
    margin-top: 80px;
  }
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-primary:hover {
  background: var(--silver-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sil);
}

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color var(--ease), background var(--ease);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.7);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #e0e0e0 0%, #888 50%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat p {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* ════════════════════════════════════════
   SECTION SHARED
   ════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   OUR SERVICES (homepage preview)
   ════════════════════════════════════════ */
.services-preview {
  background: var(--black);
  padding: 96px 24px;
  text-align: center;
}

.services-preview .section-header h2 {
  font-size: clamp(52px, 11vw, 96px);
  letter-spacing: 3px;
}

.svc-list {
  max-width: 640px;
  margin: 0 auto 40px;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
}

.svc-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.svc-item:last-child {
  border-bottom: none;
}

.svc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 26px;
  text-align: left;
  color: var(--black);
  transition: background var(--ease);
}

.svc-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

.svc-name {
  font-size: 17px;
  font-weight: 600;
}

.svc-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.svc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--black);
}

.svc-icon {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
}

.svc-item.open .svc-icon {
  transform: rotate(45deg);
  background: var(--black);
  color: var(--white);
}

.svc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease), padding var(--ease);
  padding: 0 26px;
}

.svc-item.open .svc-panel {
  max-height: 120px;
  padding: 0 26px 22px;
}

.svc-panel p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

.svc-more {
  display: inline-block;
}

/* ════════════════════════════════════════
   PACKAGES SECTION
   ════════════════════════════════════════ */
.packages-section {
  background: var(--surface);
  padding: 96px 24px 80px;
}

/* Cards */
.cards-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pkg-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.pkg-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-lt);
  box-shadow: var(--shadow);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.pkg-card:hover .card-img img {
  transform: scale(1.06);
}

.card-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card) 100%);
}

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

.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}

.card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.card-tagline {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 18px;
}

.card-features-wrap {
  flex: 1;
  margin-bottom: 16px;
}

.card-features-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}

.card-features-heading:not(:first-child) {
  margin-top: 18px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--silver);
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}

.plan-note {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
  background: var(--card2);
  border-radius: 6px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.price-box {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.price-from {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}

.price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.2s;
}

.btn-book {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--ease), transform var(--ease);
}

.btn-book:hover {
  background: var(--silver-lt);
  transform: translateY(-1px);
}

.packages-note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--gray);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about-section {
  padding: 100px 24px;
  background: var(--black);
}

.about-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.about-imgs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  margin: 0 auto 32px;
  max-width: 640px;
}

.about-img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 60%;
}

.about-img-accent {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
  min-height: 220px;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-content {
  text-align: center;
}

.about-content .eyebrow {
  margin-bottom: 14px;
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.about-content h2.about-title-lg {
  font-size: clamp(52px, 11vw, 96px);
  letter-spacing: 3px;
}

.about-content>p {
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border-radius: var(--r);
  padding: 18px 20px;
  border: 1px solid var(--border);
  transition: border-color var(--ease);
}

.about-feat:hover {
  border-color: var(--border-lt);
}

.feat-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--silver);
}

.feat-icon svg {
  width: 100%;
  height: 100%;
}

.about-feat h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.about-feat p {
  font-size: 13px;
  color: var(--gray-lt);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   GALLERY STRIP
   ════════════════════════════════════════ */
.gallery-strip {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.gallery-label {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-label h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: 2px;
  color: var(--white);
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 20px 10px 10px;
  text-align: center;
  opacity: 0;
  transition: opacity var(--ease);
}

.gallery-item:hover span {
  opacity: 1;
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-section {
  padding: 96px 24px;
  background: var(--black);
}

.faq-acc-list {
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--border-lt);
}

.faq-acc-item {
  border-bottom: 1px solid var(--border-lt);
}

.faq-acc-toggle {
  position: relative;
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 26px 52px;
  text-align: center;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--ease);
}

.faq-acc-toggle:hover {
  color: var(--silver-lt);
}

.faq-acc-chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  color: var(--white);
  transform: translateY(-50%);
  transition: transform var(--ease);
  flex-shrink: 0;
}

.faq-acc-item.open .faq-acc-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.faq-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-acc-panel p {
  padding: 0 40px 28px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.testimonials-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 96px 24px 80px;
}

.reviews-grid {
  max-width: var(--max);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-lt);
}

.stars {
  color: var(--silver);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card2);
  border: 1px solid var(--border-lt);
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.reviewer span {
  font-size: 12px;
  color: var(--gray);
}

.reviews-footer {
  text-align: center;
}

.btn-ghost-sm {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color var(--ease), color var(--ease);
}

.btn-ghost-sm:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background: #020202;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
  padding: 72px 24px 56px;
}

.footer-inner-simple {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 56px 24px 40px;
}

.footer-inner-simple .footer-brand {
  max-width: 480px;
  margin: 0 auto;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand>p {
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.65;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  border: 1px solid var(--border-lt);
  border-radius: 20px;
  padding: 7px 18px;
  transition: color var(--ease), border-color var(--ease);
}

.social-pill:hover {
  color: var(--white);
  border-color: var(--silver);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray-lt);
  transition: color var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.contact-list li {
  font-size: 14px;
  color: var(--gray-lt);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--silver-dk);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-list a {
  color: var(--gray-lt);
  transition: color var(--ease);
}

.contact-list a:hover {
  color: var(--white);
}

.footer-base {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-credit {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-credit a:hover {
  color: var(--silver);
}

/* ════════════════════════════════════════
   BOOKING MODAL
   ════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  transform: translateY(22px) scale(0.97);
  transition: transform 0.28s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 18px;
  padding: 4px 8px;
  transition: color var(--ease);
}

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

/* Progress */
.progress-row {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.prog-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}

.prog-dot.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.prog-dot.done {
  background: rgba(200, 200, 200, 0.1);
  color: var(--silver);
  border-color: var(--silver);
}

.prog-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Step */
.modal-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 22px;
}

.hidden {
  display: none !important;
}

/* Package select */
.pkg-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.mpkg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 36px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}

.mpkg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-lt);
  font-size: 11px;
  font-weight: 800;
  color: var(--black);
  transition: border-color var(--ease), background var(--ease);
}

.mpkg strong {
  display: block;
  font-size: 12px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.mpkg span {
  font-size: 11px;
  color: var(--silver);
}

.mpkg.active {
  border-color: var(--silver);
  background: rgba(200, 200, 200, 0.06);
}

.mpkg.active::after {
  content: '✓';
  background: var(--white);
  border-color: var(--white);
}

.mpkg:not(.active):hover {
  border-color: var(--border-lt);
}

/* Add-ons */
.addon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.addon-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}

.addon-item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border-lt);
  flex-shrink: 0;
  transition: border-color var(--ease), background var(--ease);
}

.addon-item span {
  flex: 1;
  font-size: 12px;
  color: var(--white);
  line-height: 1.3;
}

.addon-item strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--silver);
  flex-shrink: 0;
}

.addon-item.active {
  border-color: var(--silver);
  background: rgba(200, 200, 200, 0.06);
}

.addon-item.active::before {
  content: '✓';
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-item.active strong {
  color: var(--white);
}

.addon-item:not(.active):hover {
  border-color: var(--border-lt);
}

/* Price preview */
.price-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.price-preview span {
  font-size: 13px;
  color: var(--gray);
}

.price-preview strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
}

/* Fields */
.step-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.optional {
  font-weight: 400;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
}

.field-row {
  margin-bottom: 16px;
}

.field-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.field-input:focus {
  border-color: var(--silver);
}

.field-input::placeholder {
  color: var(--gray);
}

.field-textarea {
  height: 78px;
  resize: vertical;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

/* Nav buttons */
.step-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.btn-next {
  flex: 1;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--ease);
}

.btn-next:hover {
  background: var(--silver-lt);
}

.btn-back {
  background: var(--surface);
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--ease), border-color var(--ease);
}

.btn-back:hover {
  color: var(--white);
  border-color: var(--border-lt);
}

/* Confirmation */
.confirm-wrap {
  text-align: center;
  padding: 12px 0;
}

.confirm-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.confirm-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.confirm-msg {
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.7;
  margin-bottom: 26px;
}

.confirm-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  text-align: left;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2.1;
  margin-bottom: 26px;
}

.confirm-summary strong {
  color: var(--white);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 1024px) {
  .cards-grid {
    max-width: 720px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {

  .packages-section,
  .about-section,
  .testimonials-section,
  .faq-section {
    padding: 72px 20px 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-select-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 28px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 20px 40px;
  }

  .hero-content {
    margin: 0 auto;
  }
}

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════
   TICKER
   ════════════════════════════════════════ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 902;
  height: 36px;
  background: var(--silver);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--black);
  padding: 0 22px;
  flex-shrink: 0;
  user-select: none;
}

.ticker-sep {
  opacity: 0.35;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Push navbar below ticker */
#navbar {
  top: 36px;
}

/* Push hero content below ticker + nav */
.hero-content {
  padding-top: 120px;
}

/* ════════════════════════════════════════
   FULLSCREEN MOBILE MENU
   ════════════════════════════════════════ */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #020202;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fullscreen-menu.open {
  opacity: 1;
  pointer-events: all;
}

.menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--ease);
}

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

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

.fs-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 13vw, 90px);
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.1;
  transition: color 0.18s ease;
}

.fs-nav a:hover,
.fs-nav a.fs-active {
  color: var(--silver);
}

.fs-nav .fs-book-link {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  color: var(--black);
  background: var(--white);
  padding: 14px 38px;
  border-radius: 8px;
  line-height: 1.2;
  transition: background var(--ease), transform var(--ease);
}

.fs-nav .fs-book-link:hover {
  background: var(--silver-lt);
  color: var(--black);
  transform: translateY(-2px);
}

/* Nav active state */
.nav-links a.nav-active {
  color: var(--white);
}

/* ════════════════════════════════════════
   OUR WORK — image gallery
   ════════════════════════════════════════ */
.work-section {
  background: var(--black);
  padding: 96px 24px;
  text-align: center;
}

.work-section .section-sub {
  max-width: 560px;
  margin: 0 auto;
}

.work-carousel {
  max-width: 640px;
  margin: 40px auto 0;
}

.work-frame {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.work-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.work-track::-webkit-scrollbar {
  display: none;
}

.work-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 5 / 4;
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.work-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background var(--ease), transform var(--ease);
  flex-shrink: 0;
}

.work-dot.active {
  background: #ffffff;
  transform: scale(1.4);
}

.work-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(4, 4, 4, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}

.work-arrow-left {
  left: 12px;
}

.work-arrow-right {
  right: 12px;
}

.work-arrow:hover {
  background: rgba(4, 4, 4, 0.8);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .work-arrow {
    display: none;
  }

  .work-dots {
    display: flex;
  }

  .work-slide {
    aspect-ratio: 1 / 1;
  }
}

/* ════════════════════════════════════════
   REVIEW SLIDER
   ════════════════════════════════════════ */
.reviews-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px;
}

.review-carousel {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.review-slide {
  min-height: 180px;
  animation: reviewFade 0.4s ease;
}

.review-slide .stars {
  justify-content: center;
  display: flex;
}

.review-quote {
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin: 0 auto 22px;
  max-width: 600px;
}

.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--silver);
}

.review-author span {
  font-weight: 400;
  font-style: italic;
  color: var(--gray-lt);
}

@keyframes reviewFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.review-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
}

.review-arrow:hover {
  background: var(--silver-lt);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   CONTACT FORM SECTION
   ════════════════════════════════════════ */
.contact-form-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.85);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  margin-bottom: 16px;
}

.cf-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 12px 14px;
  color: #111111;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--ease);
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--silver-dk);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #999999;
}

.cf-field textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit-full {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background var(--ease), transform var(--ease);
}

.btn-submit-full:hover {
  background: var(--silver-lt);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   GET IN TOUCH INFO SECTION
   ════════════════════════════════════════ */
.info-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.info-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  border-bottom: 1px solid #ececec;
}

.info-row:last-child {
  border-bottom: none;
}

.info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #111111;
  margin-top: 2px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-row-content h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
  color: #888888;
  margin-bottom: 6px;
}

.info-row-content p {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
}

.info-tel,
.info-email {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  transition: color var(--ease);
}

.info-tel:hover,
.info-email:hover {
  color: #555555;
}

.info-social-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-social-links a {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  transition: color var(--ease);
}

.info-social-links a:hover {
  color: #555555;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.hours-row .day {
  color: #111111;
  font-weight: 700;
}

.hours-row .time {
  color: #555555;
}

.hours-row.closed .time {
  color: #999999;
}

/* ════════════════════════════════════════
   ABOUT QUOTE
   ════════════════════════════════════════ */
.about-quote {
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 18px 0;
  margin: 22px auto;
  max-width: 520px;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-lt);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   PAGE HERO (valeting / detailing)
   ════════════════════════════════════════ */
.page-hero {
  padding: 160px 24px 72px;
  background: var(--black);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: 3px;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 16px;
  color: var(--gray-lt);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   COMING SOON PAGE
   ════════════════════════════════════════ */
.coming-soon-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 96px;
}

.coming-badge {
  display: inline-block;
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 20px;
  margin-bottom: 30px;
}

.coming-soon-wrap h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 14vw, 150px);
  letter-spacing: 4px;
  color: var(--white);
  line-height: 0.88;
  margin-bottom: 28px;
}

.coming-soon-wrap p {
  font-size: 17px;
  color: var(--gray-lt);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ════════════════════════════════════════
   CARD ENHANCEMENTS (valeting page)
   ════════════════════════════════════════ */
.card-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* ════════════════════════════════════════
   DATE INPUT ENHANCEMENT
   ════════════════════════════════════════ */
.date-selected-display {
  background: rgba(200, 200, 200, 0.07);
  border: 1px solid var(--silver);
  border-radius: 8px;
  padding: 9px 14px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  display: none;
}

.date-selected-display.visible {
  display: block;
}

.date-hint {
  font-size: 11px;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   NEW RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .ticker-bar {
    height: 30px;
  }

  #navbar {
    top: 30px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-content .eyebrow {
    margin-top: 0;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-logo-mark {
    width: min(105vw, 680px);
  }

  .hero-actions {
    margin-top: 72px;
  }

  .hero-scroll-cue {
    bottom: 90px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .info-row {
    padding: 22px 20px;
  }

  .reviews-section {
    padding: 60px 20px;
  }

  .contact-form-section,
  .info-section {
    padding: 72px 20px;
  }

  .page-hero {
    padding: 136px 20px 56px;
  }
}

@media (max-width: 480px) {
  .info-row {
    flex-direction: column;
    gap: 10px;
  }

  .review-nav {
    gap: 12px;
  }

  .review-arrow {
    width: 44px;
    height: 44px;
  }
}