/* ============================================================
   HARDWEY DETAILING — Premium CSS Design System
   Dark Luxury Automotive Aesthetic
   ============================================================ */

/* ---- Custom Properties ------------------------------------- */
:root {
  --bg:           #080808;
  --bg-2:         #0f0f0f;
  --bg-3:         #141414;
  --bg-card:      #111111;
  --bg-glass:     rgba(255,255,255,0.025);
  --bg-glass-2:   rgba(255,255,255,0.04);

  --gold:         #c9a84c;
  --gold-light:   #e2c06a;
  --gold-dark:    #9e7c2e;
  --gold-glow:    rgba(201,168,76,0.25);
  --gold-subtle:  rgba(201,168,76,0.08);

  --white:        #ffffff;
  --text-1:       #f0f0f0;
  --text-2:       #a8a8a8;
  --text-3:       #666666;

  --border:       rgba(201,168,76,0.15);
  --border-soft:  rgba(255,255,255,0.06);
  --border-hover: rgba(201,168,76,0.45);

  --radius:       4px;
  --radius-lg:    8px;
  --radius-xl:    16px;

  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.8);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.2);

  --font-head:    'Bebas Neue', 'Montserrat', sans-serif;
  --font-sub:     'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.18s ease;

  --nav-h:        72px;
  --section-py:   100px;
}

/* ---- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Scrollbar -------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-sub);
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}

.gold-accent { color: var(--gold); }

/* ---- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--bg-2);
}

.section--darker {
  background: var(--bg-3);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  background-size: 200% auto;
  color: #000;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  box-shadow: 0 0 20px rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-1);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--bg-glass-2);
  border-color: var(--border);
}

.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-sm { padding: 10px 24px; font-size: 12px; }

/* ---- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav__logo-tag {
  font-family: var(--font-sub);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-1);
  border-radius: 1px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--text-1);
  transition: color var(--transition-fast);
}
.nav__mobile a:hover { color: var(--gold); }

/* ---- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(20,60,120,0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__bg-img.loaded { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.7) 55%,
    rgba(8,8,8,0.4) 100%
  );
  z-index: 1;
}

/* Animated diagonal light streaks */
.hero__streaks {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__streaks::before,
.hero__streaks::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  top: -50%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
  animation: streakMove 8s linear infinite;
}
.hero__streaks::before { left: 35%; animation-delay: 0s; }
.hero__streaks::after  { left: 65%; animation-delay: 4s; opacity: 0.5; }

