/* ============================================
   EDUARDO'S AUTO BODY — STYLES v2
   Dark luxury automotive theme
   Agency-grade conversion-optimized
   ============================================ */

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

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-glow: rgba(204, 0, 0, 0.35);
  --dark: #0A0A0A;
  --dark-card: #141414;
  --dark-surface: #111111;
  --gold: #FFD700;
  --gold-dark: #B8960F;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-300: #AAAAAA;
  --gray-500: #666666;
  --gray-700: #333333;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --banner-height: 44px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.banner-visible {
  padding-top: var(--banner-height);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  pointer-events: none;
}

.loader-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  animation: loaderProgress 1.5s var(--ease-out) forwards;
}

@keyframes loaderProgress {
  0% { width: 0; }
  60% { width: 85%; }
  100% { width: 100%; }
}

.page-loader.loaded {
  opacity: 0;
  transition: opacity 0.4s;
}

/* ---------- STICKY TOP BANNER ---------- */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--banner-height);
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  z-index: 1100;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-out);
}

.top-banner.hidden {
  transform: translateY(-100%);
}

.top-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.top-banner p {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.top-banner a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

.banner-icon {
  font-style: normal;
}

.banner-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  flex-shrink: 0;
}

.banner-close:hover {
  opacity: 1;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}





.btn-lg {
  padding: 20px 52px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-glow {
  animation: btnGlow 2.5s infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 20px var(--red-glow), 0 0 40px rgba(204, 0, 0, 0.15); }
  50% { box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(204, 0, 0, 0.25); }
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 20px auto 0;
}

/* Section separator */
.section-sep {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.3;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.banner-hidden {
  top: 0;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
}

.logo-line1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: none;
}

.logo-line2 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all 0.35s var(--ease-out);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 24px;
  border-radius: 4px;
  margin-left: 8px;
  transition: all 0.35s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  will-change: transform;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.7) 75%, rgba(10,10,10,1) 100%),
    linear-gradient(to right, rgba(10,10,10,0.5) 0%, transparent 50%, rgba(10,10,10,0.5) 100%);
}

/* Hero particles (pure CSS) */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly linear infinite;
}

.hero-particles span:nth-child(1)  { left:  5%; animation-duration: 8s;  animation-delay: 0s;   }
.hero-particles span:nth-child(2)  { left: 15%; animation-duration: 10s; animation-delay: 1s;   }
.hero-particles span:nth-child(3)  { left: 25%; animation-duration: 7s;  animation-delay: 2s;   }
.hero-particles span:nth-child(4)  { left: 35%; animation-duration: 9s;  animation-delay: 0.5s; }
.hero-particles span:nth-child(5)  { left: 45%; animation-duration: 11s; animation-delay: 3s;   }
.hero-particles span:nth-child(6)  { left: 55%; animation-duration: 8s;  animation-delay: 1.5s; }
.hero-particles span:nth-child(7)  { left: 65%; animation-duration: 10s; animation-delay: 4s;   }
.hero-particles span:nth-child(8)  { left: 75%; animation-duration: 7s;  animation-delay: 2.5s; }
.hero-particles span:nth-child(9)  { left: 85%; animation-duration: 9s;  animation-delay: 0.8s; }
.hero-particles span:nth-child(10) { left: 95%; animation-duration: 12s; animation-delay: 3.5s; }
.hero-particles span:nth-child(11) { left: 10%; animation-duration: 9s;  animation-delay: 5s;   width: 2px; height: 2px; background: rgba(255,100,0,0.8); }
.hero-particles span:nth-child(12) { left: 30%; animation-duration: 11s; animation-delay: 6s;   width: 2px; height: 2px; background: rgba(255,100,0,0.8); }
.hero-particles span:nth-child(13) { left: 50%; animation-duration: 8s;  animation-delay: 4.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(14) { left: 70%; animation-duration: 10s; animation-delay: 7s;   width: 2px; height: 2px; background: rgba(255,100,0,0.8); }
.hero-particles span:nth-child(15) { left: 90%; animation-duration: 7s;  animation-delay: 5.5s; width: 4px; height: 4px; }

@keyframes particleFly {
  0%   { bottom: -5%; opacity: 0; transform: translateX(0); }
  10%  { opacity: 0.8; }
  50%  { opacity: 0.4; transform: translateX(30px); }
  90%  { opacity: 0.1; }
  100% { bottom: 105%; opacity: 0; transform: translateX(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 900px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social proof tooltip */
.social-proof-tooltip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 20px;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.proof-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: proofPulse 2s infinite;
}

@keyframes proofPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.trust-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.trust-badge--gold {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
}

.trust-badge--gold:hover {
  background: rgba(255, 215, 0, 0.15);
}

.trust-badge i {
  font-size: 1rem;
}

.trust-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.trust-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.trust-pill i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.01) 80px,
      rgba(255,255,255,0.01) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.01) 80px,
      rgba(255,255,255,0.01) 81px
    );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 48px 28px 36px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--red-glow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Most Popular badge */
