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

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --navy: #0f1e3d;
  --navy-light: #1a2f56;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Prevent horizontal overflow on mobile */
  overflow-x: hidden;
}

/* Make all tap targets at least 44px tall on mobile */
@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .nav__link { min-height: 44px; }
  a[href^="tel"] { touch-action: manipulation; }
}

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

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

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.badge--red {
  background: rgba(200,16,46,.1);
  color: var(--red);
  border: 1px solid rgba(200,16,46,.2);
}

.badge--light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--full { width: 100%; }

.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(-1px); box-shadow: 0 6px 20px rgba(200,16,46,.35); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn--outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 201;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 88px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

/* Real logo image */
.logo__img {
  height: 64px;
  width: auto;
  display: block;
}

/* Footer logo: white pill so the logo reads on the dark background */
.logo__footer-bg {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 14px;
  line-height: 0;
}
.logo__footer-bg .logo__img { height: 38px; }

/* Legacy — kept in case any SVG logo remnants exist */
.logo__icon { width: 38px; height: 38px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name { font-size: 0.9375rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.logo__sub  { font-size: 0.6875rem; font-weight: 500; color: var(--gray-500); letter-spacing: 0.02em; }
.logo--light .logo__name { color: var(--white); }
.logo--light .logo__sub  { color: rgba(255,255,255,.6); }

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--red); background: rgba(200,16,46,.06); }

.header__cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  /* Large tap target for mobile */
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-shrink: 0;
  /* Prevent double-tap zoom delay */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 101;
  position: relative;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); pointer-events: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('Van image for home page.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 18, 36, 0.90) 0%,
    rgba(8, 18, 36, 0.78) 45%,
    rgba(8, 18, 36, 0.52) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero__content { max-width: 580px; }

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin: 16px 0 20px;
  letter-spacing: -0.03em;
}

.hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__badge {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

.hero__badge-item svg { color: var(--red); flex-shrink: 0; }

/* Hero visual */
.hero__visual { position: relative; }

.hero__img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }

