/* ============================================
   OKC MOBILE AUTO — SITE STYLES
   Industrial-Automotive Aesthetic
   Fonts: Teko (display) + Outfit (body)
   Navy / Red / White palette
   ============================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy: #0d1321;
  --navy-mid: #1a1f3d;
  --navy-light: #252b50;
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-glow: rgba(211, 47, 47, 0.35);
  --red-subtle: rgba(211, 47, 47, 0.08);
  --white: #ffffff;
  --off-white: #f4f5f7;
  --gray-100: #e8eaed;
  --gray-300: #b0b3b8;
  --gray-500: #6b7280;
  --gray-800: #1f2937;
  --black: #000000;
  --max-width: 1140px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(211, 47, 47, 0.18), 0 0 80px rgba(211, 47, 47, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- BASE ---------- */
body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 36px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}
.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: var(--white);
  border-width: 2px;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
}
.btn--red:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
}
.btn--sm { padding: 10px 22px; font-size: 15px; }
.btn--full { width: 100%; }

/* ---------- TEXT UTILITIES ---------- */
.text-accent { color: var(--red); }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* .fade-up — used on battery page and anywhere else */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.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; }


/* ==========================================================
   SITE HEADER
   ========================================================== */
.site-header {
  background: rgba(13, 19, 33, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.site-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  gap: 20px;
}

/* ---- Logo ---- */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-header__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.3s;
}
.site-header__logo:hover img { transform: scale(1.05); }

.site-header__logo-text {
  display: flex;
  flex-direction: column;
}
.site-header__name {
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.site-header__tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  color: var(--gray-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Navigation ---- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.25s;
  padding: 8px 0;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.site-nav__link:hover { color: var(--red); }
.site-nav__link:hover::after { width: 100%; }
.site-nav__arrow {
  font-size: 10px;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.25s;
}

/* ---- Dropdown ---- */
.site-nav__dropdown {
  position: relative;
}
.site-nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  z-index: 100;
}
.site-nav__dropdown:hover .site-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-nav__dropdown:hover .site-nav__arrow {
  transform: rotate(180deg);
}
.site-nav__sub li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav__sub li a:hover {
  color: var(--white);
  background: rgba(211, 47, 47, 0.12);
}

/* ---- CTA Button ---- */
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Teko', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  padding: 8px 22px;
  border-radius: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
  margin-left: 12px;
}
.site-header__cta:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* ---- Hamburger ---- */
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.site-header__burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.site-header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ==========================================================
   SECTIONS — BASE
   ========================================================== */
.section { padding: 100px 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }
.section--red {
  background: var(--red);
  color: var(--white);
}

/* ---- Section Header ---- */
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--red-subtle);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section--dark .section__label {
  color: var(--red);
  background: rgba(211, 47, 47, 0.15);
}
.section__heading {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.section__heading--white { color: var(--white); }
.section__text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-top: 16px;
}

/* Section Tag — red pill (battery page style) */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}


/* ==========================================================
   HERO (HOMEPAGE)
   ========================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 19, 33, 0.92) 0%,
    rgba(26, 31, 61, 0.82) 50%,
    rgba(13, 19, 33, 0.75) 100%
  );
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 80px 0;
}
.hero__content { flex: 1; }
.hero__badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 6px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: 'Teko', sans-serif;
  font-size: 68px;
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero__title span { color: var(--red); }
.hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 12px;
}
.hero__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__photo {
  flex-shrink: 0;
}
.hero__photo img {
  width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: hero-float 4s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}
.about__image {
  width: 280px; height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  transition: transform 0.5s var(--ease);
}
.about__image:hover { transform: scale(1.03); }
.about__text p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 14px;
}
.about__text strong { color: var(--red); font-weight: 700; }


/* ==========================================================
   FEATURE CARDS
   ========================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.feature-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--red-glow);
  transition: transform 0.4s var(--ease);
}
.feature-card:hover .feature-card__icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}


/* ==========================================================
   IMAGE BANNER
   ========================================================== */
.image-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.image-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.image-banner:hover img { transform: scale(1.05); }
.image-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 19, 33, 0.15), rgba(13, 19, 33, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 50px;
}
.image-banner__overlay p {
  font-family: 'Teko', sans-serif;
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}


/* ==========================================================
   TEXT SECTIONS
   ========================================================== */
.text-section {
  padding: 80px 24px;
}
.text-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.text-section__inner h2 {
  font-family: 'Teko', sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--navy);
}
.text-section__inner p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 16px;
}
.text-section__inner strong { color: var(--red); }


