/* ============================================================
   SALEK TYRE & MECHANIC — Premium Design System
   Gold / Black luxury automotive theme
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #0e0e0e;
  --bg-3:        #141414;
  --bg-4:        #1c1c1c;
  --bg-5:        #242424;

  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #9E7C2C;
  --gold-subtle: rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.08);

  --white:       #FFFFFF;
  --text-1:      rgba(255,255,255,0.92);
  --text-2:      rgba(255,255,255,0.62);
  --text-3:      rgba(255,255,255,0.38);

  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', -apple-system, sans-serif;
  --ff-label:   'Montserrat', sans-serif;

  --radius-s:   6px;
  --radius-m:   12px;
  --radius-l:   20px;
  --radius-xl:  32px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --t:          0.3s;
  --t-slow:     0.6s;

  --container:  1200px;
  --gutter:     clamp(16px, 5vw, 48px);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
button, a, [role="button"] { touch-action: manipulation; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(64px, 10vw, 120px) 0; }

/* ── Typography helpers ────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section headers ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.label {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-1);
}
.section-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-m);
  font-family: var(--ff-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--t) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0d0d0d;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  filter: brightness(1.08);
}
.btn-gold:active { transform: translateY(0); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--border-gold);
}
.btn-gold-outline:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 15px;
  border-radius: var(--radius-l);
}

/* ── Gold divider line ────────────────────────────────────── */
.gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text span:first-child {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-gold {
  font-family: var(--ff-label);
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  color: var(--gold) !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-s);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav-links a:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav-links .nav-cta {
  color: #0d0d0d;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 9px 20px;
  border-radius: var(--radius-m);
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-s);
}
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  transition: all var(--t) var(--ease);
  border-radius: 2px;
}
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* backdrop-filter on .navbar.scrolled makes the navbar a containing block,
       so bottom:0 would only reach the navbar bottom (68px).
       Using height: 100dvh bypasses this — it's always the full viewport height. */
    height: 100vh;   /* fallback for older browsers */
    height: 100dvh;  /* preferred: correct on mobile even with browser chrome */
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 1001;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 18px;
    padding: 14px 32px;
    min-height: 48px;       /* comfortable touch target */
    display: flex;
    align-items: center;
  }
  .nav-links .nav-cta {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 8px;
    border-radius: var(--radius-m);
  }
  /* position: relative is required for z-index to take effect on a button */
  .menu-toggle { display: flex; position: relative; z-index: 1002; }
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Cinematic vignette — darkens all edges (covers any watermark naturally) */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Bottom: solid black for first 12%, fades clear by 48% */
    linear-gradient(to top,    rgba(8,8,8,1) 0%, rgba(8,8,8,1) 12%, rgba(8,8,8,0) 48%),
    /* Top edge */
    linear-gradient(to bottom, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0) 22%),
    /* Left edge */
    linear-gradient(to right,  rgba(8,8,8,0.75) 0%, rgba(8,8,8,0) 22%),
    /* Right edge */
    linear-gradient(to left,   rgba(8,8,8,0.75) 0%, rgba(8,8,8,0) 22%);
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(30%);
}
/* Video hero — richer colour, slight brightness lift over the static photo */
video.hero-bg-video {
  opacity: 0.65;
  filter: grayscale(5%) brightness(1.35) contrast(1.08) saturate(1.1);
}
.hero-rings { position: absolute; inset: 0; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
}
.ring-1 { width: 500px; height: 500px; top: -80px; right: -80px; }
.ring-2 { width: 800px; height: 800px; top: -230px; right: -230px; }
.ring-3 { width: 1100px; height: 1100px; top: -380px; right: -380px; }
.ring-4 { width: 1400px; height: 1400px; top: -530px; right: -530px; }
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero-tagline {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-1);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--text-1); font-weight: 500; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
}
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: 0.3; }
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services-section { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-subtle) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }
.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-m);
  margin-bottom: 24px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: background var(--t) var(--ease);
}
.service-card:hover .card-icon { background: rgba(201,168,76,0.2); }
.card-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-1);
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.card-link {
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: gap var(--t) var(--ease), opacity var(--t) var(--ease);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* touch target */
}
.card-link:hover { opacity: 0.8; }

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════════════ */
.why-section { position: relative; background: var(--bg); }
.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.why-num {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 800;
  color: rgba(201,168,76,0.06);
  position: absolute;
  top: -10px;
  right: 24px;
  line-height: 1;
  user-select: none;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-1);
}
.why-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(to right, rgba(201,168,76,0.06), transparent, rgba(201,168,76,0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--gold);
  display: inline;
}
.stat-label {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 10px;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   ABOUT PREVIEW
   ════════════════════════════════════════════════════════════ */
.about-preview { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-img-col { position: relative; }
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.img-placeholder {
  width: 100%;
  height: 520px;
  background: var(--bg-3);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-3);
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 20px;
}
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0d0d;
  padding: 24px 28px;
  border-radius: var(--radius-l);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.badge-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}
