/* ============================================================
   GARAGE DOORS BY ATKINS — styles.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --orange: #ef5822;
  --orange-light: #f97316;
  --blue: #214280;
  --dark: #0b0c10;
  --surface: #141418;
  --surface2: #1c1c22;
  --white: #f5f5f7;
  --text-dim: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --gradient: linear-gradient(135deg, #ef5822, #f97316);
  --gradient-blue: linear-gradient(135deg, #214280, #1a5fb4);
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --t: all 0.28s ease;
  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Inter', sans-serif;
  --radius: 14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--t);
  min-height: 44px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  border: 2px solid transparent;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(239,88,34,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.8rem; }

/* ── Glass Card ── */
.glass-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
}

/* ── Section Labels ── */
.section__tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(239,88,34,0.12);
  border: 1px solid rgba(239,88,34,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.section__subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Gradient Text ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Padding ── */
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--dark); }
.section--surface { background: var(--surface); }
.section--surface2 { background: var(--surface2); }

/* ── Text Align ── */
.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(11,12,16,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--t);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--white); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
/* ── Nav icon action buttons ── */
.nav__action {
  position: relative;
}
.nav__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  backdrop-filter: blur(8px);
}
.nav__icon-btn:hover,
.nav__action.open .nav__icon-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(239,88,34,0.4);
}

/* Dropdown card */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #1a1626;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
  min-width: 200px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}
.nav__action.open .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
/* Dropdown arrow tip */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: #1a1626;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: rotate(45deg);
}

.nav__drop-label {
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

/* Phone dropdown */
.nav__drop-number {
  display: block;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  transition: var(--t);
}
.nav__drop-number:hover { color: var(--orange-light); }
.nav__drop-hours {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Maps dropdown */
.nav__maps-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--t);
  margin-bottom: 8px;
}
.nav__maps-link:last-child { margin-bottom: 0; }
.nav__maps-link:hover {
  background: rgba(239,88,34,0.15);
  border-color: rgba(239,88,34,0.3);
  color: var(--orange);
}
.nav__maps-link i { font-size: 1rem; color: var(--orange); }
.nav__maps-link--apple i { color: var(--white); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,12,16,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.nav__mobile.open {
  transform: translateX(0);
}
.nav__mobile a {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--t);
}
.nav__mobile a:hover { color: var(--orange); }
.nav__mobile .nav__phone {
  font-size: 1.1rem;
  margin-top: 16px;
}
.nav__mobile .btn { margin-top: 8px; }
.nav__mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: var(--white);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   HERO — full-bleed garage door scene
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #02020a 0%, #060412 40%, #0e0818 70%, #12080a 100%);
}

/* Particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Full-bleed background scene */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(2,2,10,0.82) 0%, rgba(2,2,10,0.62) 34%, rgba(2,2,10,0.28) 58%, rgba(2,2,10,0.52) 100%),
    linear-gradient(180deg, rgba(2,2,10,0.26) 0%, rgba(2,2,10,0.16) 34%, rgba(2,2,10,0.5) 100%),
    url("images/door.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__scene > * {
  display: none;
}

/* Stars */
.hbs-star {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 50%;
  animation: starTwinkle 3s ease-in-out infinite;
}
.hbs-star--lg { width: 3px; height: 3px; }
.hbs-star:nth-child(2) { animation-delay: 0.8s; }
.hbs-star:nth-child(3) { animation-delay: 1.6s; }
.hbs-star:nth-child(4) { animation-delay: 0.4s; }
.hbs-star:nth-child(5) { animation-delay: 2.1s; }
.hbs-star:nth-child(6) { animation-delay: 1.1s; }
.hbs-star:nth-child(7) { animation-delay: 2.7s; }
.hbs-star:nth-child(8) { animation-delay: 0.6s; }
@keyframes starTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Moon */
.hbs-moon {
  position: absolute;
  top: 7%; right: 17%;
  width: 34px; height: 34px;
  background: rgba(255,242,190,0.88);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255,240,180,0.5), 0 0 60px rgba(255,220,100,0.15);
}

