/* ============================================================
   NORDEX AUTOSERVICES — SHARED STYLES
   Dark mode | Glassmorphism | GSAP-ready
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Barlow:wght@300;400;500;600&family=Cairo:wght@300;400;600;700;800&display=swap');

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

:root {
  --black:          #000000;
  --black-soft:     #080808;
  --red:            #C41010;
  --red-bright:     #E01515;
  --red-glow:       rgba(196, 16, 16, 0.35);
  --silver:         #B0B0BC;
  --silver-light:   #D8D8E0;
  --white:          #FFFFFF;
  --white-dim:      rgba(255,255,255,0.82);
  --glass-bg:       rgba(255,255,255,0.04);
  --glass-bg-hover: rgba(255,255,255,0.07);
  --glass-border:   rgba(255,255,255,0.08);
  --glass-border-hover: rgba(196,16,16,0.5);

  --font-display:   'Rajdhani', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --font-ar:        'Cairo', sans-serif;

  --nav-h:          80px;
  --section-pad:    120px;
  --section-pad-sm: 70px;

  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: auto; background: var(--black); color: var(--white); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* ---- Loader ---------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo { width: 160px; opacity: 0.9; }

.loader-bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff4444);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}
.loader-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--silver);
  text-transform: uppercase;
}

/* ---- Navigation ------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,16,16,0.3);
}

.nav-logo { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-lang {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-lang:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow);
}
.nav-cta svg { width: 16px; height: 16px; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- Hero Scroll Container (desktop frame-scrub) --------- */
#hero-scroll-container {
  height: 200vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ---- Hero Section ---------------------------------------- */
#hero {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;       /* high quality — no cropping */
  object-position: center;
  background: #000;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0.92) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  padding: 0 64px;
  width: 100%;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
}
.hero-headline .word-inner {
  display: inline-block;
  transform: translateY(100%);
}

.hero-agitate {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 12px;
}

.hero-solution {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.4);
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: arrowBounce 1.6s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 0.8; }
}

/* ---- Marquee --------------------------------------------- */
.marquee-section {
  overflow: hidden;
  background: var(--black);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
  will-change: transform;
}
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  padding-right: 60px;
  flex-shrink: 0;
}
.marquee-text .accent { color: var(--red); }

/* ---- Section Shared -------------------------------------- */
.section {
  padding: var(--section-pad) 80px;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  max-width: 560px;
}

.section-header {
  margin-bottom: 64px;
}

/* ---- Red Divider ----------------------------------------- */
.red-line {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
  display: block;
}

/* ---- Services Section ------------------------------------ */
#services {
  background: var(--black);
  padding: var(--section-pad) 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(196,16,16,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,16,16,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--red);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 12px;
}

.service-body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ---- USP Scroll Container (desktop scrub) ---------------- */
#usp-scroll-container {
  height: 300vh;
}

.usp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ---- USP Section ----------------------------------------- */
#usp {
  position: relative;
  height: 100%;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#usp .usp-inner {
  width: 100%;
  padding: clamp(28px, 4.5vh, 52px) 80px;
}

.usp-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.usp-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.usp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 1;
}

.usp-inner {
  position: relative;
  z-index: 2;
}

.usp-intro {
  max-width: 680px;
  margin-bottom: 64px;
}

.usp-before {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-style: italic;
}
.usp-after {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--white-dim);
  margin-bottom: 20px;
}
.usp-bridge {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.usp-bridge .accent { color: var(--red); }

.usp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usp-pillar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s ease;
}
.usp-pillar:hover { border-color: rgba(196,16,16,0.3); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.pillar-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ---- Stats Section --------------------------------------- */
#stats {
  background: var(--black-soft);
  padding: var(--section-pad) 80px;
  border-top: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}

.stats-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }

.stat-value-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* ---- Gallery Section ------------------------------------- */
#gallery {
  background: var(--black);
  padding: var(--section-pad) 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-card:hover img { transform: scale(1.04); }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  pointer-events: none;
  transition: background 0.3s ease;
}
.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(196,16,16,0.08) 100%);
  box-shadow: inset 0 0 0 1.5px rgba(196,16,16,0.4);
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.gallery-caption-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.gallery-caption-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ---- Spare Parts Section --------------------------------- */
#parts {
  background: var(--black-soft);
  padding: var(--section-pad) 80px;
  position: relative;
}
#parts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.parts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.parts-content { }

.parts-hook {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.parts-hook .accent { color: var(--red); }

.parts-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-bottom: 40px;
}

.parts-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parts-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.step-text strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.parts-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 40px;
}
.parts-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* Parts card (right side) */
.parts-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.parts-card-icon {
  width: 64px;
  height: 64px;
  color: var(--red);
  margin-bottom: 8px;
}

.parts-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-light);
}

.parts-card-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  justify-content: center;
}
.whatsapp-link:hover {
  background: #20c05c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}
.whatsapp-link svg { width: 22px; height: 22px; }

/* ---- Location Section ------------------------------------ */
#location {
  background: var(--black);
  padding: var(--section-pad) 80px;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 3;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1);
}