.hero__img {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero__stat-card--1 { bottom: -20px; left: -32px; }
.hero__stat-card--2 { top: 24px; right: -24px; animation-delay: 2s; }

.hero__stat-num { font-size: 1.75rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero__stat-label { font-size: 0.75rem; color: var(--gray-500); margin-top: 4px; font-weight: 500; line-height: 1.4; }
.hero__stat-stars { font-size: 1rem; color: #f59e0b; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: trust-scroll 30s linear infinite;
}

.trust-bar__track:hover {
  animation-play-state: paused;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.trust-bar__dot {
  color: rgba(255,255,255,.45);
  font-size: 0.5rem;
  flex-shrink: 0;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__images--single {
  height: auto;
}

.about__img { border-radius: var(--radius-lg); object-fit: cover; }

.about__img--solo {
  width: 100%;
  height: 420px;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center top;
}

.about__exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(200,16,46,.4);
  animation: float 4s ease-in-out infinite;
}

.about__exp-num { font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.about__exp-text { font-size: 0.75rem; font-weight: 500; opacity: .85; line-height: 1.4; display: block; margin-top: 4px; }

.about__desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__stats {
  display: flex;
  gap: 32px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.about__stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services { background: var(--gray-50); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__icon {
  display: none;
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 8px; }

.services__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ===== WHY CHOOSE US ===== */
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  background: var(--white);
}
.feature:hover { border-color: rgba(200,16,46,.25); background: rgba(200,16,46,.02); }

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature__icon--red { background: rgba(200,16,46,.1); color: var(--red); }

.feature__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Why us images */
.why-us__images {
  position: relative;
  height: 540px;
}

.why-us__img { border-radius: var(--radius-lg); object-fit: cover; }

.why-us__img--main {
  width: 80%;
  height: 420px;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}

.why-us__img--accent {
  width: 55%;
  height: 260px;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.why-us__stats {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.why-us__stat { text-align: center; }
.why-us__stat-num { display: block; font-size: 1.375rem; font-weight: 900; color: var(--red); }
.why-us__stat-label { font-size: 0.7rem; color: rgba(255,255,255,.6); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== REVIEWS ===== */
.reviews { background: var(--gray-50); }

/* Carousel wrapper */
.reviews__carousel-wrap {
  position: relative;
  overflow: hidden;
}

.reviews__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 8px;
  cursor: grab;
}
.reviews__grid::-webkit-scrollbar { display: none; }
.reviews__grid.is-dragging { cursor: grabbing; }

/* Each card is a fixed-width snap point */
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  min-width: 0;
}

/* Arrow buttons */
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  color: var(--navy);
}
.reviews__arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.reviews__arrow--prev { left: -20px; }
.reviews__arrow--next { right: -20px; }
.reviews__arrow:disabled { opacity: 0.3; cursor: default; }

/* Dot indicators */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.reviews__dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,.15); }

.review-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.review-card__stars {
  font-size: 1rem;
  color: #f59e0b;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-700);
  flex: 1;
  font-style: italic;
}
.review-card--featured .review-card__text { color: rgba(255,255,255,.85); }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.review-card--featured .review-card__author { border-color: rgba(255,255,255,.15); }

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

.review-card__name { font-size: 0.9375rem; font-weight: 700; }
.review-card--featured .review-card__name { color: var(--white); }

.review-card__source { font-size: 0.75rem; color: var(--gray-400); margin-top: 2px; }
.review-card--featured .review-card__source { color: rgba(255,255,255,.5); }

.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.reviews__rating { display: flex; align-items: center; gap: 16px; }

.reviews__score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.reviews__stars { font-size: 1.25rem; color: #f59e0b; }
.reviews__count { font-size: 0.875rem; color: var(--gray-500); margin-top: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b0f1f 100%);
  padding: 64px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
}

.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.contact__detail { display: flex; gap: 16px; align-items: flex-start; }

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,16,46,.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.contact__detail-value { font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-top: 2px; line-height: 1.5; }
a.contact__detail-value:hover { color: var(--red); }

.contact__map iframe { display: block; }

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact__form-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-note a { color: var(--red); font-weight: 600; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: 600;
}
.form-success svg { color: #10b981; flex-shrink: 0; }
.form-success.visible { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding-top: 72px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
  line-height: 1.65;
  max-width: 280px;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.footer__phone:hover { color: var(--red); }

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__hours { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,.65); }
.footer__hours li span:first-child { color: rgba(255,255,255,.4); }
.footer__address { display: block !important; font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.5; margin-top: 4px; }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.35); }

/* ===== STICKY CALL ===== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(200,16,46,.5);
  transition: all var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.sticky-call:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(200,16,46,.65); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(200,16,46,.5); }
  50% { box-shadow: 0 6px 40px rgba(200,16,46,.75); }
}

/* ===== GREEN BUTTON (phone CTA) ===== */
.btn--green {
  background: #2a9d3a;
  color: var(--white);
  border-color: #2a9d3a;
  font-weight: 700;
}
.btn--green:hover { background: #1f7a2b; border-color: #1f7a2b; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,157,58,.35); }

/* ===== HEADER DUAL CTA ===== */
.header__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}

.header__schedule {
  font-size: 0.875rem;
  padding: 9px 18px;
  border-color: var(--gray-300, #d1d5db);
  color: var(--navy);
}
.header__schedule:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.header__phone {
  font-size: 0.875rem;
  padding: 9px 18px;
}

/* ===== HERO FORM ===== */
.hero__inner { grid-template-columns: 1fr 1fr; }

.hero__form-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}

.hero__form-header { margin-bottom: 22px; }

.hero__form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero__form-sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.hf-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hf-group input,
.hf-group select {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 9px 13px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.hf-group input:focus,
.hf-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
  background: var(--white);
}

.hf-submit { margin-top: 4px; font-size: 0.9375rem; }

.hf-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 10px;
}
.hf-note a { color: var(--red); font-weight: 600; }

.hf-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hf-success svg { color: #10b981; flex-shrink: 0; }
.hf-success.visible { display: flex; }

/* ===== SPECIALS / COUPONS ===== */
.specials {
  background: #1c1c1e;
  padding: 80px 0;
}

.specials__inner { }

.specials__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.specials__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.specials__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
}

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

.coupon-card {
  background: #2a2a2c;
  border: 2px dashed rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: all var(--transition);
}
.coupon-card:hover { border-color: rgba(200,16,46,.5); transform: translateY(-4px); }

.coupon-card--featured {
  background: var(--red);
  border-color: rgba(255,255,255,.3);
}
.coupon-card--featured:hover { border-color: var(--white); }

.coupon-card__badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #7c2d12;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.coupon-card__icon {
  color: rgba(255,255,255,.35);
  margin-bottom: 0;
}
.coupon-card__icon svg { width: 26px; height: 26px; }
.coupon-card--featured .coupon-card__icon { color: rgba(255,255,255,.6); }