/* Tree silhouette at horizon */
.hbs-trees {
  position: absolute;
  bottom: 27%;
  left: 42%;
  right: 0;
  height: 65px;
  background: #01010a;
  clip-path: polygon(
    0% 100%, 0% 68%, 3% 30%, 6% 60%, 9% 22%, 12% 65%,
    15% 12%, 18% 62%, 21% 38%, 24% 72%, 27% 18%, 30% 60%,
    70% 60%, 73% 18%, 76% 72%, 79% 38%, 82% 62%, 85% 12%,
    88% 65%, 91% 22%, 94% 60%, 97% 30%, 100% 68%, 100% 100%
  );
  z-index: 1;
}

/* House wall / siding */
.hbs-siding {
  position: absolute;
  right: 0;
  top: 10%;
  width: 54%;
  bottom: 25%;
  background: repeating-linear-gradient(
    180deg,
    #1b1726 0px, #1d192a 22px,
    #171320 22px, #1b1726 24px
  );
  border-left: 4px solid #0c0914;
}

/* Roof overhang */
.hbs-roof {
  position: absolute;
  right: 0;
  top: 7%;
  width: 58%;
  height: 5%;
  background: #0d0a18;
  clip-path: polygon(4% 100%, 0% 0%, 100% 0%, 100% 100%);
  border-bottom: 2px solid rgba(255,255,255,0.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Vertical track rails flanking the door */
.hbs-track {
  position: absolute;
  top: 15%;
  bottom: 24%;
  width: 14px;
  background: linear-gradient(90deg, #1c1830, #28203e, #1c1830);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.5);
  z-index: 4;
}
.hbs-track--l { right: 39%; }
.hbs-track--r { right: 11%; }

/* Garage door — large, runs full wall height */
.hbs-gd {
  position: absolute;
  right: 12%;
  top: 15%;
  width: 27%;
  bottom: 25%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.hbs-panel {
  flex: 1;
  background: linear-gradient(180deg, #1e1a2e 0%, #181428 100%);
  border: 1px solid rgba(239,88,34,0.06);
  position: relative;
}
/* Horizontal center rail */
.hbs-panel::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(255,255,255,0.04);
}
/* Subtle vertical grooves */
.hbs-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0%, transparent 33%,
    rgba(255,255,255,0.012) 33%, rgba(255,255,255,0.012) 33.5%,
    transparent 33.5%, transparent 66%,
    rgba(255,255,255,0.012) 66%, rgba(255,255,255,0.012) 66.5%,
    transparent 66.5%
  );
}

/* Window panel */
.hbs-panel--win {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  flex: 1.3;
}
.hbs-win-row {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.hbs-win {
  flex: 1;
  background: rgba(239,88,34,0.22);
  border: 1px solid rgba(239,88,34,0.42);
  border-radius: 3px;
  box-shadow:
    inset 0 0 12px rgba(239,88,34,0.28),
    0 0 10px rgba(239,88,34,0.2),
    0 0 28px rgba(239,88,34,0.1);
  animation: winGlow 3.2s ease-in-out infinite;
}
.hbs-win:nth-child(2) { animation-delay: 0.6s; }
.hbs-win:nth-child(3) { animation-delay: 1.2s; }
.hbs-win:nth-child(4) { animation-delay: 1.8s; }
.hbs-win:nth-child(5) { animation-delay: 2.4s; }
.hbs-win:nth-child(6) { animation-delay: 3s; }
@keyframes winGlow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; box-shadow: inset 0 0 16px rgba(239,88,34,0.4), 0 0 16px rgba(239,88,34,0.3); }
}

/* Bottom panel handle */
.hbs-panel--btm { display: flex; align-items: center; justify-content: center; }
.hbs-handle {
  width: 28%;
  height: 9px;
  background: #302848;
  border-radius: 5px;
  border-top: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Opener motor box */
.hbs-motor {
  position: absolute;
  top: calc(15% - 22px);
  right: calc(12% + 13.5% - 18px);
  width: 36px; height: 16px;
  background: #1a1530;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 5;
}
/* Opener rail to ceiling */
.hbs-motor-rail {
  position: absolute;
  top: 0;
  right: calc(12% + 13.5% - 1px);
  width: 2px;
  height: 15%;
  background: rgba(255,255,255,0.05);
  z-index: 5;
}

/* Bottom seam orange light bleed */
.hbs-seam {
  position: absolute;
  right: 12%;
  width: 27%;
  bottom: calc(25% + 1px);
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(239,88,34,0.95) 8%,
    rgba(239,88,34,0.95) 92%,
    transparent 100%
  );
  filter: blur(3px);
  z-index: 5;
  animation: seamPulse 3s ease-in-out infinite;
}
@keyframes seamPulse {
  0%, 100% { opacity: 0.7; filter: blur(3px); }
  50% { opacity: 1; filter: blur(5px); }
}

/* Orange ground glow below door */
.hbs-glow {
  position: absolute;
  right: 11%;
  width: 29%;
  bottom: 25%;
  height: 70px;
  background: radial-gradient(ellipse at top, rgba(239,88,34,0.38) 0%, transparent 70%);
  filter: blur(14px);
  z-index: 3;
  animation: groundPulse 3s ease-in-out infinite;
}
@keyframes groundPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Wall sconce to the right of the door */
.hbs-sconce {
  position: absolute;
  right: 8.5%;
  top: 34%;
  width: 16px; height: 22px;
  background: #22183a;
  border-radius: 3px 3px 0 0;
  z-index: 5;
}
.hbs-sconce::before {
  content: '';
  position: absolute;
  bottom: -11px; left: -9px;
  width: 34px; height: 13px;
  background: rgba(255,200,80,0.88);
  border-radius: 0 0 50% 50%;
}
.hbs-sconce::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 60px;
  background: radial-gradient(ellipse at top, rgba(255,200,80,0.18), transparent 68%);
}