.about-text-col .label { margin-bottom: 16px; }
.about-text-col h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-text-col p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
}

/* ════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(10%);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ════════════════════════════════════════════════════════════
   BOOKING FORM
   ════════════════════════════════════════════════════════════ */
.booking-section {
  position: relative;
  background: var(--bg);
}
.booking-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 0% 100%, rgba(201,168,76,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 100% 0%, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.booking-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.booking-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-card);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-2);
}
.req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  color: var(--text-1);
  font-size: 16px; /* 16px minimum prevents iOS auto-zoom on focus */
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  min-height: 52px;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 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-field select option { background: var(--bg-4); color: var(--text-1); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.1);
}
.form-field input[type="date"] { cursor: pointer; color-scheme: dark; }
.field-err {
  font-size: 12px;
  color: #e05252;
  font-family: var(--ff-label);
  min-height: 16px;
}
.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
#freg { text-transform: uppercase; }
.field-trap {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}
.form-global-err {
  background: rgba(224,82,82,0.08);
  border: 1px solid rgba(224,82,82,0.3);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  color: #e05252;
  font-size: 14px;
  font-family: var(--ff-label);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}
.policy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
}
.policy-note svg { flex-shrink: 0; margin-top: 2px; }
.policy-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.form-actions { text-align: center; }
.btn-xl { padding: 18px 56px; min-width: 260px; justify-content: center; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ── Booking method chooser ── */
.booking-chooser {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
}
.chooser-card {
  appearance: none;
  text-align: left;
  text-decoration: none;
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  color: var(--text-1);
  transition: border-color var(--t) var(--ease), box-shadow var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.chooser-card:hover,
.chooser-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 16px 56px rgba(201,168,76,0.15);
  transform: translateY(-4px);
  outline: none;
}
.chooser-card--cm:hover,
.chooser-card--cm:focus-visible {
  border-color: rgba(100,181,246,0.45);
  box-shadow: 0 16px 56px rgba(100,181,246,0.08);
}
.chooser-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.chooser-icon--cm { background: rgba(100,181,246,0.1); }
.chooser-icon--cm svg { stroke: #64B5F6; }
.chooser-badge {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 3px 10px;
  width: fit-content;
}
.chooser-badge--cm {
  color: #64B5F6;
  background: rgba(100,181,246,0.1);
  border-color: rgba(100,181,246,0.25);
}
.chooser-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.chooser-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  flex-grow: 1;
}
.chooser-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.chooser-perks li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chooser-perks li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.chooser-perks--cm li::before { color: #64B5F6; }
.chooser-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 12px 22px;
  background: var(--gold);
  color: #080808;
  border-radius: var(--radius-m);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--t) var(--ease);
  width: fit-content;
}
.chooser-card:hover .chooser-cta { background: var(--gold-light); }
.chooser-cta--cm {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border);
}
.chooser-card--cm:hover .chooser-cta--cm {
  border-color: rgba(100,181,246,0.5);
  color: #64B5F6;
}
.chooser-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 0;
}
.chooser-or-line {
  flex: 1;
  width: 1px;
  background: var(--border);
}
.chooser-or-text {
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-2);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
  transition: color var(--t) var(--ease);
}
.back-btn:hover { color: var(--gold); }
/* Booking wrapper entrance animation */
#bookingWrapper:not([hidden]) {
  animation: wrapperReveal 0.38s var(--ease-out) both;
}
@keyframes wrapperReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Chooser fade-out */
.booking-chooser.fading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
@media (max-width: 680px) {
  .booking-chooser {
    grid-template-columns: 1fr;
  }
  .chooser-divider {
    flex-direction: row;
    padding: 4px 0;
    gap: 16px;
  }
  .chooser-or-line { flex: 1; width: auto; height: 1px; }
  .chooser-card { padding: 32px 24px; }
}