/* ==========================================================
   STEP CARDS (3 easy steps)
   ========================================================== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: 0 16px 40px rgba(211, 47, 47, 0.12);
}
.step-card__number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Teko', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--red-glow);
}
.step-card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.step-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}


/* ==========================================================
   BLOG CARDS
   ========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.blog-card__body { padding: 28px; }
.blog-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--navy);
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--red); }
.blog-card__meta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  justify-content: space-between;
}


/* ==========================================================
   QUALITY / SPLIT SECTIONS
   ========================================================== */
.quality__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.quality__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.quality__text p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.9;
}
.quality__text strong { color: var(--red); }


/* ==========================================================
   STATS
   ========================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.08);
}
.stat-card__number {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}
.stat-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}


/* ==========================================================
   CONTACT INFO SECTION
   ========================================================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.contact__col h3 {
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.contact__col p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 4px;
}
.contact__col a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
}
.contact__col a:hover { color: #ef5350; }
.contact__phone {
  font-family: 'Teko', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white) !important;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.contact__phone:hover { color: var(--red) !important; }


/* ==========================================================
   CONTACT FORM
   ========================================================== */
.section--form {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section--form::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.1), transparent 70%);
  pointer-events: none;
}
.form-wrapper {
  text-align: center;
}
.form-wrapper__sub {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  margin-bottom: 36px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  border: 2px solid var(--gray-100);
  color: var(--navy);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}
.form__input::placeholder { color: var(--gray-300); }
.form__input:focus {
  border-color: var(--red);
  background: var(--white);
}
/* Dark background form override */
.section--form .form__label,
.section--dark .form__label { color: rgba(255, 255, 255, 0.55); }
.section--form .form__input,
.section--dark .form__input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.section--form .form__input::placeholder,
.section--dark .form__input::placeholder { color: rgba(255, 255, 255, 0.3); }
.section--form .form__input:focus,
.section--dark .form__input:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.1);
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__select option { background: var(--white); color: var(--navy); }
.section--form .form__select option,
.section--dark .form__select option { background: var(--navy-mid); color: var(--white); }
.form__textarea { min-height: 120px; resize: vertical; }
/* ===== TERMS MODAL ===== */
.terms-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.terms-modal.is-open {
  display: flex;
}
.terms-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.terms-modal__box {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.terms-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-100);
}
.terms-modal__header h3 {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
}
.terms-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.terms-modal__close:hover { color: var(--red); }
.terms-modal__body {
  padding: 24px 28px;
  overflow-y: auto;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}
.terms-modal__body h4 {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 6px;
  text-transform: uppercase;
}
.terms-modal__body p {
  margin-bottom: 10px;
}

/* ===== BACK HOME LINK ===== */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.back-home:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(211,47,47,0.1);
}

/* ===== SERVICE AREA (ABOUT PAGE) ===== */
.svc-area {
  position: relative;
  padding: 100px 32px;
  overflow: hidden;
}
.svc-area__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}
.svc-area__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211,47,47,0.12), transparent 70%);
  pointer-events: none;
}
.svc-area__wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-area__header {
  text-align: center;
  margin-bottom: 40px;
}
.svc-area__header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.svc-area__header p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}
.svc-area__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.svc-area__city {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s;
  text-decoration: none;
}
.svc-area__city:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.3);
}
.svc-area__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-area__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.svc-area__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--red);
  transform: translateY(-4px);
}
.svc-area__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}
.svc-area__card h4 {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.svc-area__card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.svc-area__card a {
  color: var(--red);
  transition: color 0.2s;
}
.svc-area__card a:hover { color: #ff5252; }

@media (max-width: 768px) {
  .svc-area__info { grid-template-columns: 1fr 1fr; }
  .svc-area__header h2 { font-size: 36px; }
}
@media (max-width: 480px) {
  .svc-area__info { grid-template-columns: 1fr; }
}

/* ===== SIGNATURE PAD ===== */
.sig-pad {
  position: relative;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.sig-pad canvas {
  width: 100%;
  height: 160px;
  display: block;
  cursor: crosshair;
  touch-action: none;
}
.sig-pad__clear {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 5px 14px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.sig-pad__clear:hover { background: var(--red); }

.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 12px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  background: var(--off-white);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
.upload-box:hover {
  border-color: var(--red);
  background: var(--white);
}
.upload-box.has-file {
  border-color: #4caf50;
  border-style: solid;
  background: #f0faf0;
}
.upload-box__icon {
  font-size: 28px;
  line-height: 1;
}
.upload-box__text {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
}


/* ==========================================================
   SERVICES GRID
   ========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-card__link {
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.service-card__link:hover { color: var(--red-dark); }

/* Dark section service cards */
.section--dark .service-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section--dark .service-card h3 { color: var(--white); }
.section--dark .service-card p { color: var(--gray-300); }
.section--dark .service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: 0 16px 40px rgba(211, 47, 47, 0.1);
}


/* ==========================================================
   LOCATION HERO
   ========================================================== */
.location-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.location-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 19, 33, 0.92) 0%,
    rgba(26, 31, 61, 0.8) 50%,
    rgba(13, 19, 33, 0.85) 100%
  );
}
.location-hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  text-align: center;
}
.location-hero h1 {
  font-family: 'Teko', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}