.location-info { display: flex; flex-direction: column; gap: 40px; }

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.location-address svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.address-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white-dim);
  line-height: 1.6;
}
.address-text a {
  color: var(--silver);
  font-size: 0.82rem;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: color 0.2s ease;
}
.address-text a:hover { color: var(--white); }

.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}
.hours-time {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-align: right;
}
.hours-time.closed { color: var(--red); }

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  transition: color 0.2s ease;
}
.contact-link svg { width: 18px; height: 18px; color: var(--red); }
.contact-link:hover { color: var(--white); }

/* ---- Final CTA Banner ------------------------------------ */
#cta-banner {
  background: var(--black);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,16,16,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.cta-tagline .italic {
  font-style: italic;
  color: var(--silver-light);
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- Footer ---------------------------------------------- */
footer {
  background: var(--black);
  padding: 56px 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-logo { height: 40px; width: auto; }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-link:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(196,16,16,0.1);
}
.social-link svg { width: 18px; height: 18px; }

.footer-lang {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-lang:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}
.footer-legal strong { color: rgba(255,255,255,0.4); font-weight: 500; }

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ---- Floating WhatsApp ----------------------------------- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  opacity: 0;
  transform: scale(0.7) translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.3s ease;
  pointer-events: none;
}
.float-wa.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.float-wa:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  transform: scale(1.1) translateY(-2px);
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---- Custom Cursor --------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  top: 0;
  left: 0;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
  will-change: transform;
}
.cursor-dot.cursor-hover {
  width: 16px;
  height: 16px;
  background: var(--red-bright);
}
@media (hover: none) { .cursor-dot { display: none; } }

/* ---- GSAP Animation Initial States ----------------------- */
.gsap-fade-up { opacity: 0; transform: translateY(40px); }
.gsap-fade-left { opacity: 0; transform: translateX(-40px); }
.gsap-fade-right { opacity: 0; transform: translateX(40px); }
.gsap-scale-up { opacity: 0; transform: scale(0.9); }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-pillars { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .parts-inner { grid-template-columns: 1fr; gap: 48px; }
  .location-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: var(--section-pad-sm); --nav-h: 68px; }

  /* Nav */
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 16px; min-height: 44px; }

  /* Sections — centered on mobile */
  .section { padding: 64px 20px; }
  #services, #stats, #gallery, #parts, #location, #cta-banner, footer { padding-left: 20px; padding-right: 20px; }
  .section-header { margin-bottom: 36px; text-align: center; }
  .section-heading { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .section-sub { text-align: center; margin: 0 auto; }
  .red-line { margin: 0 auto 24px; }

  /* Hero — no sticky, centered */
  #hero-scroll-container { height: 100vh; }
  .hero-sticky { position: relative; top: auto; }
  #hero { height: 100vh; overflow: hidden; }
  .hero-content { padding: 0 24px; align-items: center; text-align: center; }
  .hero-headline { font-size: clamp(2.1rem, 9vw, 3.4rem); line-height: 1.0; }
  .hero-agitate, .hero-solution { font-size: 0.95rem; max-width: 100%; text-align: center; }
  .hero-cta-wrap { flex-direction: column; align-items: center; gap: 14px; width: 100%; }
  .btn-primary { width: 100%; justify-content: center; padding: 16px 24px; min-height: 52px; font-size: 0.82rem; }
  .btn-secondary { display: flex; align-items: center; justify-content: center; min-height: 44px; width: 100%; }

  /* Services — centered */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 28px 22px; text-align: center; }
  .service-icon { margin: 0 auto 18px; }

  /* USP — no sticky, normal flow, centered */
  #usp-scroll-container { height: auto; }
  .usp-sticky { position: relative; top: auto; }
  #usp { height: auto; display: block; padding: 64px 20px; }
  #usp .usp-inner { padding: 0; }
  .usp-intro { text-align: center; }
  .usp-before, .usp-after, .usp-bridge { text-align: center; }
  .usp-pillars { grid-template-columns: 1fr; gap: 14px; }
  .usp-pillar { padding: 28px 22px; text-align: center; }

  /* Stats — centered */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 16px; text-align: center; }
  .stat-value-wrap { justify-content: center; }
  #stats { padding: 64px 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-card { aspect-ratio: 16 / 9; }

  /* Parts — centered */
  .parts-hook { font-size: clamp(1.7rem, 7vw, 2.4rem); text-align: center; }
  .parts-body { text-align: center; }
  .parts-card { padding: 32px 22px; }
  .parts-cta-wrap { align-items: stretch; }
  .whatsapp-link { min-height: 52px; font-size: 0.82rem; }

  /* Location */
  .map-container { aspect-ratio: 16 / 9; }
  .hours-row { padding: 12px 0; }

  /* CTA Banner — centered */
  #cta-banner { padding: 72px 20px; }
  .cta-tagline { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn-primary { width: 100%; justify-content: center; }
  .cta-actions .btn-secondary { text-align: center; display: flex; justify-content: center; }

  /* Footer — centered */
  .footer-top { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
  .footer-socials { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .social-link { min-width: 44px; min-height: 44px; }

  /* Floating WA */
  .float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-headline { font-size: clamp(1.9rem, 9.5vw, 2.8rem); }
  .section-heading { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}