/* Tyre size conditional field */
.tyre-size-field {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 8px;
}
.tyre-size-field.visible {
  display: flex;
  animation: tyreFadeIn 0.32s var(--ease-out) both;
}
@keyframes tyreFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tyre-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-s);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.tyre-hint svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }
.tyre-hint strong { color: var(--gold-light); font-weight: 600; }

/* Tyre condition toggle */
.tyre-type-label {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 4px;
}
.tyre-type-toggle {
  display: flex;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 4px;
  gap: 4px;
}
.tyre-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  border: none;
  border-radius: calc(var(--radius-m) - 2px);
  background: transparent;
  color: var(--text-2);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.tyre-toggle-btn.active {
  background: var(--gold);
  color: #080808;
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
}
.tyre-toggle-btn:not(.active):hover {
  color: var(--text-1);
  background: var(--bg-5);
}

/* Success state */
.success-state {
  text-align: center;
  padding: 64px 40px;
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
}
.success-icon { margin-bottom: 24px; display: flex; justify-content: center; }
.success-state h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
}
.success-state > p { color: var(--text-2); margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* Deposit step block inside success state */
.deposit-step {
  background: var(--bg-4);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-l);
  padding: 32px 36px;
  margin: 0 auto 32px;
  max-width: 480px;
}
.deposit-step__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px !important;
}
.deposit-step__desc {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px !important;
  max-width: 360px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.deposit-step .btn-xl { width: 100%; margin-bottom: 12px; }
.deposit-step__note {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
}

/* ════════════════════════════════════════════════════════════
   CONTACT & MAP
   ════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  transition: all var(--t) var(--ease);
}
.info-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-text h4 {
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.info-text p, .info-text address { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.info-link {
  font-size: 14px;
  color: var(--gold);
  font-family: var(--ff-label);
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}
.info-link:hover { text-decoration: underline; text-underline-offset: 2px; }
.info-link-lg { font-size: 20px; font-weight: 600; color: var(--text-1); display: block; margin-bottom: 4px; }
.info-note { font-size: 13px; color: var(--text-3); }
.hours-table { width: 100%; margin-top: 4px; }
.hours-table td { padding: 3px 0; font-size: 14px; color: var(--text-2); }
.hours-table td:first-child { font-weight: 500; color: var(--text-1); padding-right: 24px; white-space: nowrap; }
.closed { color: var(--text-3) !important; }
.map-wrapper {
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.map-wrapper iframe { display: block; border-radius: inherit; }
.map-wrapper #garage-map { height: 100%; }
.leaflet-popup-content-wrapper { background: #1a1a1a; border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.leaflet-popup-tip { background: #1a1a1a; }
.leaflet-popup-close-button { color: #888 !important; }
.leaflet-control-zoom a { background: #1a1a1a !important; color: #C9A84C !important; border-color: rgba(201,168,76,0.3) !important; }
.leaflet-control-zoom a:hover { background: #C9A84C !important; color: #000 !important; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 320px; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); }
.footer-inner { padding: clamp(56px, 8vw, 96px) 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 4vw, 56px);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 10px;
}
.footer-addr { font-size: 13px; color: var(--text-3); }
.footer-nav h4, .footer-services h4, .footer-contact h4 {
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-nav ul, .footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-services a {
  font-size: 14px;
  color: var(--text-3);
  transition: color var(--t) var(--ease);
}
.footer-nav a:hover, .footer-services a:hover { color: var(--gold); }
.footer-contact address p {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-contact address a { color: var(--text-3); transition: color var(--t) var(--ease); }
.footer-contact address a:hover { color: var(--gold); }
.footer-book-btn { margin-top: 24px; width: 100%; justify-content: center; padding: 12px 20px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-bottom a { color: var(--text-3); transition: color var(--t) var(--ease); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   STICKY CALL BUTTON (mobile)
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ════════════════════════════════════════════════════════════ */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0);   }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);    }
}