.location-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.location-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================
   LOCATION INFO GRID
   ========================================================== */
.location-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.check-list {
  margin: 24px 0;
}
.check-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0 8px 32px;
  position: relative;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
/* Light-section check-list */
.section--light .check-list li,
.section--white .check-list li {
  color: var(--gray-800);
}
.trust-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-badges img {
  filter: brightness(0.9);
  transition: filter 0.3s;
}
.trust-badges img:hover { filter: brightness(1.1); }
.location-info__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.location-info__map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.08);
}
.location-info__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}


/* ==========================================================
   FAQ
   ========================================================== */
.faq__item {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.faq__question {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  padding-right: 30px;
  position: relative;
  list-style: none;
  color: var(--navy);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.3s;
}
details[open] .faq__question::after {
  content: '\2212';
}
.faq__answer {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-top: 12px;
  padding-right: 30px;
}


/* ==========================================================
   PAGE HERO (inner pages: about, services, legal, etc.)
   ========================================================== */
.page-hero {
  background: var(--navy);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-hero h1 {
  font-family: 'Teko', sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.page-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  position: relative;
}

/* ---- Page Content ---- */
.page-content {
  padding: 60px 0 90px;
}
.page-content h2 {
  font-family: 'Teko', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: var(--navy);
  line-height: 1.1;
}
.page-content h3 {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 28px 0 12px;
  color: var(--navy);
}
.page-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.page-content ul, .page-content ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.page-content li {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.page-content strong { color: var(--red); }
.page-content a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--red-glow);
  transition: color 0.2s;
}
.page-content a:hover { color: var(--red-dark); }

/* ---- Legal Content (privacy, terms, warranty) ---- */
.legal-content {
  padding: 60px 0 100px;
  counter-reset: legal-section;
}
.legal-content h2 {
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 48px 0 16px;
  padding: 20px 0 16px 24px;
  border-left: 4px solid var(--red);
  position: relative;
  letter-spacing: 1px;
  counter-increment: legal-section;
}
.legal-content h2::before {
  content: counter(legal-section, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 24px;
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(211, 47, 47, 0.08);
  line-height: 1;
}
.legal-content h3 {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
  padding-left: 24px;
  border-left: 4px solid var(--gray-100);
}
.legal-content h4 {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 8px;
}
.legal-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 2;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.legal-content > p:first-of-type {
  font-size: 17px;
  color: var(--gray-800);
  line-height: 1.9;
  padding: 24px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--red);
  margin-bottom: 24px;
}
.legal-content ul, .legal-content ol {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}
.legal-content li {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 10px;
  padding: 10px 16px 10px 40px;
  background: var(--off-white);
  border-radius: 6px;
  position: relative;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 18px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.legal-content ol { counter-reset: legal-list; }
.legal-content ol li {
  counter-increment: legal-list;
}
.legal-content ol li::before {
  content: counter(legal-list);
  width: auto;
  height: auto;
  background: none;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  top: 10px;
  left: 14px;
  border-radius: 0;
}
.legal-content a:not(.btn) {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(211, 47, 47, 0.3);
}
.legal-content a:not(.btn):hover {
  color: var(--red-dark);
  border-bottom-color: var(--red);
}
.legal-content strong {
  color: var(--navy);
  font-weight: 700;
}
.legal-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gray-100), transparent);
  margin: 40px 0;
}