.coupon-card__offer {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.coupon-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.coupon-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  flex: 1;
}
.coupon-card--featured .coupon-card__desc { color: rgba(255,255,255,.8); }

.coupon-card__expires {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.coupon-card__fine {
  font-size: 0.6875rem;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
  margin-top: 2px;
}

/* ===== CREDENTIALS BAR ===== */
.cred-bar {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.cred-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}

.cred-item__icon {
  color: var(--red);
  flex-shrink: 0;
}

.cred-item__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cred-item__sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

.cred-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ===== FOOTER SOCIAL ===== */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--transition);
  flex-shrink: 0;
}

.footer__social-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ===== FOOTER LICENSES ===== */
.footer__licenses {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}

.footer__licenses span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.3);
  letter-spacing: 0.03em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 calc(50% - 12px); }
  .reviews__arrow--prev { left: -12px; }
  .reviews__arrow--next { right: -12px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-us__stats { right: -8px; }
  .specials__grid { grid-template-columns: repeat(2, 1fr); }
  .cred-bar__inner { gap: 20px; }
  .cred-divider { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Header — remove backdrop-filter on mobile so fixed child nav is
     positioned relative to the viewport, not the header.
     (backdrop-filter creates a new containing block for fixed elements) */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.99);
  }

  /* Mobile nav overlay */
  .nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-top: 1px solid var(--gray-200);
    z-index: 200;
    overflow-y: auto;
  }
  .nav.open {
    display: flex;
  }
  .nav__link { font-size: 1rem; padding: 14px 16px; border-radius: 10px; display: block; }
  .header__ctas { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 48px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  /* Hide redundant CTA buttons in hero content — form below handles conversion */
  .hero__actions { display: none; }
  .hero__form-wrap { justify-content: center; }
  .hero__form { max-width: 100%; padding: 24px 20px; }
  /* Hero form rows collapse to single column */
  .hf-row { grid-template-columns: 1fr; }

  /* Specials */
  .specials { padding: 48px 0; }
  .specials__grid { grid-template-columns: 1fr; gap: 16px; }
  /* Featured coupon top badge needs room to breathe */
  .coupon-card--featured { margin-top: 14px; }
  .coupon-card { padding: 20px 18px; }

  /* Credentials bar — 2-column grid on mobile */
  .cred-bar { padding: 32px 0; }
  .cred-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .cred-divider { display: none; }
  .cred-item { min-width: unset; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__images { position: relative; }
  .about__img--solo { height: 260px; }
  .about__exp-badge { bottom: 14px; right: 14px; padding: 12px 16px; }
  .about__exp-num { font-size: 1.5rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us__images { display: none; }

  /* Reviews */
  .review-card { flex: 0 0 calc(100% - 0px); }
  .reviews__arrow { display: none; }

  /* CTA banner */
  .cta-banner { padding: 48px 0; }
  .cta-banner__inner { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
  .cta-banner__actions { width: 100%; justify-content: center; }
  .cta-banner__actions .btn { flex: 1; justify-content: center; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-top: 48px; }

  /* Sticky call button */
  .sticky-call { display: flex; }
}

@media (max-width: 480px) {
  /* Tighter container padding on small phones */
  .container { padding: 0 16px; }

  /* Hero text sizing */
  .hero__title { font-size: 2rem; }
  .hero__desc { font-size: 0.9375rem; }
  .hero__badge { flex-direction: column; gap: 10px; }

  /* Hero form */
  .hero__form { padding: 20px 16px; }
  .hero__form-title { font-size: 1.125rem; }

  /* Specials */
  .coupon-card__offer { font-size: 1.875rem; }
  .coupon-card__title { font-size: 0.9rem; }

  /* Credentials — stack to 1 column on very small screens */
  .cred-bar__inner { grid-template-columns: 1fr; gap: 16px; }

  /* About stats */
  .about__stats { flex-wrap: wrap; gap: 20px; }

  /* Reviews */
  .reviews__summary { flex-direction: column; text-align: center; }
  .reviews__score { font-size: 2.75rem; }

  /* CTA banner */
  .cta-banner__title { font-size: 1.375rem; }

  /* Contact form */
  .contact__form { padding: 20px 14px; }

  /* Sticky call button */
  .sticky-call { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.875rem; }
}