.sticky-whatsapp {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: 24px;
  z-index: 901;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: wa-pulse 2.4s ease-out 2s infinite;
  text-decoration: none;
}
.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
  animation: none;
}
.sticky-whatsapp:active { transform: scale(0.93); }

/* Tooltip — slides in from the left on hover */
.wa-tooltip {
  position: absolute;
  left: 72px;
  white-space: nowrap;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(37,211,102,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.wa-tooltip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: rgba(37,211,102,0.25);
  border-left: none;
}
.sticky-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════════════════════ */
.sticky-call {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  transition: all var(--t) var(--ease);
  display: none;
}
.sticky-call:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(201,168,76,0.55); }
.sticky-call:active { transform: scale(0.95); }
@media (max-width: 768px) {
  .sticky-call { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.page-hero-rings { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; padding-top: 140px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-label);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-3); }
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-sub { font-size: 18px; color: var(--text-2); max-width: 560px; }

.about-full-content { background: var(--bg-2); }
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-full-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-full-text p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.value-blocks { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.value-block {
  display: flex;
  gap: 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
  transition: all var(--t) var(--ease);
}
.value-block:hover { border-color: var(--border-gold); }
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-block h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--text-1); }
.value-block p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }
.about-img-full {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .about-full-grid { grid-template-columns: 1fr; }
  .about-img-col-full { display: none; }
}

/* ════════════════════════════════════════════════════════════
   POLICY PAGE
   ════════════════════════════════════════════════════════════ */
