/* =========================================================
   GREY GARAGE DETAILING — app.css
   Design: Dark minimal, cinematic, mercury background
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --bg-card:     #141414;
  --border:      #1f1f1f;
  --border-2:    #2a2a2a;
  --text:        #efefef;
  --text-2:      #c8c8c8;
  --text-muted:  #555555;
  --red:         #dc2626;
  --red-dim:     rgba(220,38,38,0.12);
  --white:       #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'DM Sans', sans-serif;

  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.18s ease;

  --nav-w: 0px; /* legacy variable kept for compatibility */
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(52px, 12vw, 130px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.55);
  line-height: 0.88;
  letter-spacing: 0.05em;
}
.preloader-bar-wrap {
  width: clamp(160px, 30vw, 240px);
  height: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.75);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.preloader-pct {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =========================================================
   CONTENT WIDTH — all major sections share this constraint
   ========================================================= */
.services-preview, .stats-section, .about-preview,
.ba-section, .testimonials-section, .cta-banner, footer,
.page-hero, .about-story, .about-values, .services-page,
.single-service-body, .ba-page, .contact-page,
.marquee-band {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

/* =========================================================
   MERCURY BACKGROUND
   ========================================================= */
#mercury-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   CURSOR
   ========================================================= */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
  /* NO CSS transition on dot — instant follow */
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  will-change: transform;
  /* CSS transition gives the smooth lag feel — no GSAP needed */
  transition: transform 0.14s cubic-bezier(0.23, 1, 0.32, 1),
              width 0.25s ease,
              height 0.25s ease,
              border-color 0.25s ease,
              opacity 0.3s ease;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: var(--red);
}
.cursor-ring.clicking {
  width: 24px; height: 24px;
  border-color: var(--white);
}

/* =========================================================
   FLOATING TOP NAV
   ========================================================= */
.nav-top {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 960px;
  height: 64px;
  border-radius: 16px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  gap: 16px;

  /* Starts transparent — JS adds .nav-top--visible on scroll */
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease,
    box-shadow 0.45s ease;
}

.nav-top--visible {
  background: rgba(10, 10, 10, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(140%) brightness(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(140%) brightness(1.05);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-top-logo {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-top-logo:hover { color: #fff; }

.nav-top-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-top-link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-top-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-top-link:hover {
  color: rgba(255, 255, 255, 0.95);
}
.nav-top-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-top-link.active {
  color: rgba(255, 255, 255, 0.95);
}
.nav-top-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-top-cta {
  border-radius: 100px !important;
  padding: 10px 20px !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */
.nav-lang-switcher {
  position: relative;
  display: none; /* desktop hidden by default */
}
.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 7px 11px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-lang-btn:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); }
.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 6px;
  min-width: 168px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-lang-dropdown.open { display: flex; }
.nav-lang-option {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
}
.nav-lang-option:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-lang-option.active { color: #fff; font-weight: 600; }

/* =========================================================
   GLASS UTILITY CLASSES
   ========================================================= */
.glass-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(120%) brightness(1.04);
  -webkit-backdrop-filter: blur(28px) saturate(120%) brightness(1.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45), inset 0 2px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.1);
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(120%) brightness(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(120%) brightness(1.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1.5px 0 rgba(255,255,255,0.38), inset 0 -1px 0 rgba(0,0,0,0.08);
}

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: var(--bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: right 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-drawer.open { right: 0; }
.nav-drawer .nav-link {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.nav-drawer .nav-link:hover { color: #fff; }
.nav-drawer-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-drawer-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Nav link styles (shared) */
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--transition-fast);
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }

/* =========================================================
   HERO — SCROLL SECTION (300vh sticky)
   ========================================================= */
.hero-scroll-section {
  position: relative;
  height: 300vh;
  background: transparent;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* --- Floating words around the car --- */
.hero-words {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hw {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
  will-change: transform, opacity;
}
.hw-char { display: inline-block; }

/* GREY — centered above car, huge outlined display font */
.hw-1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 200px);
  top: 8%;
  left: 0; right: 0;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.90);
  letter-spacing: 0.06em;
}

/* GARAGE — centered below car, huge outlined display font */
.hw-2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 200px);
  bottom: 5%;
  left: 0; right: 0;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.90);
  letter-spacing: 0.06em;
}

/* PRECISION — left center, close to car */
.hw-3 {
  font-family: var(--font-head);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

/* DETAILING — right center, close to car */
.hw-4 {
  font-family: var(--font-head);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

/* EST. 2018 — top right small */
.hw-5 {
  font-family: var(--font-head);
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  top: 9%;
  right: 8%;
  white-space: nowrap;
}

/* PREMIUM STUDIO — removed from center, stays bottom but tighter */
.hw-6 {
  font-family: var(--font-head);
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Label with red line — top left */
.hw-7 {
  display: flex;
  align-items: center;
  gap: 10px;
  top: 9%;
  left: 7%;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.hw-label-line {
  width: 28px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* --- Hero CTA (appears as scroll completes) --- */
.hero-cta {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, pointer-events 0s;
  white-space: nowrap;
}
.hero-cta.visible {
  opacity: 1;
  pointer-events: all;
}

/* --- Scroll hint at bottom --- */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-scroll-hint span {
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero loader */
#hero-loader {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.6s;
}
#hero-loader-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
#hero-loader-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.25s ease;
}
#hero-loader-pct {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-head);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #b91c1c; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-outline:hover { border-color: var(--text-muted); }
.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.magnetic { display: inline-block; }

/* =========================================================
   MARQUEE BAND
   ========================================================= */
.marquee-band {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
}
.marquee-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
section { position: relative; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label-line { width: 32px; height: 1px; background: rgba(255,255,255,0.25); }
.section-label span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}
.section-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}
.reveal { opacity: 0; transform: translateY(40px); }

/* =========================================================
   SERVICES SECTION (HOME PREVIEW)
   ========================================================= */
.services-preview {
  padding: 120px 80px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}
.services-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(120%) brightness(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(120%) brightness(1.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1.5px 0 rgba(255,255,255,0.35);
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 8px 40px rgba(255,255,255,0.05), inset 0 1.5px 0 rgba(255,255,255,0.45);
}
.service-card-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.service-card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-2);
  transition: border-color 0.3s, color 0.3s;
}
.service-card:hover .service-card-icon { border-color: rgba(255,255,255,0.4); color: var(--text); }
.service-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.service-card-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; flex: 1; }
.service-card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.service-card:hover .service-card-link { color: var(--text); gap: 12px; }

/* =========================================================
   STATS
   ========================================================= */
.stats-section {
  padding: 80px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number sup { font-size: 0.4em; color: rgba(255,255,255,0.45); vertical-align: super; }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

/* =========================================================
   ABOUT PREVIEW (home)
   ========================================================= */
.about-preview {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}
.about-preview-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
}
.about-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.6s ease;
}
.about-preview-img:hover img { transform: scale(1.0); }
.about-preview-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, transparent 60%);
}
.about-preview-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  backdrop-filter: blur(12px);
}
.about-preview-badge .num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--text); }
.about-preview-badge .lbl { font-size: 11px; color: var(--text-2); letter-spacing: 0.1em; margin-top: 2px; }
.about-preview-content { display: flex; flex-direction: column; gap: 28px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}
.about-feature:hover { border-color: var(--border-2); background: var(--bg-card); }
.about-feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
}
.about-feature-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.about-feature-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* =========================================================
   BEFORE / AFTER SECTION
   ========================================================= */