.service-popular-badge {
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.1);
  border: 1px solid rgba(204, 0, 0, 0.2);
  transition: all 0.4s var(--ease-out);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--red);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Before/After label */
.service-ba-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(204, 0, 0, 0.1);
  border: 1px solid rgba(204, 0, 0, 0.2);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

.service-ba-label i {
  font-size: 0.55rem;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  padding: 100px 0;
  background: var(--dark-surface);
  position: relative;
}

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

.why-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.2);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.1);
  border: 2px solid rgba(204, 0, 0, 0.25);
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--red);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ---------- ANIMATED STATS COUNTER ---------- */
.stats-counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding: 48px 32px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.stats-counter-item {
  text-align: center;
}

.stats-counter-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stats-counter-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
  max-width: 260px;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: rgba(204, 0, 0, 0.3);
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  transform: rotate(45deg);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 100px 0;
  background: var(--dark-surface);
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--red);
  border-radius: 4px;
  transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay span {
  background: var(--red);
}

.gallery-cta {
  text-align: center;
}

/* ---------- TESTIMONIALS / REVIEWS CAROUSEL ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 28px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.reviews-badge i.fab {
  font-size: 1.1rem;
}

.reviews-badge-stars {
  display: inline-flex;
  gap: 2px;
}

.reviews-badge-stars i {
  font-size: 0.7rem;
  color: var(--gold);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.review-quote {
  margin-bottom: 12px;
}

.review-quote i {
  font-size: 1.8rem;
  color: var(--red);
  opacity: 0.7;
}

.review-stars {
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: var(--gold);
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.review-author span {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-author span i {
  font-size: 0.8rem;
}

/* Carousel arrows */
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.testimonials-cta {
  text-align: center;
}

/* ---------- INSTAGRAM SECTION ---------- */
.instagram-section {
  padding: 100px 0;
  background: var(--dark-surface);
}

.instagram-handle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin-top: 12px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  justify-items: center;
}

.instagram-reel {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.instagram-reel iframe {
  width: 100%;
  height: 440px;
  display: block;
}

.instagram-cta {
  text-align: center;
}

/* ---------- LOCATIONS ---------- */
.locations {
  padding: 100px 0;
  background: var(--dark);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.location-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.4s var(--ease-out);
}

.location-card:hover {
  border-color: rgba(204, 0, 0, 0.2);
  transform: translateY(-4px);
}

.location-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
}

.location-map {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-detail i {
  color: var(--red);
  font-size: 1rem;
  margin-top: 4px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.location-detail span,
.location-detail a {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.location-detail a {
  transition: color 0.3s;
}

.location-detail a:hover {
  color: var(--red);
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(204, 0, 0, 0.15) 0%, rgba(10, 10, 10, 0.9) 100%),
    var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 40px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-location h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-location p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-location a {
  font-size: 0.88rem;
  color: var(--gray-300);
  transition: color 0.3s;
}

.footer-location a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 1px;
}

/* ---------- FLOATING BUTTONS ---------- */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: all 0.3s var(--ease-out);
  animation: pulse-ring 2.5s infinite;
}

.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px var(--red-glow);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 4px 20px var(--red-glow), 0 0 0 0 rgba(204, 0, 0, 0.4); }
  70% { box-shadow: 0 4px 20px var(--red-glow), 0 0 0 16px rgba(204, 0, 0, 0); }
  100% { box-shadow: 0 4px 20px var(--red-glow), 0 0 0 0 rgba(204, 0, 0, 0); }
}





/* ---------- SCROLL TO TOP ---------- */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  z-index: 1;
}

.lightbox-close:hover {
  color: var(--red);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1;
}

.lightbox-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.21s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.28s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.42s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.49s; }
.services-grid .service-card:nth-child(9) { transition-delay: 0.56s; }

.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.12s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.24s; }

.steps .step:nth-child(1) { transition-delay: 0s; }
.steps .step:nth-child(2) { transition-delay: 0.12s; }
.steps .step:nth-child(3) { transition-delay: 0.24s; }
.steps .step:nth-child(4) { transition-delay: 0.36s; }

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.4s; }