/* ==========================================================
   BOOKING FORM CARD (Light Theme — service pages)
   ========================================================== */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.booking-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.booking-form-card__title {
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  color: var(--navy);
}
.form__label--dark {
  color: var(--gray-500) !important;
}
.form__input--light {
  background: var(--off-white) !important;
  border-color: var(--gray-100) !important;
  color: var(--navy) !important;
}
.form__input--light::placeholder {
  color: var(--gray-300) !important;
}
.form__input--light:focus {
  border-color: var(--red) !important;
  background: var(--white) !important;
}
.booking-form .form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
.booking-form .form__select option {
  background: var(--white);
  color: var(--navy);
}


/* ==========================================================
   SITE FOOTER
   ========================================================== */
.site-footer {
  background: var(--navy);
  position: relative;
}
.site-footer__accent {
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red));
}

.site-footer__wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 24px 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__col h4 {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.site-footer__col ul li {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 6px;
}
.site-footer__col ul a {
  color: var(--gray-300);
  transition: color 0.2s;
}
.site-footer__col ul a:hover { color: var(--red); }
.site-footer__col p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 4px;
}
.site-footer__col a {
  color: var(--red);
  transition: color 0.2s;
}
.site-footer__col a:hover { color: #ef5350; }

.site-footer__phone-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.site-footer__phone {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white) !important;
  display: block;
  transition: color 0.2s;
}
.site-footer__phone:hover { color: var(--red) !important; }

.site-footer__address {
  margin-top: 8px;
}
.site-footer__hours {
  margin-top: 8px;
  color: var(--gray-500);
}
.site-footer__areas {
  columns: 2;
  column-gap: 12px;
}
.site-footer__areas li {
  break-inside: avoid;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--gray-500);
}
.site-footer__legal {
  display: flex;
  gap: 20px;
}
.site-footer__legal a {
  color: var(--gray-500) !important;
  transition: color 0.2s;
}
.site-footer__legal a:hover { color: var(--red) !important; }
.site-footer__ghost {
  opacity: 0.3 !important;
  transition: opacity 0.2s;
}
.site-footer__ghost:hover { opacity: 0.7 !important; }


/* ==========================================================
   LEGACY FOOTER (old .footer classes — backward compat)
   ========================================================== */