.ba-section {
  padding: 120px 80px;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}
.ba-section-header { text-align: center; margin-bottom: 64px; }
.ba-section-header .section-label { justify-content: center; }

.ba-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  aspect-ratio: 16/9;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}
.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  color: var(--bg);
}
.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.4);
  color: var(--white);
}
.ba-label.before { left: 16px; }
.ba-label.after  { right: 16px; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

/* =========================================================
   TESTIMONIALS — 2×2 GRID
   ========================================================= */
.testimonials-section {
  padding: 120px 80px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}
.testimonials-header {
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(115%) brightness(1.02);
  -webkit-backdrop-filter: blur(20px) saturate(115%) brightness(1.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1.5px 0 rgba(255,255,255,0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1.5px 0 rgba(255,255,255,0.25);
}
.testimonial-stars { font-size: 13px; letter-spacing: 2px; color: #c9a84c; margin-bottom: 20px; }
.testimonial-text  { font-size: 14px; line-height: 1.8; color: var(--text-2); margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--border-2); overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  padding: 120px 80px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-banner-inner {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(32px) saturate(120%) brightness(1.04);
  -webkit-backdrop-filter: blur(32px) saturate(120%) brightness(1.04);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 72px 48px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5), inset 0 2px 0 rgba(255,255,255,0.55), inset 0 -1px 0 rgba(0,0,0,0.1);
  position: relative;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(220,38,38,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(220,38,38,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: var(--font-head);
  font-size: clamp(32px,5vw,68px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 16px;
}
.cta-banner-sub { font-size: 15px; color: var(--text-2); margin-bottom: 40px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer-brand-statement {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  line-height: 0.88;
  margin-bottom: 56px;
  pointer-events: none;
  user-select: none;
}

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 80px 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--text); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-2); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-2); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 140px 80px 100px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(220,38,38,0.03) 100%);
  pointer-events: none;
}
.page-hero-label { margin-bottom: 16px; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
}
.page-hero-sub { font-size: 16px; color: var(--text-2); max-width: 560px; line-height: 1.7; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-story {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.about-story-text .section-title { margin-bottom: 24px; }
.about-story-text p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; }
.about-story-img { position: sticky; top: 120px; border-radius: var(--radius-lg); overflow: hidden; }
.about-story-img img { width: 100%; display: block; }

.about-values {
  padding: 80px;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(120%) brightness(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(120%) brightness(1.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1.5px 0 rgba(255,255,255,0.35);
  transition: background 0.3s, border-color 0.3s, transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1.5px 0 rgba(255,255,255,0.4);
}
.value-card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.value-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p  { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-page {
  padding: 80px 80px 120px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.service-page-card {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-page-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.04) 0%, transparent 60%);
  transition: height 0.4s ease;
}
.service-page-card:hover::after { height: 100%; }
.service-page-card:hover { background: var(--bg-3); }
.service-page-card-img { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 8px; }
.service-page-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-page-card:hover .service-page-card-img img { transform: scale(1.05); }
.service-page-card-num   { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--text-muted); }
.service-page-card-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text); }
.service-page-card-desc  { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.service-page-card .btn  { align-self: flex-start; }

/* =========================================================
   SINGLE SERVICE PAGE
   ========================================================= */
.single-service-body {
  padding: 80px 80px 120px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.single-service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.single-service-main img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 48px; aspect-ratio: 16/9; object-fit: cover; }
.single-service-main h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.single-service-main p  { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; }

.service-features-list { margin-top: 40px; }
.service-features-list h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.service-feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.service-feature-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  margin-top: 2px;
}
.service-feature-item h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.service-feature-item p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.service-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; }
.service-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.service-price-card .price-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.service-price-card .price { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--text); margin: 8px 0 4px; }
.service-price-card .price sup { font-size: 0.4em; color: rgba(255,255,255,0.45); vertical-align: super; }
.service-price-card .price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.service-price-card .btn { width: 100%; justify-content: center; }