.policy-content { background: var(--bg-2); }
.policy-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 0;
}
.policy-meta {
  font-family: var(--ff-label);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 48px;
  letter-spacing: 0.06em;
}
.policy-section {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px;
  margin-bottom: 20px;
  transition: border-color var(--t) var(--ease);
}
.policy-section:hover { border-color: var(--border-gold); }
.policy-section h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-section h2::before {
  content: '';
  display: block;
  width: 3px;
  height: 22px;
  background: var(--gold);
  border-radius: 2px;
}
.policy-section p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 12px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section strong { color: var(--text-1); }
.policy-section ul { display: flex; flex-direction: column; gap: 10px; }
.policy-section li {
  font-size: 15px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ════════════════════════════════════════════════════════════
   INTL-TEL-INPUT — dark/gold theme overrides
   ════════════════════════════════════════════════════════════ */
.iti { width: 100%; }
.iti__flag-container { z-index: 2; }
.iti__selected-flag {
  background: var(--bg-4);
  border-right: 1px solid var(--border);
  border-radius: var(--radius-m) 0 0 var(--radius-m);
  padding: 0 10px 0 12px;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus { background: var(--bg-5); }
.iti__flag-container + input {
  border-radius: 0 var(--radius-m) var(--radius-m) 0 !important;
}
.iti__country-list {
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-m);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
  color: var(--text-1);
  max-height: 220px;
}
.iti__country:hover,
.iti__country.iti__highlight {
  background: var(--gold-subtle);
  color: var(--gold-light);
}
.iti__country-name, .iti__dial-code { color: inherit; }
.iti__search-input {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  color: var(--text-1);
  padding: 8px 12px;
  font-size: 14px;
  width: 100%;
}
.iti__search-input::placeholder { color: var(--text-3); }
.iti--separate-dial-code .iti__selected-flag { padding-right: 8px; }

/* ════════════════════════════════════════════════════════════
   SWEETALERT2 — dark/gold theme overrides
   ════════════════════════════════════════════════════════════ */
.swal-salek-popup {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px !important;
  font-family: var(--ff-body) !important;
}
.swal-salek-title {
  font-family: var(--ff-display) !important;
  color: var(--gold-light) !important;
  font-size: 1.6rem !important;
}
.swal-salek-cancel {
  border: 1px solid var(--border) !important;
  font-family: var(--ff-label) !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
}
.swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(201,168,76,0.3) !important; }
.swal2-icon.swal2-success [class^='swal2-success-line'] { background-color: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════
   TYPED.JS — cursor colour
   ════════════════════════════════════════════════════════════ */
.typed-cursor { color: var(--gold); opacity: 1; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE EXTRAS
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(36px, 9vw, 52px); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; min-height: 54px; font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }
  .why-num { font-size: 64px; top: -6px; right: 18px; }
  .about-badge-float { right: 0; bottom: -20px; }
  .stats-section { padding: 48px 0; }
  .stat-item { padding: 32px 16px; }
  .section-title { font-size: clamp(28px, 7vw, 44px); }
  .btn-xl { width: 100%; min-width: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
  .hero-tagline { font-size: 10px; padding: 6px 12px; }
  .hero-rings { display: none; } /* decorative only — hidden on very small screens */
  .hero-trust { gap: 8px; }
  .trust-pill { font-size: 11px; padding: 6px 12px; }
  .service-card { padding: 24px 18px; }
  .card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
  .gallery-item { aspect-ratio: 4/3; }
  .success-state { padding: 40px 20px; }
  .success-state h3 { font-size: 26px; }
  .deposit-step { padding: 24px 16px; }
  .chooser-card { padding: 28px 20px; }
  .policy-section { padding: 24px 18px; }
  .policy-wrapper { padding: 48px 0; }
  .page-hero-content { padding-top: 110px; }
  .page-sub { font-size: 16px; }
  .info-card { padding: 18px 16px; gap: 14px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(32px, 10vw, 40px); }
  .hero-cta .btn { padding: 15px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: clamp(26px, 8vw, 36px); }
}

/* ══════════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
   ══════════════════════════════════════════════════════════ */

.reviews-section { background: var(--bg-2); }

/* ── Overall rating panel ── */
.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 32px auto 52px;
  padding: 28px 52px;
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-gold);
}
.overall-score {
  font-family: var(--ff-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.overall-stars { display: flex; gap: 5px; }
.overall-count {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ── Star icons ── */
.star-icon { width: 20px; height: 20px; flex-shrink: 0; }
.star-icon.filled path { fill: var(--gold); stroke: none; }
.star-icon.empty  path { fill: none; stroke: var(--text-3); stroke-width: 2; }

/* ── Review card grid ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

/* ── Individual review card ── */
.review-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: reviewFadeIn 0.45s var(--ease) both;
}
.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card header: avatar + name + date + Google icon */
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-avatar-initials {
  font-family: var(--ff-label);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.review-google-icon { flex-shrink: 0; opacity: 0.8; line-height: 0; }

/* Stars on each card */
.review-stars { display: flex; gap: 3px; }
.review-stars .star-icon { width: 15px; height: 15px; }

/* Review body text */
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  flex: 1;
  margin: 0;
}

/* ── Loading skeleton cards ── */
.review-skeleton {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.skel {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--bg-4) 25%, var(--bg-5) 50%, var(--bg-4) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
.skel-header  { height: 44px; border-radius: 8px; }
.skel-stars   { height: 14px; width: 90px; }
.skel-line    { height: 12px; width: 100%; }
.skel-line.short { width: 65%; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Fallback placeholder ── */
.reviews-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 24px;
  color: var(--text-2);
  font-size: 15px;
}
.reviews-placeholder-icon { font-size: 44px; margin-bottom: 16px; }

/* ── CTA & attribution ── */
.reviews-cta { text-align: center; margin-top: 36px; }
.reviews-attribution {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-overall { padding: 24px 36px; }
}
@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .overall-score { font-size: 48px; }
}

/* ════════════════════════════════════════════════════════════
   SWIPER — Gallery carousel
   ════════════════════════════════════════════════════════════ */
.gallery-swiper {
  width: 100%;
  margin-top: 48px;
  padding-bottom: 56px !important;
}
.gallery-swiper .swiper-slide {
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  transition: border-color var(--t) var(--ease);
}
.gallery-swiper .swiper-slide:hover { border-color: var(--border-gold); }
.gallery-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-swiper .swiper-slide:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Pagination dots */
.gallery-swiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.35;
  width: 8px;
  height: 8px;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.35);
}