@keyframes streakMove {
  0%   { transform: translateY(0) rotate(15deg); }
  100% { transform: translateY(30%) rotate(15deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}
.hero__eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}
.hero__title .line { display: block; }
.hero__title .gold-line {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__badge-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero__badge-text {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.hero__badge-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero__scroll-text {
  font-family: var(--font-sub);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- Services Section ------------------------------------- */
.services {
  position: relative;
}

.services__header {
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  background: rgba(201,168,76,0.03);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
  display: none; /* shown when image available */
}
.service-card__img.has-img { display: block; }

.service-card__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
  background: var(--gold-subtle);
}
.service-card:hover .service-card__icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.service-card__title {
  font-family: var(--font-sub);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__price {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.service-card__cta {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}
.service-card:hover .service-card__cta { gap: 10px; }
.service-card__cta::after { content: '→'; }

/* ---- Before/After Section --------------------------------- */
.before-after {
  background: var(--bg-2);
}

.before-after__grid {
  display: grid;
  gap: 40px;
}

.ba-item {
  position: relative;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.ba-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__after { z-index: 1; }

.ba-slider__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gold);
  z-index: 3;
  pointer-events: none;
}
.ba-slider__handle::before,
.ba-slider__handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
}
.ba-slider__handle::before {
  top: 50%;
  margin-top: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-slider__handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--bg);
  font-weight: 900;
  z-index: 4;
  pointer-events: none;
}
.ba-slider__handle::before { display: none; }

.ba-label {
  position: absolute;
  top: 20px;
  z-index: 5;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
  pointer-events: none;
}
.ba-label--before {
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: var(--text-2);
  border: 1px solid var(--border-soft);
}
.ba-label--after {
  right: 20px;
  background: rgba(201,168,76,0.9);
  color: #000;
}

.ba-item__caption {
  margin-top: 20px;
  font-family: var(--font-sub);
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
}

/* ---- Why Us Section --------------------------------------- */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.why-card {
  padding: 36px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border);
  background: var(--bg-glass-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.why-card__title {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.why-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ---- Packages / Pricing ----------------------------------- */
.packages {
  background: var(--bg-2);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: 2px;
  margin-top: 64px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 32px 36px 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  background: var(--bg-3);
  border-color: var(--gold);
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.package-card:hover {
  transform: translateY(-4px);
}
.package-card--featured:hover {
  transform: translateY(-6px);
}

/* Badge slot: reserved on ALL cards so names align across the grid */
.package-card__badge-slot {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.package-card__badge {
  background: var(--gold);
  color: #000;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
}

.package-card__name {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.package-card__price {
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.package-card__price span {
  font-family: var(--font-sub);
  font-size: 20px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  color: var(--gold);
}

.package-card__desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.6;
}

.package-card__features {
  margin-bottom: 0;
}
/* Preview list: fixed height floor so every card's feature area is identical
   regardless of text wrapping. 4 items × (9px pad + 21px line + 9px pad + 1px border)
   minus the final border = 159 px. */
.package-card__features--preview {
  min-height: 159px;
}
.package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}
.package-card__features li:last-child { border-bottom: none; }
.package-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Package tiers (vehicle-type pricing) */
.package-card__time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  font-family: var(--font-sub);
}
.package-card__tiers {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.package-card__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.package-card__tier:last-child { border-bottom: none; }
.package-card__tier-label { color: var(--text-2); }
.package-card__tier-price {
  font-family: var(--font-sub);
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}
.package-card--featured .package-card__tiers {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
}

/* ---- Package: section divider in full feature list ------- */
.pkg-features__section {
  display: block;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0 2px;
  border-bottom: none !important;
  margin-top: 4px;
}
.pkg-features__section::before { display: none; }

/* ---- Package: expandable details panel ------------------- */
.pkg-details {
  height: 0;
  overflow: hidden;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-details .package-card__features {
  border-top: 1px solid var(--border-soft);
  padding-top: 6px;
  margin-top: 16px;
}

/* ---- Package: actions wrapper (toggle + book btn) -------- */
.package-card__actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Package: What's Included toggle button -------------- */
.pkg-details-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--text-2);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.pkg-details-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pkg-details-toggle__chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.pkg-details-toggle.is-open .pkg-details-toggle__chevron {
  transform: rotate(180deg);
}
.pkg-book-btn { width: 100%; justify-content: center; }

/* ---- Add-On Services + Mobile Service -------------------- */
.addons-section { background: var(--bg-2); }

/* 2-column add-on grid (gap-as-border technique) */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--bg-glass);
  font-size: 14px;
  gap: 12px;
}
.addon-item__name { color: var(--text-2); }
.addon-item__price {
  font-family: var(--font-sub);
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  white-space: nowrap;
}

/* Mobile service — full-width horizontal banner */
.mobile-service-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mobile-service-banner__text {
  padding: 48px 48px 48px 52px;
  border-right: 1px solid var(--border-soft);
}
.mobile-service-banner__title {
  font-family: var(--font-sub);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin: 6px 0 14px;
  line-height: 1.2;
}
.mobile-service-banner__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 360px;
}
.mobile-service-banner__details {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-service-list {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.mobile-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  gap: 16px;
}
.mobile-service-item:last-child { border-bottom: none; }
.mobile-service-item__label { color: var(--text-2); }
.mobile-service-item__value { color: var(--text-3); font-size: 13px; text-align: right; }
.mobile-service-item__value--included {
  color: #4caf50;
  font-weight: 700;
  font-family: var(--font-sub);
}

@media (max-width: 900px) {
  .addons-grid { grid-template-columns: 1fr; }
  .mobile-service-banner { grid-template-columns: 1fr; border-left-width: 1px; border-top: 3px solid var(--gold); }
  .mobile-service-banner__text { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 36px 28px; }
  .mobile-service-banner__details { padding: 28px; }
}

/* ---- Gallery --------------------------------------------- */
.gallery__filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.gallery__filter-btn {
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition-fast);
}
.gallery__filter-btn.active,
.gallery__filter-btn:hover {
  background: var(--gold-subtle);
  border-color: var(--border);
  color: var(--gold);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-3);
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-caption {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-3);
  font-size: 14px;
}

/* ---- Testimonials ---------------------------------------- */
.testimonials {
  background: var(--bg-2);
}

.testimonials__swiper {
  padding: 20px 0 60px !important;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  height: auto;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 32px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star { color: var(--text-3); font-size: 16px; }
.star.filled { color: var(--gold); }

.testimonial-card__quote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-1);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-card__name {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-card__vehicle {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ---- Booking Form ---------------------------------------- */
.booking {
  background: var(--bg-3);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking__info-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.booking__info-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
}

.booking__info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-2);
}
.booking__info-item-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Form styles */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form__label .req { color: var(--gold); margin-left: 2px; }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text-1);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-3); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__select option { background: var(--bg-3); color: var(--text-1); }

.form__textarea { min-height: 120px; resize: vertical; }