.service-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.service-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.service-info-row:last-child { border-bottom: none; }
.service-info-row .lbl { color: var(--text-muted); }
.service-info-row .val { font-weight: 600; color: var(--text); }

.service-process { margin-top: 56px; }
.service-process h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 32px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 24px; padding-bottom: 36px; position: relative; }
.process-step::before {
  content: '';
  position: absolute;
  left: 18px; top: 36px;
  width: 1px;
  height: calc(100% - 36px);
  background: var(--border);
}
.process-step:last-child::before { display: none; }
.process-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-card);
  z-index: 1;
}
.process-step-content h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; margin-top: 6px; }
.process-step-content p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* =========================================================
   BEFORE / AFTER PAGE
   ========================================================= */
.ba-page {
  padding: 80px 80px 120px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.ba-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}

/* =========================================================
   PARALLAX / HORIZONTAL SCROLL
   ========================================================= */
.parallax-wrap { overflow: hidden; }
.parallax-img  { will-change: transform; }
.h-scroll-section { overflow: hidden; }
.h-scroll-track { display: flex; will-change: transform; }
.h-scroll-track .service-card { flex-shrink: 0; width: 340px; }

/* =========================================================
   PAGE TRANSITION OVERLAY
   ========================================================= */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9990;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-img { aspect-ratio: 16/9; }
  .single-service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { position: static; }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 768px) {
  /* Mobile nav — show hamburger, hide desktop links */
  .nav-top {
    width: calc(100% - 32px);
    top: 16px;
    padding: 0 16px;
    height: 56px;
    grid-template-columns: 1fr auto;
  }
  .nav-top-links { display: none; }
  .nav-top-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang-switcher { display: block; }

  /* Hero — ensure canvas fills on mobile */
  .hero-scroll-section { height: 280vh; }
  .hero-sticky { height: 100dvh; }
  .hero-canvas { width: 100%; height: 100dvh; }

  /* Section paddings */
  .services-preview      { padding: 80px 24px; }
  .stats-section         { padding: 60px 24px; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-preview         { padding: 80px 24px; gap: 40px; }
  .ba-section            { padding: 80px 24px; }
  .ba-grid               { grid-template-columns: 1fr; }
  .cta-banner            { padding: 60px 24px; }
  .cta-banner-inner      { padding: 48px 28px; border-radius: 24px; }
  footer                 { padding: 48px 24px 24px; }
  .footer-grid           { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-statement { font-size: clamp(56px, 20vw, 100px); margin-bottom: 40px; }
  .page-hero             { padding: 100px 24px 80px; }
  .about-story           { padding: 80px 24px; }
  .about-values          { padding: 60px 24px; }
  .services-page         { padding: 60px 24px 80px; }
  .services-grid         { grid-template-columns: 1fr; }
  .services-page-grid    { grid-template-columns: 1fr; gap: 1px; }
  .single-service-body   { padding: 60px 24px 80px; }
  .ba-page               { padding: 60px 24px 80px; }
  .testimonials-section  { padding: 80px 24px; }
  .testimonials-grid     { grid-template-columns: 1fr; }

  /* Hero words on mobile — pull inward toward the car */
  .hw-1 { font-size: clamp(56px, 18vw, 100px); top: 18%; }
  .hw-2 { font-size: clamp(56px, 18vw, 100px); bottom: 14%; }
  .hw-3, .hw-4, .hw-5 { display: none; }

  /* Show labels between GREY/car and car/GARAGE */
  .hw-7 {
    display: flex;
    top: 36%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  .hw-6 {
    display: flex;
    align-items: center;
    gap: 10px;
    bottom: auto;
    top: 62%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hw-6::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
  }

  .hero-cta { bottom: 14%; }

  /* Cursor: hide on touch */
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .stats-section { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .ba-grid           { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

/* =========================================================
   UTILITY
   ========================================================= */
.container  { max-width: 1400px; margin: 0 auto; }
.text-red   { color: var(--red); }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider    { height: 1px; background: var(--border); }

.shimmer {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-3) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page {
  padding: 100px 80px 120px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  margin-top: 64px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s;
}
.contact-info-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16); }
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-dim);
  border-radius: 12px;
  color: var(--red);
}
.contact-info-title { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5; }
.contact-info-value a { color: inherit; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--red); }

/* Booking form glass panel */
.contact-form-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px) saturate(120%) brightness(1.04);
  -webkit-backdrop-filter: blur(32px) saturate(120%) brightness(1.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.45), inset 0 2px 0 rgba(255,255,255,0.45);
  position: sticky;
  top: 32px;
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form-sub { font-size: 13px; color: var(--text-2); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(220,38,38,0.6);
  background: rgba(255,255,255,0.09);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #111; color: #eee; }

.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.service-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
}
.service-check-item input[type="checkbox"] { accent-color: var(--red); width: 14px; height: 14px; flex-shrink: 0; }
.service-check-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.service-check-item span { font-size: 12px; font-weight: 500; color: var(--text-2); }

.form-submit-wrap { margin-top: 8px; }
.btn-full { width: 100%; justify-content: center; padding: 16px 32px; font-size: 12px; }

@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; } .contact-form-panel { position: static; } }
@media (max-width: 768px) {
  .contact-page { padding: 100px 24px 100px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-panel { padding: 32px 24px; }
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