/* Prev / Next buttons */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(8,8,8,0.75);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  backdrop-filter: blur(8px);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after { font-size: 13px; font-weight: 800; }
.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.gallery-swiper .swiper-button-disabled { opacity: 0.25 !important; }

/* ════════════════════════════════════════════════════════════
   FLATPICKR — Gold / black theme overrides
   ════════════════════════════════════════════════════════════ */
.flatpickr-calendar {
  background: var(--bg-3) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: var(--radius-m) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7) !important;
}
.flatpickr-calendar.arrowTop::before { border-bottom-color: var(--border-gold) !important; }
.flatpickr-calendar.arrowTop::after  { border-bottom-color: var(--bg-3) !important; }
.flatpickr-months .flatpickr-month  { background: transparent !important; }
.flatpickr-current-month,
.flatpickr-current-month .cur-month,
.flatpickr-current-month input.cur-year { color: var(--text-1) !important; }
.flatpickr-monthDropdown-months { background: var(--bg-3) !important; color: var(--text-1) !important; }
.flatpickr-weekdays { background: transparent !important; }
span.flatpickr-weekday { background: transparent !important; color: var(--gold) !important; font-weight: 600; font-size: 12px; }
.flatpickr-days { border-color: var(--border) !important; }
.flatpickr-day {
  color: var(--text-2) !important;
  border-radius: var(--radius-s) !important;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: var(--gold-subtle) !important;
  border-color: var(--border-gold) !important;
  color: var(--text-1) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #000 !important;
  font-weight: 700;
}
.flatpickr-day.today {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.flatpickr-day.today:hover {
  background: var(--gold-subtle) !important;
  color: var(--text-1) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: var(--text-3) !important;
  background: transparent !important;
  text-decoration: line-through;
}
.flatpickr-prev-month,
.flatpickr-next-month { color: var(--gold) !important; fill: var(--gold) !important; }
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg { fill: var(--gold-light) !important; }

/* ════════════════════════════════════════════════════════════
   PHOTOSWIPE — Gallery zoom-in overlay & gold theme
   ════════════════════════════════════════════════════════════ */
.gallery-swiper .swiper-slide a {
  display: block;
  position: relative;
  cursor: zoom-in;
}
/* zoom icon badge — appears on hover */
.gallery-swiper .swiper-slide a::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background-color: rgba(8,8,8,0.72);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.gallery-swiper .swiper-slide:hover a::before {
  opacity: 1;
  transform: scale(1);
}

/* PhotoSwipe viewer — dark background */
.pswp { --pswp-bg: #080808; }
.pswp__top-bar { background: linear-gradient(rgba(8,8,8,0.6), transparent) !important; }
.pswp__button { --pswp-icon-color: #C9A84C; --pswp-icon-color-secondary: rgba(8,8,8,0.8); }
.pswp__counter { color: var(--gold) !important; font-family: var(--ff-label) !important; font-size: 14px !important; letter-spacing: 0.06em; }