/* Dependent booking groups (pkg / add-on — shown/hidden by JS) */
.bk-dep-group {
  transition: opacity 0.18s ease;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__submit-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form__status {
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  display: none;
}
.form__status.success {
  display: block;
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.3);
  color: #34c759;
}
.form__status.error {
  display: block;
  background: rgba(255,59,48,0.1);
  border: 1px solid rgba(255,59,48,0.3);
  color: #ff3b30;
}

/* ---- Contact Section -------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.contact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact__item-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__item-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__item-value {
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.5;
}
.contact__item-value a:hover { color: var(--gold); }

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-2);
  transition: var(--transition-fast);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

.contact__map-section {
  margin-top: 60px;
}
.contact__map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-3);
}
.contact__map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact__map-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Contact form (right column on contact section) */
.contact__form-wrap {
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ---- FAQ Section ------------------------------------------ */
.faq {
  background: var(--bg-2);
}

.faq__list {
  max-width: 780px;
  margin: 60px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border-soft);
}
.faq__item:first-child { border-top: 1px solid var(--border-soft); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
  transition: color var(--transition-fast);
}
.faq__question:hover { color: var(--gold); }

.faq__question-text {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  line-height: 1.4;
}

.faq__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
  transition: var(--transition);
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--gold-subtle); border-color: var(--gold); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq__item.open .faq__answer { max-height: 300px; }

.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ---- Footer ----------------------------------------------- */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: var(--text-3);
}
.footer__copy a { color: var(--gold); }

/* ---- Reveal Animations ------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed,
[data-reveal="scale"].revealed { transform: none; opacity: 1; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ---- Divider ---------------------------------------------- */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 20px 0;
}
.gold-divider--center {
  margin: 20px auto;
}

/* ---- Misc ------------------------------------------------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag--gold { background: var(--gold-subtle); border: 1px solid var(--border); color: var(--gold); }
.tag--gray { background: var(--bg-glass); border: 1px solid var(--border-soft); color: var(--text-3); }

/* ---- Swiper overrides ------------------------------------- */
.swiper-pagination-bullet { background: var(--text-3) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  width: 44px !important; height: 44px !important;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; }

/* ---- Loading spinner -------------------------------------- */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(201,168,76,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.spinner.active { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .booking__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .packages__grid { grid-template-columns: 1fr; max-width: 480px; margin: 64px auto 0; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(44px, 13vw, 80px); }
  .hero__badges { gap: 20px; }

  .services__grid { grid-template-columns: 1fr; }
  .ba-slider { height: 300px; }

  .why-us__grid { grid-template-columns: 1fr 1fr; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }

  .form__row { grid-template-columns: 1fr; }

  .contact__map-section { margin-top: 40px; }
  .contact__map { height: 300px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .container { padding: 0 20px; }

  .hero__title { font-size: clamp(40px, 14vw, 68px); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .why-us__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 28px 20px; }
}

/* ============================================================
   Language Switching
   ============================================================ */

/* Hide non-active language elements based on html[data-lang] */
html[data-lang="en"] [data-ru] { display: none !important; }
html[data-lang="ru"] [data-en] { display: none !important; }

/* Default state: hide RU (EN is default if no data-lang set) */
html:not([data-lang="ru"]) [data-ru] { display: none !important; }

/* ---- Language Switcher Button ------------------------------ */
.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 2px;
  margin-left: 8px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  background: none;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-1);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--bg);
}

/* Mobile nav override */
@media (max-width: 768px) {
  .nav__right .nav__cta { display: none; }
  .lang-switch { margin-left: 0; }
}

/* ============================================================
   MOBILE POLISH — 320–430 px
   Scope: phone-only refinements. Desktop layout untouched.
   ============================================================ */

/* ---- Nav — tighter padding on phones --------------------- */
@media (max-width: 768px) {
  .nav__inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .nav__inner { padding: 0 16px; }
  .nav__logo-name { font-size: 19px; }
  /* Keep burger tap target comfortable */
  .nav__burger { padding: 6px; }
}

/* Mobile menu: keep links readable on small screens */
@media (max-width: 480px) {
  .nav__mobile { gap: 28px; }
  .nav__mobile a { font-size: 26px; }
  .nav__mobile .btn { width: min(280px, 80vw); justify-content: center; }
}

/* ---- Hero — comfortable on every phone width ------------- */
@media (max-width: 768px) {
  .hero__content {
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 56px;
  }
  /* Relax the desktop line-height (0.95) — Bebas Neue stacks
     very tightly at display sizes; 1.02 reads much cleaner */
  .hero__title {
    line-height: 1.02;
  }
  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .hero__actions { margin-bottom: 44px; gap: 12px; }
  .hero__badges  { gap: 18px; }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(34px, 10.5vw, 52px);
    line-height: 1.05;
    /* prevent a single short word from sitting alone on the last line */
    max-width: 88vw;
  }
  .hero__subtitle { font-size: 14px; margin-bottom: 24px; max-width: 100%; }
  .hero__actions { gap: 10px; margin-bottom: 36px; }
  .hero__content { padding-bottom: 44px; }
  /* Badges: allow wrapping into a tidy 2-column pattern */
  .hero__badges  { gap: 14px 24px; }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.08;
    max-width: 92vw;
  }
  /* Stack badges into a single column on the narrowest phones */
  .hero__badges { flex-direction: column; gap: 12px; }
}

