/* ============================================================
   ATX Drive By Details — style.css
   Theme: premium dark, gold accents, Playfair Display serif
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a0a0a;
  color: #f0ede8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Variables ---- */
:root {
  --gold:      #C4A55A;
  --gold-dim:  rgba(196, 165, 90, 0.18);
  --gold-brd:  rgba(196, 165, 90, 0.35);
  --red:       #CC1418;
  --bg:        #0a0a0a;
  --bg-dk:     #0d0d0d;
  --bg-card:   #111111;
  --bg-card2:  #161616;
  --border:    rgba(255,255,255,0.07);
  --text:      #f0ede8;
  --muted:     #888888;
  --nav-h:     72px;
  --r:         10px;
  --ease:      0.25s ease;
  --max:       1160px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo  { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: inline-block;
  padding: 7px 14px;
  color: rgba(240,237,232,0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-nav-book {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  border-radius: 7px !important;
  letter-spacing: 0.06em !important;
  transition: background var(--ease), transform var(--ease) !important;
}
.btn-nav-book:hover { background: #d4b469 !important; transform: translateY(-1px); }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
}
.bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
  transform-origin: center;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  overflow: hidden;
  max-height: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { max-height: 420px; }
.mobile-nav ul   { list-style: none; padding: 8px 24px 20px; }
.mobile-nav li   { border-bottom: 1px solid var(--border); }
.mob-link {
  display: block;
  padding: 14px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.mob-link:hover { color: var(--gold); }
.mob-book {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold);
  color: #0a0a0a !important;
  padding: 12px 30px;
  border-radius: 7px;
  font-weight: 700;
  border-bottom: none !important;
  letter-spacing: 0.08em;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.70) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }

/* Eyebrow with side lines */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.ey-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--text); }

.hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-bullets {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 36px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.6);
}
.hero-bullets li::before { content: '• '; color: var(--gold); }

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll button */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background var(--ease), border-color var(--ease), transform 0.3s;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-down:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  animation: none;
  transform: translateX(-50%) translateY(-3px);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-gold:hover {
  background: #d4b469;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,165,90,0.3);
}

.btn-outline-hero {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid rgba(240,237,232,0.35);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn-outline-hero:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-dk {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid rgba(240,237,232,0.25);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn-outline-dk:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ================================================================
   SECTIONS
   ================================================================ */
.section    { padding: 96px 0; }
.section-dk { background: var(--bg-dk); }
.container  { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.sec-head    { margin-bottom: 56px; }
.eyebrow-g {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-team { margin-top: -28px; }
.about-text p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }

.team-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.team-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 22px;
  margin-bottom: 10px;
  transition: border-color var(--ease), transform var(--ease);
}
.team-card:last-child  { margin-bottom: 0; }
.team-card:hover       { border-color: var(--gold-brd); transform: translateY(-2px); }
.team-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.team-role { font-size: 0.76rem; color: var(--muted); }
.team-phone {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--ease);
}
.team-phone:hover { color: #fff; }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.svc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.svc-card:hover { border-color: var(--gold-brd); transform: translateY(-4px); }

.sc-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #1a1a1a;
}
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.svc-card:hover .sc-img img { transform: scale(1.05); }

.sc-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.sc-body { padding: 24px; }
.sc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}
.sc-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }

.sc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.btn-card {
  display: inline-flex;
  background: transparent;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(240,237,232,0.25);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.btn-card:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 10px;
}
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  background: #1a1a1a;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-wrap { max-width: 900px; }
.contact-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-top: -36px;
  margin-bottom: 48px;
  max-width: 440px;
}
.contact-row { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.cc {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 16px;
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--ease), transform var(--ease);
}
.cc:hover { border-color: var(--gold-brd); transform: translateY(-4px); }
.cc-icon { color: var(--gold); }
.cc-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.cc-val   { font-size: 0.88rem; font-weight: 700; color: var(--text); text-align: center; }
.contact-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 52px 24px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo  { height: 52px; width: auto; opacity: 0.9; }
.ig-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color var(--ease);
}
.ig-link:hover { color: var(--gold); }
.ig-icon    { width: 17px; height: 17px; flex-shrink: 0; }
.copyright  { font-size: 0.74rem; color: #444; margin-top: 2px; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--rd, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   BOOKING PAGE
   ================================================================ */
.book-hero {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: var(--bg-dk);
  border-bottom: 1px solid var(--border);
}
.book-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.book-hero p { color: var(--muted); font-size: 1rem; max-width: 480px; }

.book-cards { display: flex; flex-direction: column; gap: 20px; padding: 60px 0; }

.bc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease);
  max-width: 700px;
}
.bc:hover { border-color: var(--gold-brd); }