/* Concrete driveway */
.hbs-driveway {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 26%;
  background: linear-gradient(180deg, #0d0b18 0%, #111018 100%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-top: 1px solid rgba(239,88,34,0.08);
  z-index: 2;
}
.hbs-driveway::before {
  content: '';
  position: absolute;
  top: 35%; left: 50%;
  width: 1px; height: 55%;
  background: rgba(255,255,255,0.025);
}

/* Left gradient overlay — makes text readable */
.hbs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2,2,10,0.98) 0%,
    rgba(2,2,10,0.95) 32%,
    rgba(2,2,10,0.78) 50%,
    rgba(2,2,10,0.38) 68%,
    rgba(2,2,10,0.08) 84%,
    rgba(2,2,10,0.00) 100%
  );
  z-index: 3;
}

/* Content positioning */
.hero__container {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(320px, 440px);
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.hero__content { max-width: 580px; }
.hero__tag { margin-bottom: 20px; }
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.hero__trust-item i { color: var(--orange); font-size: 1rem; }

.hero__reviews {
  justify-self: end;
  width: min(100%, 440px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero__reviews-viewport {
  position: relative;
  padding: 0 30px;
}

.hero__reviews-track {
  position: relative;
  aspect-ratio: 1.56 / 1;
}

.hero__review-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.hero__review-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero__review-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.hero__reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8,9,14,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.hero__reviews-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(239,88,34,0.4);
}

.hero__reviews-arrow--prev { left: 0; }
.hero__reviews-arrow--next { right: 0; }

.hero__reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero__reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid transparent;
  transition: var(--t);
}

.hero__reviews-dot.is-active {
  background: var(--orange);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 18px rgba(239,88,34,0.45);
}

/* Page Hero (non-home pages) */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(33,66,128,0.3) 0%, transparent 60%),
              var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero__subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ─────────────────────────────────────────
   SPECIALS