.footer {
  background: var(--navy);
  padding: 50px 0 40px;
}
.footer__banner {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
  opacity: 0.75;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__heading {
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer__list li {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 6px;
}
.footer__list a {
  color: var(--gray-300);
  transition: color 0.2s;
}
.footer__list a:hover { color: var(--red); }
.footer__col p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer__col a {
  color: var(--red);
  transition: color 0.2s;
}
.footer__col a:hover { color: #ef5350; }
.footer__spacer { margin-top: 10px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--gray-500);
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--red); }


/* ==========================================================
   LEGACY HEADER (old .header / .nav classes — backward compat)
   ========================================================== */
.header {
  background: rgba(13, 19, 33, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.3s;
}
.header__logo:hover img { transform: scale(1.05); }
.header__title {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header__subtitle {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  color: var(--gray-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.header__hours {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--gray-300);
  text-align: center;
  flex-shrink: 0;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.25s;
  padding: 8px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger__line {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.active .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ==========================================================
   RESPONSIVE — 1024px
   ========================================================== */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quality__inner { grid-template-columns: 1fr; }
  .location-info-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}


/* ==========================================================
   RESPONSIVE — 768px (mobile nav)
   ========================================================== */
@media (max-width: 768px) {
  /* ---- Site header mobile ---- */
  .site-header__burger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(13, 19, 33, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .site-nav__link {
    font-size: 20px;
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 16px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-nav__link::after { display: none; }

  /* Dropdown in mobile */
  .site-nav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 8px 20px;
    min-width: 0;
  }
  .site-nav__sub li a {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-300);
  }

  .site-header__cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    padding: 14px 28px;
  }

  /* ---- Legacy header mobile ---- */
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 300px; height: 100vh;
    background: rgba(13, 19, 33, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 90px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav__link {
    font-size: 18px;
    padding: 14px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav__cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .header__inner { padding: 10px 16px; }
  .header__hours { display: none; }

  /* Force fade-up visible on mobile */
  .fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* ---- Buttons on mobile ---- */
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
  }
  .btn--outline {
    border-width: 2px;
    font-weight: 700;
  }
  .hero__ctas {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .location-hero__ctas {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  /* ---- Hero ---- */
  .hero { min-height: auto; padding: 40px 0 24px; }
  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
  }
  .hero__title { font-size: 38px; }
  .hero__sub { font-size: 16px; margin-bottom: 8px; }
  .hero__desc { font-size: 14px; max-width: 100%; margin-bottom: 16px; }
  .hero__ctas { justify-content: center; flex-direction: column; align-items: center; }
  .hero__photo img { width: 240px; border-radius: 12px; }

  /* ---- Sections — TIGHT on mobile ---- */
  .section { padding: 40px 0; }
  .section--form { padding: 40px 0; }
  .section__heading { font-size: 28px; margin-bottom: 8px; }
  .section__header { margin-bottom: 20px; }
  .section__text { font-size: 14px; margin-top: 8px; }
  .section-tag { font-size: 10px; padding: 5px 12px; margin-bottom: 10px; }

  .about__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .about__image { margin: 0 auto; width: 180px; height: 180px; }
  .about__text p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }
  .feature-card h3 { font-size: 18px; }
  .feature-card p { font-size: 13px; }

  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 24px 18px; }

  .steps__grid { grid-template-columns: 1fr !important; gap: 12px; }
  .step-card { padding: 28px 18px; }
  .step-card__number { width: 50px; height: 50px; font-size: 22px; }
  .step-card h3 { font-size: 18px; }
  .step-card p { font-size: 13px; }

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

  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { padding: 18px 14px; }
  .stat-card__number { font-size: 15px; }
  .stat-card p { font-size: 12px; }

  .contact__inner { grid-template-columns: 1fr; gap: 20px; }
  .contact__col { padding: 0; }
  .contact__col h3 { font-size: 18px; margin-bottom: 8px; }
  .contact__col p { font-size: 13px; }
  .contact__phone { font-size: 20px; }

  .quality__inner { grid-template-columns: 1fr; gap: 20px; }
  .quality__image { width: 100%; max-width: 100%; border-radius: 8px; }
  .quality__text p { font-size: 14px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .site-footer__col h4 { font-size: 16px; margin-bottom: 10px; }
  .site-footer__col li { font-size: 13px; }
  .site-footer { padding: 40px 0 20px; }

  .image-banner { height: 180px; }
  .image-banner__overlay p { font-size: 16px; }

  .form__row { grid-template-columns: 1fr !important; }
  .form-wrapper { padding: 28px 16px; }

  .location-hero { padding: 50px 0 30px; }
  .location-hero h1 { font-size: 28px; }
  .location-hero__sub { font-size: 14px; }
  .location-hero__ctas { flex-direction: column; align-items: center; }
  .location-hero__ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .location-info-grid { grid-template-columns: 1fr; gap: 20px; }
  .location-info__map { height: 250px; }

  .page-hero h1 { font-size: 30px; }
  .page-hero { padding: 50px 16px 30px; }

  .site-footer__bottom { flex-direction: column; text-align: center; gap: 10px; font-size: 12px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .site-footer__areas { columns: 2; }

  /* Service area (about page) */
  .svc-area { padding: 50px 16px; }
  .svc-area__info { grid-template-columns: 1fr 1fr; gap: 10px; }
  .svc-area__header h2 { font-size: 28px; }
  .svc-area__cities { gap: 6px; }
  .svc-area__city { font-size: 11px; padding: 5px 12px; }
  .svc-area__card { padding: 20px 16px; }

  /* Legal pages */
  .legal-content { padding: 30px 0 50px; }
  .legal-content h2 { font-size: 20px; margin: 30px 0 12px; padding: 16px 0 12px 18px; }
  .legal-content h2::before { font-size: 32px; left: 18px; }
  .legal-content > p:first-of-type { font-size: 14px; padding: 14px; }
  .legal-content p { font-size: 14px; }
  .legal-content li { padding: 8px 12px 8px 32px; font-size: 14px; }

  /* Upload boxes */
  .upload-box { padding: 14px 8px; }
  .upload-box__icon { font-size: 22px; }
  .upload-box__text { font-size: 10px; }
}


/* ==========================================================
   RESPONSIVE — 480px
   ========================================================== */
@media (max-width: 480px) {
  .hero__title { font-size: 34px; }
  .hero__photo img { width: 100%; max-width: 280px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .section__heading { font-size: 28px; }
  .location-hero h1 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .site-header__name { font-size: 16px; }
  .site-header__tagline { display: none; }
  .site-header__cta { font-size: 13px; padding: 8px 14px; }
  .stat-card { padding: 20px 16px; }
  .step-card { padding: 28px 20px; }
  .feature-card { padding: 24px 20px; }
  .service-card { padding: 28px 20px; }
  .container { padding: 0 16px; }
  .container--narrow { padding: 0 16px; }
}