.bc-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #1a1a1a;
}
.bc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.bc:hover .bc-img img { transform: scale(1.04); }

.bc-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
}

.bc-body { padding: 24px 28px; }
.bc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.15;
}
.bc-body > p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.bc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.bc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}
.bc-time { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.btn-bc {
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.btn-bc:hover { background: #d4b469; transform: translateY(-1px); }

.book-phone-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.book-phone-note a { color: var(--gold); text-decoration: none; }
.book-phone-note a:hover { text-decoration: underline; }

/* ================================================================
   BOOKING MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 28px 0;
}
.modal-step-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.modal-svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
  flex-shrink: 0;
}
.modal-close:hover { color: var(--text); background: rgba(255,255,255,0.08); }

/* Step tabs */
.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
  padding: 0 28px;
}
.m-tab {
  padding: 10px 0;
  margin-right: 24px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: default;
  transition: color var(--ease), border-color var(--ease);
}
.m-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.m-tab.done   { color: rgba(196,165,90,0.6); }

/* Modal body */
.modal-body { padding: 24px 28px 28px; }
.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-body .step-sub {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 18px;
}

/* Vehicle options */
.vehicle-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.v-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  font-size: 0.9rem;
  font-weight: 500;
}
.v-opt:hover { border-color: var(--gold-brd); background: var(--gold-dim); }
.v-opt.selected { border-color: var(--gold); background: var(--gold-dim); }
.v-opt .v-price { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1rem; }

/* Add-on options */
.addon-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.a-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.a-opt:hover { border-color: var(--gold-brd); }
.a-opt.selected { border-color: var(--gold); background: var(--gold-dim); }
.a-opt-check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--muted);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.a-opt.selected .a-opt-check { background: var(--gold); border-color: var(--gold); }
.a-opt.selected .a-opt-check::after { content: '✓'; font-size: 0.7rem; color: #0a0a0a; font-weight: 800; }
.a-opt-info { flex: 1; }
.a-opt-name { font-size: 0.88rem; font-weight: 500; }
.a-opt-note { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }
.a-opt-price { color: var(--gold); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }

.addon-total-bar {
  background: var(--gold-dim);
  border: 1px solid var(--gold-brd);
  border-radius: 6px;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

/* Booking summary */
.booking-summary {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.bs-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  padding: 4px 0;
  color: var(--muted);
}
.bs-row:last-child {
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
}
.bs-row:last-child span:last-child { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1rem; }

/* Booking form */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.bf-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.bf-input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--ease);
}
.bf-input:focus { border-color: var(--gold); }
.bf-input::placeholder { color: #555; }
textarea.bf-input { resize: vertical; min-height: 90px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Modal navigation */
.m-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.btn-m-back {
  background: transparent;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.btn-m-back:hover { border-color: var(--muted); background: rgba(255,255,255,0.04); }
.btn-m-next {
  flex: 1;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.btn-m-next:hover { background: #d4b469; transform: translateY(-1px); }
.btn-m-next:disabled { opacity: 0.4; cursor: default; transform: none; }

/* Cancel confirmation overlay */
.cancel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cancel-overlay.open { opacity: 1; pointer-events: all; }

.cancel-card { text-align: center; max-width: 320px; }

.cancel-hazard {
  width: 48px; height: 48px;
  color: #E5A800;
  margin: 0 auto 16px;
}
.cancel-hazard svg { width: 100%; height: 100%; }

.cancel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cancel-msg {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.cancel-btns { display: flex; flex-direction: column; gap: 10px; }

.btn-cancel-confirm {
  background: #CC1418;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-cancel-confirm:hover { background: #e01a1f; transform: translateY(-1px); }

.btn-keep-editing {
  background: transparent;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 7px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-keep-editing:hover { border-color: var(--gold); background: rgba(196,165,90,0.06); }

/* Success state */
.booking-success { text-align: center; padding: 20px 0 8px; }

.success-check { width: 68px; height: 68px; margin: 0 auto 20px; }
.success-svg { width: 68px; height: 68px; }
.success-circle {
  stroke: var(--gold);
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: sc-draw 0.55s cubic-bezier(0.65,0,0.45,1) forwards;
}
.success-tick {
  stroke: var(--gold);
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: st-draw 0.38s ease 0.48s forwards;
}
@keyframes sc-draw { to { stroke-dashoffset: 0; } }
@keyframes st-draw { to { stroke-dashoffset: 0; } }

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.success-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.success-summary {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  text-align: left;
}
.ss-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.ss-row:last-child { border-bottom: none; }
.ss-row span:first-child { color: var(--muted); }
.ss-row span:last-child { font-weight: 600; color: var(--text); text-align: right; }
.ss-total span:last-child { color: var(--gold); font-size: 0.92rem; }

.success-confirm {
  background: var(--gold-dim);
  border: 1px solid var(--gold-brd);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1.5;
}
.success-reach {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.success-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.sc-person {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}
.sc-name { color: var(--text); font-weight: 500; min-width: 38px; }
.sc-action {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--gold-brd);
  border-radius: 4px;
  padding: 2px 10px;
  transition: background var(--ease), color var(--ease);
}
.sc-action:hover { background: var(--gold-dim); color: var(--text); }
.sc-email {
  color: var(--muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color var(--ease);
  margin-top: 2px;
}
.sc-email:hover { color: var(--text); }

/* ================================================================
   REVIEW PAGE
   ================================================================ */
.review-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: var(--bg-dk);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.review-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.review-hero p { color: var(--muted); max-width: 440px; margin: 0 auto; }

.review-section { padding: 72px 0; }
.review-inner { max-width: 600px; margin: 0 auto; }

/* Google CTA */
.google-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.google-cta-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.google-cta-text p  { font-size: 0.84rem; color: var(--muted); }
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease);
}
.btn-google:hover { background: #d4b469; }

/* Review form */
.review-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
}
.rf-group { margin-bottom: 22px; }
.rf-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.rf-input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--ease);
  appearance: none;
}
.rf-input:focus { border-color: var(--gold); }
.rf-input::placeholder { color: #555; }
textarea.rf-input { resize: vertical; min-height: 110px; }

/* Star rating */
.stars {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.star {
  font-size: 1.6rem;
  cursor: pointer;
  color: #333;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
  user-select: none;
}
.star:hover, .star.active { color: var(--gold); transform: scale(1.15); }

.btn-submit-review {
  width: 100%;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  margin-top: 8px;
}
.btn-submit-review:hover { background: #d4b469; transform: translateY(-1px); }

.review-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.review-success.show { display: block; }
.review-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 12px 0 8px;
}
.review-success p { color: var(--muted); font-size: 0.9rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .svc-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }

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

  .svc-cards { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 240px; }

  .contact-row { flex-direction: column; }
  .contact-cta { flex-direction: column; }
  .contact-cta .btn-gold,
  .contact-cta .btn-outline-dk { width: 100%; text-align: center; justify-content: center; }

  .hero-bullets { gap: 10px; font-size: 0.65rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-hero { width: 100%; max-width: 280px; justify-content: center; }

  .bc { max-width: 100%; }
  .bf-row { grid-template-columns: 1fr; }

  .google-cta { flex-direction: column; }
  .btn-google { width: 100%; justify-content: center; }

  .review-form-card { padding: 22px; }
}