.instagram-grid .instagram-reel:nth-child(1) { transition-delay: 0s; }
.instagram-grid .instagram-reel:nth-child(2) { transition-delay: 0.1s; }
.instagram-grid .instagram-reel:nth-child(3) { transition-delay: 0.2s; }
.instagram-grid .instagram-reel:nth-child(4) { transition-delay: 0.3s; }
.instagram-grid .instagram-reel:nth-child(5) { transition-delay: 0.4s; }
.instagram-grid .instagram-reel:nth-child(6) { transition-delay: 0.5s; }

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-counter {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 calc(50% - 16px);
  }
}

/* Tablet - steps + locations */
@media (max-width: 900px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step {
    max-width: 350px;
  }

  .step-connector {
    display: none;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 4px;
    transition: right 0.4s var(--ease-out);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 12px 0;
  }

  .nav-link::after {
    bottom: 8px;
    left: 0;
    transform: none;
  }

  .nav-link:hover::after {
    width: 40px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .top-banner p {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    letter-spacing: 2px;
  }

  .hero-stats {
    bottom: 60px;
    gap: 16px;
    padding: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 36px 24px 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card:last-child {
    max-width: none;
  }

  .why-card {
    padding: 36px 24px;
  }

  .stats-counter {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px 20px;
    margin-top: 48px;
  }

  .stats-counter-number {
    font-size: 2rem;
  }

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

  .services,
  .why-us,
  .how-it-works,
  .testimonials,
  .gallery,
  .instagram-section,
  .locations,
  .cta-banner {
    padding: 72px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Review carousel: 1 card on mobile */
  .review-card {
    flex: 0 0 calc(100% - 16px);
    min-height: auto;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .instagram-reel {
    min-width: 280px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .location-card {
    padding: 28px 24px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-content h2 {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .floating-call {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
  }

  

  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .trust-pills {
    gap: 8px;
  }

  .trust-pill {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  .reviews-badge {
    font-size: 0.72rem;
    padding: 10px 18px;
  }

  .scroll-top-btn {
    left: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Map placeholder */
.map-placeholder {
  background: #1a1a1a;
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.map-pin-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 12px;
}
.map-address {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== MOBILE READABILITY IMPROVEMENTS ===== */
@media (max-width: 768px) {

  /* Base font size bump */
  body { font-size: 16px; }

  /* Hero */
  .hero-headline { font-size: 2.2rem; line-height: 1.15; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.7rem; }

  /* Section titles */
  .section-title { font-size: 1.8rem; }
  .section-tag { font-size: 0.75rem; letter-spacing: 2px; }

  /* Services cards */
  .service-card { padding: 28px 20px; }
  .service-title { font-size: 1.1rem; }
  .service-desc { font-size: 0.95rem; line-height: 1.65; }
  .service-icon { font-size: 2rem; margin-bottom: 14px; }

  /* Why Choose Us */
  .why-card { padding: 28px 20px; }
  .why-title { font-size: 1.05rem; }
  .why-desc { font-size: 0.95rem; line-height: 1.65; }
  .stat-big { font-size: 2.4rem; }
  .stat-big-label { font-size: 0.85rem; }

  /* How It Works */
  .step-title { font-size: 1rem; }
  .step-desc { font-size: 0.9rem; }

  /* Reviews */
  .review-text { font-size: 0.95rem; line-height: 1.7; }
  .reviewer-name { font-size: 0.95rem; }

  /* Location cards */
  .location-detail span,
  .location-detail a { font-size: 0.95rem; }
  .location-badge { font-size: 0.8rem; padding: 6px 14px; }

  /* Buttons */
  .btn { font-size: 0.95rem; padding: 12px 22px; }
  .btn-sm { font-size: 0.85rem; padding: 9px 16px; }
  .btn-lg { font-size: 1.05rem; padding: 16px 28px; }

  /* Trust strip */
  .trust-logo-item { font-size: 0.85rem; padding: 8px 14px; }

  /* CTA banner */
  .cta-content h2 { font-size: 1.8rem; }
  .cta-content p { font-size: 1rem; }

  /* Footer */
  .footer-tagline { font-size: 0.95rem; }
  .footer-links a, .footer-contact-item { font-size: 0.95rem; }

  /* Sticky top banner */
  .top-banner { font-size: 0.8rem; padding: 8px 12px; }
}

@media (max-width: 390px) {
  .hero-headline { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
}