───────────────────────────────────────── */
.specials-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.specials-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(239,88,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.special-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.special-card:hover {
  border-color: rgba(239,88,34,0.35);
  background: rgba(239,88,34,0.04);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(239,88,34,0.2);
}
.special-card--featured {
  border-color: rgba(239,88,34,0.3);
  background: rgba(239,88,34,0.05);
  box-shadow: 0 0 40px rgba(239,88,34,0.1);
}
.special-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(239,88,34,0.4);
}

.special-card__badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  color: var(--text-dim);
  font-family: var(--font-h);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 10px 10px;
}
.special-card__badge--hot {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.special-card__icon {
  width: 52px; height: 52px;
  background: rgba(239,88,34,0.1);
  border: 1px solid rgba(239,88,34,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 20px;
}
.special-card--featured .special-card__icon {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(239,88,34,0.4);
}

.special-card__discount {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.special-card__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.special-card__desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.special-card__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.special-card__perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.special-card__perks i {
  color: var(--orange);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.special-card__expire {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 12px;
  font-style: italic;
}

@media (max-width: 900px) {
  .specials-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid--full {
  margin-top: 40px;
}
.service-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--orange);
  transition: height 0.28s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,88,34,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { height: 3px; }
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(239,88,34,0.1);
  border: 1px solid rgba(239,88,34,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--t);
}
.service-card:hover .service-card__icon {
  background: var(--orange);
  color: #fff;
}
.service-card__name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.service-card__desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__link {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
}
.service-card__link:hover { gap: 10px; }

/* ─────────────────────────────────────────
   SERVICE DETAIL PAGE
───────────────────────────────────────── */
.service-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.service-hero__actions .btn {
  min-width: 220px;
}
.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-highlight-card {
  padding: 32px 28px;
  border-radius: var(--radius);
}
.service-highlight-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--orange);
  background: rgba(239,88,34,0.1);
  border: 1px solid rgba(239,88,34,0.2);
  font-size: 1.4rem;
}
.service-highlight-card__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.service-highlight-card__text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}
.service-detail-page .service-detail {
  padding-top: 96px;
  padding-bottom: 96px;
}
.service-detail__eyebrow {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.service-detail__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.service-detail__media-note {
  max-width: 280px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}
.service-detail__media-note strong {
  color: var(--white);
}

/* ─────────────────────────────────────────
   PERKS / WHY CHOOSE US
───────────────────────────────────────── */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.perk {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  transition: var(--t);
}
.perk:hover { border-color: rgba(239,88,34,0.2); }
.perk__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(239,88,34,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
}
.perk__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.perk__text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   BEFORE / AFTER SLIDER
───────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--border);
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before {
  z-index: 1;
}
.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.02s linear;
}
/* Override transition during drag */
.ba-after.dragging { transition: none; }
.ba-label {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.ba-before .ba-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  position: absolute;
  top: 16px;
  left: 16px;
}
.ba-after .ba-label {
  background: rgba(239,88,34,0.85);
  color: #fff;
  position: absolute;
  top: 16px;
  right: 16px;
}
.ba-media {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #111218;
}
.ba-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--orange);
  z-index: 3;
  transform: translateX(-50%);
  transition: left 0.02s linear;
  box-shadow: 0 0 12px rgba(239,88,34,0.6);
}
.ba-handle.dragging { transition: none; }
.ba-handle__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 0 0 4px rgba(239,88,34,0.25);
}
.ba-note {
  text-align: center;
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars {
  font-size: 1rem;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card__star {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: #fbbf24;
}
.testimonial-card__star--empty {
  color: rgba(251, 191, 36, 0.28);
}
.testimonial-card__star--half {
  color: rgba(251, 191, 36, 0.28);
}
.testimonial-card__star--half::after {
  content: '★';
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  color: #fbbf24;
}
.testimonial-card__quote {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card__city {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────
   SERVICE AREAS
───────────────────────────────────────── */
.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
}
.areas-copy {
  min-width: 0;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.area-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--t);
}
.area-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(239,88,34,0.08);
}
.area-seo {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 700px;
}
.areas-photo {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.areas-photo__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .areas-layout {
    grid-template-columns: 1fr;
  }

  .areas-photo {
    order: -1;
  }

  .areas-photo__img {
    min-height: 280px;
  }
}

/* ─────────────────────────────────────────
   FINANCING BANNER
───────────────────────────────────────── */
.financing-banner {
  background: linear-gradient(135deg, rgba(33,66,128,0.4) 0%, rgba(239,88,34,0.15) 100%);
  border: 1px solid rgba(239,88,34,0.2);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
}
.financing-banner__title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.financing-banner__sub {
  color: var(--text-dim);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   LEAD FORM
───────────────────────────────────────── */
.lead-section {
  background: var(--surface);
  padding: 96px 0;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.lead-trust__title {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.lead-trust__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.lead-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.lead-trust__item i { color: var(--orange); width: 16px; }
.lead-trust__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}
.lead-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.lead-form__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.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.8rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group label .required { color: var(--orange); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--t);
  width: 100%;
  min-height: 44px;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ef5822' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239,88,34,0.15);
  background: rgba(255,255,255,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input.error,
.form-group select.error { border-color: #ef4444; }
.form__error {
  font-size: 0.78rem;
  color: #ef4444;
  display: none;
}
.form__error.show { display: block; }

/* ─────────────────────────────────────────
   MODAL
───────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal.active .modal__box { transform: scale(1); }
.modal__icon {
  width: 72px;
  height: 72px;
  background: rgba(239,88,34,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  margin: 0 auto 24px;
}
.modal__title {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.modal__text { color: var(--text-dim); margin-bottom: 28px; line-height: 1.7; }
.modal__close { position: absolute; top: 16px; right: 16px; font-size: 1.2rem; color: var(--text-dim); background: none; border: none; cursor: pointer; min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; }
.modal__close:hover { color: var(--white); }

/* ─────────────────────────────────────────
   CURSOR GLOW
───────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,88,34,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}

/* ─────────────────────────────────────────
   MOBILE STICKY CTA
───────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 12px;
}
.mobile-sticky-cta a { flex: 1; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #080a0d;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { margin-bottom: 4px; }
.footer__tagline {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dim);
  transition: var(--t);
}
.footer__social:hover { border-color: var(--orange); color: var(--orange); background: rgba(239,88,34,0.08); }
.footer__col-title {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-links a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: var(--t);
}
.footer__col-links a:hover { color: var(--orange); padding-left: 4px; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer__contact-item i { color: var(--orange); width: 16px; flex-shrink: 0; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copyright {
  color: var(--text-dim);
  font-size: 0.82rem;
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  color: var(--text-dim);
  font-size: 0.82rem;
  transition: var(--t);
}
.footer__bottom-links a:hover { color: var(--orange); }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: none;
}
[data-aos][data-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-delay="500"] { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   SERVICES PAGE — Detailed Sections
───────────────────────────────────────── */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail__inner.reverse { direction: rtl; }
.service-detail__inner.reverse > * { direction: ltr; }
.service-detail__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.service-detail__visual i { font-size: 4rem; color: rgba(239,88,34,0.3); }
.service-detail__visual span {
  font-family: var(--font-h);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.service-detail__tag { margin-bottom: 12px; }
.service-detail__title {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.service-detail__desc {
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.7;
}
.service-detail__list {
  margin-bottom: 24px;
}
.service-detail__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-size: 0.9rem;
}
.service-detail__list li:last-child { border-bottom: none; }
.service-detail__list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.service-detail__price {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(239,88,34,0.1);
  border: 1px solid rgba(239,88,34,0.2);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: inline-block;
}

.service-detail__visual--photo-ready {
  background:
    radial-gradient(circle at top, rgba(239,88,34,0.15), transparent 55%),
    linear-gradient(160deg, rgba(18,20,26,0.9), rgba(9,11,16,0.96));
}

.service-detail__visual--image {
  overflow: hidden;
  padding: 0;
  background: #111218;
}

.service-detail__visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ─────────────────────────────────────────
   GALLERY PAGE
───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-grid .ba-image {
  object-fit: cover;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.about-story__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.about-story__visual i { font-size: 4rem; color: rgba(239,88,34,0.3); }
.about-story__visual span { font-family: var(--font-h); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.about-story__text p { color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.value-card__icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.value-card__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.value-card__text { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.team-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
}
.team-card__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.team-card__role { color: var(--orange); font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; }
.team-card__bio { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   AREAS PAGE
───────────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.city-card {
  padding: 28px;
  border-radius: var(--radius);
}
.city-card__name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-card__name i { font-size: 0.9rem; }
.city-card__text { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }
.map-placeholder {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  height: 340px;
  margin-top: 48px;
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─────────────────────────────────────────
   FINANCING PAGE
───────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.plan-card--featured {
  border-color: rgba(239,88,34,0.4);
  background: rgba(239,88,34,0.04);
}
.plan-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.plan-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(239,88,34,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0 auto 20px;
}
.plan-card__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.plan-card__highlight {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 12px;
}
.plan-card__text { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
}
.step-card__num {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
}
.step-card__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.step-card__text { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.faq-question i {
  color: var(--orange);
  transition: transform 0.28s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 32px;
}
.highlight { color: var(--orange); }

/* ─────────────────────────────────────────
   RESPONSIVE — 768px (Tablet)
───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .nav__inner { gap: 12px; }
  .nav__right {
    margin-left: auto;
    gap: 10px;
  }
  .nav__action { display: flex; }

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

  .hero__reviews {
    justify-self: stretch;
    width: 100%;
  }

  .hero__reviews-track,
  .hero__review-slide img {
    height: 100%;
  }

  /* Hero: on mobile hide the right-side scene detail, show overlay heavier */
  .hbs-siding { width: 100%; top: 40%; }
  .hbs-roof { width: 100%; }
  .hbs-track--l { right: 43%; }
  .hbs-track--r { right: 12%; }
  .hbs-gd { right: 14%; width: 29%; top: 42%; }
  .hbs-seam { right: 14%; width: 29%; bottom: 26%; }
  .hbs-glow { right: 12%; width: 33%; }
  .hbs-motor { display: none; }
  .hbs-motor-rail { display: none; }
  .hbs-sconce { right: 9%; top: 55%; }
  .hbs-driveway { width: 100%; clip-path: none; }
  .hbs-overlay {
    background: linear-gradient(
      to bottom,
      rgba(2,2,10,0.80) 0%,
      rgba(2,2,10,0.70) 40%,
      rgba(2,2,10,0.60) 100%
    );
  }

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

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

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

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

  .testimonials-wrapper { grid-template-columns: 1fr; }

  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-trust { text-align: center; }
  .lead-trust__phone { justify-content: center; }
  .lead-trust__list { text-align: left; }
  .lead-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .service-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail__inner.reverse { direction: ltr; }

  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

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

  .plan-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }

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

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 74px; }

  .financing-banner { padding: 48px 28px; }

  .section { padding: 72px 0; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 480px (Mobile)
───────────────────────────────────────── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .btn--lg { padding: 14px 24px; font-size: 0.9rem; }
  .hero__title { font-size: 2rem; }
  .hero__reviews-viewport { padding: 0 30px; }
  .hero__reviews-arrow {
    width: 36px;
    height: 36px;
  }
  .hero__reviews-track,
  .hero__review-slide img {
    height: 100%;
  }
  .page-hero { padding: 140px 0 60px; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
}