/* ---- Package cards — reduce horizontal padding on mobile -- */
@media (max-width: 768px) {
  /* Already 1 col from 1024px breakpoint; center & constrain */
  .packages__grid { margin-top: 48px; }
  .package-card   { padding: 28px 28px 32px; }
}

@media (max-width: 480px) {
  .packages__grid { max-width: 100%; }
  .package-card   { padding: 24px 20px 28px; }
  /* Price headline: slightly smaller on narrow cards */
  .package-card__price { font-size: 48px; }
  /* Tier rows: slightly more compact */
  .package-card__tier { padding: 10px 14px; font-size: 13px; }
  .package-card__tier-price { font-size: 15px; }
  /* Toggle & book buttons: ensure comfortable 44px min height */
  .pkg-details-toggle { padding: 12px 14px; min-height: 44px; }
  .pkg-book-btn { min-height: 48px; }
  /* Feature preview min-height: loosen to prevent forced blank space */
  .package-card__features--preview { min-height: 0; }
  /* Actions spacing */
  .package-card__actions { padding-top: 20px; gap: 8px; }
}

/* ---- Add-ons + Mobile Service — compact on phones --------- */
@media (max-width: 480px) {
  .addons-grid    { margin-top: 36px; }
  .addon-item     { padding: 14px 16px; font-size: 13px; }
  .addon-item__price { font-size: 14px; }
  /* Mobile service banner: tighter padding on small screens */
  .mobile-service-banner__text    { padding: 28px 20px; }
  .mobile-service-banner__details { padding: 20px; }
  .mobile-service-banner__title   { font-size: 21px; }
  .mobile-service-item { padding: 12px 16px; font-size: 13px; }
}

/* ---- Booking form — full-width submit on phones ----------- */
@media (max-width: 768px) {
  .booking__inner      { gap: 40px; }
  .booking__info-items { gap: 12px; }
}

@media (max-width: 480px) {
  .booking__inner { gap: 28px; }
  /* Submit row: stack button below spinner so it can go full-width */
  .form__submit-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .form__submit-wrap .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }
  .form__status { font-size: 13px; }
  /* Inputs: comfortable touch targets */
  .form__input,
  .form__select,
  .form__textarea { padding: 13px 16px; font-size: 16px; } /* 16px prevents iOS zoom */
}

/* ---- Contact section -------------------------------------- */
@media (max-width: 480px) {
  .contact__form-wrap { padding: 24px 18px; }
  .contact__map       { height: 260px; }
}

/* ---- Why Us cards — compact on phones -------------------- */
@media (max-width: 480px) {
  .why-us__grid { margin-top: 40px; gap: 16px; }
  .why-card     { padding: 28px 20px; }
  .why-card__icon { font-size: 30px; margin-bottom: 14px; }
}

/* ---- Services section ------------------------------------ */
@media (max-width: 480px) {
  .services__header { margin-bottom: 40px; }
  .service-card     { padding: 32px 24px; }
}

/* ---- Testimonials ---------------------------------------- */
@media (max-width: 480px) {
  .testimonial-card { padding: 28px 20px; }
  .testimonial-card__quote { font-size: 15px; }
}

/* ---- FAQ ------------------------------------------------- */
@media (max-width: 480px) {
  .faq__list     { margin-top: 40px; }
  .faq__question { padding: 16px 0; }
  .faq__question-text { font-size: 14px; }
  .faq__answer-inner  { font-size: 14px; }
}

/* ---- Gallery --------------------------------------------- */
@media (max-width: 480px) {
  .gallery__filter { margin: 24px 0; gap: 6px; }
  .gallery__filter-btn { padding: 7px 14px; }
}

/* ---- Footer ---------------------------------------------- */
@media (max-width: 480px) {
  .footer { padding: 48px 0 24px; }
  .footer__inner { gap: 28px; }
  .footer__brand-desc { font-size: 13px; }
  .footer__bottom { gap: 8px; }
}

/* ---- Section header rhythm ------------------------------- */
@media (max-width: 480px) {
  .section-eyebrow { letter-spacing: 0.2em; font-size: 10px; }
  .section-subtitle { font-size: 15px; }
}

/* ---- Before/After slider --------------------------------- */
@media (max-width: 480px) {
  .ba-slider { height: 240px; }
}

/* ---- Global: prevent accidental horizontal scroll --------- */
@media (max-width: 768px) {
  .hero__streaks { display: none; } /* decorative only – skip on mobile */
}

