/* ==========================================================================
   CRESCENTA VALLEY TOWING — style.css
   Brand: Edit CSS variables below for colors, fonts, and assets.
   ========================================================================== */

/* ---------- BRAND & THEME VARIABLES ---------- */
:root {
  /* COLORS: Primary brand palette (Crescenta Valley blue) */
  --color-primary: #1b66b3;
  --color-primary-dark: #124d87;
  --color-primary-light: #3d8fd9;
  --color-accent: #6db3f0;
  --color-primary-rgb: 27, 102, 179;

  /* COLORS: Neutrals */
  --color-bg-dark: #0a1628;
  --color-bg-section: #0f1f3d;
  --color-bg-light: #f8fafc;
  --color-bg-card: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-inverse: #f1f5f9;
  --color-border: #e2e8f0;
  --color-border-dark: rgba(255, 255, 255, 0.08);

  /* TYPOGRAPHY */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* SPACING & LAYOUT */
  --container-max: 1200px;
  --section-padding: clamp(4rem, 8vw, 6rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* EFFECTS */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-bg-scrolled: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.35);
  --nav-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-light);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

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

.section__subtitle--left {
  text-align: left;
}

/* Scroll reveal (JS adds .visible) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth),
    border-color var(--transition-smooth);
}

.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  opacity: 0.6;
  pointer-events: none;
  animation: btnRipple 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes btnRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow:
    0 4px 24px rgba(var(--color-primary-rgb), 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 36px rgba(var(--color-primary-rgb), 0.55),
    0 0 28px rgba(var(--color-primary-rgb), 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn--primary:active {
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(var(--color-primary-rgb), 0.12);
}

.btn--emergency {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.btn--emergency:hover {
  transform: translateY(-2px) scale(1.02);
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.25rem;
  pointer-events: none;
  transition: top var(--transition-smooth);
}

.header__inner {
  pointer-events: auto;
  max-width: calc(var(--container-max) + 2rem);
  margin: 0 auto;
  padding: 0.65rem 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  box-shadow:
    var(--nav-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition:
    background var(--transition-smooth),
    padding var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth),
    transform var(--transition-smooth);
}

.header.scrolled .header__inner {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.45);
  padding: 0.5rem 1.25rem;
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  animation: logoFloat 7s ease-in-out infinite;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__logo:hover {
  animation-play-state: paused;
  transform: translateY(-2px);
}

.nav__logo-img {
  display: block;
  height: 80px;
  width: auto;
  max-width: min(349px, 62vw);
  object-fit: contain;
  object-position: left center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter:
    brightness(1.06)
    contrast(1.04)
    drop-shadow(0 2px 8px rgba(15, 23, 42, 0.14))
    drop-shadow(0 4px 14px rgba(15, 23, 42, 0.08));
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, filter;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05) translateY(-1px) translateZ(0);
  filter:
    brightness(1.09)
    contrast(1.06)
    drop-shadow(0 4px 12px rgba(15, 23, 42, 0.18))
    drop-shadow(0 0 22px rgba(var(--color-primary-rgb), 0.18));
}

@keyframes logoFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.02em;
  transition:
    color var(--transition-smooth),
    text-shadow var(--transition-smooth);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.35);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link.active {
  color: var(--color-primary);
}

.nav__link.active::after {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  box-shadow: 0 0 12px rgba(var(--color-primary-rgb), 0.45);
  animation: navLinkUnderlineGlow 2.8s ease-in-out infinite;
}

@keyframes navLinkUnderlineGlow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.35);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 16px rgba(var(--color-primary-rgb), 0.6);
    opacity: 1;
  }
}

.nav__cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff !important;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 24px rgba(var(--color-primary-rgb), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: navCtaGlow 3.5s ease-in-out infinite;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.nav__cta:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow:
    0 10px 36px rgba(var(--color-primary-rgb), 0.5),
    0 0 28px rgba(var(--color-primary-rgb), 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav__cta::after {
  display: none;
}

@keyframes navCtaGlow {
  0%, 100% {
    box-shadow:
      0 4px 24px rgba(var(--color-primary-rgb), 0.4),
      0 0 0 0 rgba(var(--color-primary-rgb), 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 6px 28px rgba(var(--color-primary-rgb), 0.48),
      0 0 22px rgba(var(--color-primary-rgb), 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 108vh;
  min-height: 108dvh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-motion {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  will-change: transform;
}

.hero__bg-image {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  background-image: url('./assets/images/hero-bg-mobile.jpg');
  background-size: cover;
  background-position: 68% 4%;
  background-repeat: no-repeat;
  will-change: transform;
  animation: heroKenBurns 32s ease-in-out infinite alternate;
}

@media (min-width: 641px) {
  .hero__bg-image {
    background-image: url('./assets/images/hero-bg-tablet.jpg');
    background-position: 72% 4%;
  }
}

@media (min-width: 1201px) {
  .hero__bg-image {
    background-image: url('./assets/images/hero-bg.jpg');
    background-position: 72% 4%;
  }
}

@keyframes heroKenBurns {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(0, -0.4%, 0); }
}

/* Cinematic FX layers */
.hero__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 78% 38%,
    rgba(var(--color-primary-rgb), 0.14) 0%,
    rgba(var(--color-primary-rgb), 0.04) 40%,
    transparent 70%
  );
  opacity: 0.9;
}

.hero__subject-glow {
  position: absolute;
  top: 12%;
  right: 8%;
  width: min(52vw, 520px);
  height: min(45vh, 420px);
  background: radial-gradient(
    ellipse at center,
    rgba(109, 179, 240, 0.22) 0%,
    rgba(var(--color-primary-rgb), 0.1) 35%,
    transparent 68%
  );
  filter: blur(40px);
  opacity: 0.75;
  animation: subjectGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes subjectGlowPulse {
  0% { opacity: 0.6; transform: scale(1) translate3d(0, 0, 0); }
  100% { opacity: 0.85; transform: scale(1.06) translate3d(-2%, 1%, 0); }
}

.hero__radial-light {
  position: absolute;
  top: -8%;
  right: -4%;
  width: min(55vw, 600px);
  height: min(55vw, 600px);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(109, 179, 240, 0.06) 30%,
    transparent 65%
  );
  animation: radialLightDrift 18s ease-in-out infinite alternate;
}

@keyframes radialLightDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.08); opacity: 1; }
}

.hero__particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 6px rgba(109, 179, 240, 0.4);
  opacity: 0;
  animation: particleFloat 12s ease-in-out infinite;
}

.hero__particles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { top: 32%; left: 28%; animation-delay: 1.5s; }
.hero__particles span:nth-child(3) { top: 55%; left: 8%; animation-delay: 3s; }
.hero__particles span:nth-child(4) { top: 72%; left: 22%; animation-delay: 4.5s; }
.hero__particles span:nth-child(5) { top: 25%; left: 45%; animation-delay: 2s; }
.hero__particles span:nth-child(6) { top: 68%; right: 35%; animation-delay: 5s; }
.hero__particles span:nth-child(7) { top: 15%; right: 28%; animation-delay: 6.5s; }
.hero__particles span:nth-child(8) { top: 48%; right: 18%; animation-delay: 8s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0); }
  15% { opacity: 0.35; }
  50% { opacity: 0.2; transform: translate3d(8px, -24px, 0); }
  85% { opacity: 0; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      108deg,
      rgba(4, 10, 22, 0.97) 0%,
      rgba(6, 14, 30, 0.88) 22%,
      rgba(8, 18, 36, 0.62) 48%,
      rgba(10, 22, 40, 0.28) 72%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(6, 14, 30, 0.35) 0%,
      transparent 28%,
      transparent 72%,
      rgba(4, 10, 22, 0.45) 100%
    );
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    transparent 40%,
    rgba(4, 10, 22, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 52rem;
  text-align: left;
}

/* Hero text — pre-animation hidden states */
@media (prefers-reduced-motion: no-preference) {
  .hero--animate:not(.hero--revealed) .hero__eyebrow,
  .hero--animate:not(.hero--revealed) .hero__subtitle,
  .hero--animate:not(.hero--revealed) .hero__meta {
    opacity: 0;
  }

  .hero--animate:not(.hero--revealed) .hero__title-line--1 {
    opacity: 0;
    transform: translate3d(-48px, 0, 0);
  }

  .hero--animate:not(.hero--revealed) .hero__title-line--2 {
    opacity: 0;
    transform: translate3d(48px, 0, 0);
  }

  .hero--animate:not(.hero--revealed) .hero__title-line--3 {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }

  .hero--animate:not(.hero--revealed) .hero__subtitle {
    transform: translate3d(0, 24px, 0);
  }

  .hero--animate:not(.hero--revealed) .hero__cta {
    opacity: 0;
    transform: scale(0.92);
  }
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Barlow Condensed', var(--font-heading), sans-serif;
  font-size: clamp(3.25rem, 11vw, 6.75rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.28);
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line--1,
.hero__title-line--3 {
  color: #fff;
}

.hero__title-line--2 {
  color: #2e7deb;
  text-shadow: 0 0 40px rgba(46, 125, 235, 0.35);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  transform-origin: left center;
}

.hero .btn--lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero .btn--primary {
  box-shadow:
    0 8px 32px rgba(var(--color-primary-rgb), 0.48),
    0 0 40px rgba(var(--color-primary-rgb), 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero .btn--primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 48px rgba(var(--color-primary-rgb), 0.58),
    0 0 48px rgba(var(--color-primary-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.88);
  transform: translateY(-4px);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(var(--color-primary-rgb), 0.15);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__meta-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.4rem;
}

.hero__meta-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero__meta-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

.hero__meta-link:hover {
  color: #2e7deb;
}

/* ---------- SERVICES ---------- */
.services {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: clamp(4.25rem, 8.5vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.services__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.services__glow--heading {
  top: 2%;
  left: -4%;
  width: min(55vw, 620px);
  height: min(40vw, 420px);
  background: radial-gradient(ellipse at 30% 40%, rgba(var(--color-primary-rgb), 0.09) 0%, transparent 68%);
}

.services__glow--cards {
  bottom: 8%;
  right: -6%;
  width: min(58vw, 680px);
  height: min(50vw, 560px);
  background: radial-gradient(ellipse at 60% 50%, rgba(46, 125, 235, 0.07) 0%, transparent 70%);
}

.services__container {
  position: relative;
  z-index: 1;
}

/* Editorial header */
.services__header {
  position: relative;
  text-align: left;
  max-width: 52rem;
  margin: 0;
}

.services__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: clamp(0.9rem, 1.8vw, 1.25rem);
}

.services__heading {
  font-family: 'Barlow Condensed', var(--font-heading), sans-serif;
  font-size: clamp(2.35rem, 7vw, 4.75rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

.services__heading-line {
  display: block;
  color: #14213d;
}

.services__heading-line--accent {
  color: #2e7deb;
}

.services__intro {
  max-width: 40rem;
  margin: clamp(1.35rem, 2.75vw, 2rem) 0 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
}

/* Staggered card grid */
.services__grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr 1.1fr;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  align-items: start;
  max-width: 80rem;
  margin: clamp(2rem, 3.5vw, 2.75rem) auto 0;
}

/* ---- Service card ---- */
.service-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  isolation: isolate;
}

.service-card:hover,
.service-card.is-open,
.service-card:focus-within {
  z-index: 4;
}

.service-card--size-md {
  margin-top: 0;
}

.service-card__surface {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 10px 40px rgba(15, 31, 61, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
  transition:
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

.service-card__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(var(--color-primary-rgb), 0.14) 0%,
    rgba(109, 179, 240, 0.06) 45%,
    transparent 72%
  );
  pointer-events: none !important;
  opacity: 0.6;
  transition: opacity 0.45s ease;
}

.service-card--emergency .service-card__glow {
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(var(--color-primary-rgb), 0.18) 0%,
    rgba(109, 179, 240, 0.08) 50%,
    transparent 75%
  );
}

.service-card--commercial .service-card__glow {
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(61, 143, 217, 0.16) 0%,
    rgba(var(--color-primary-rgb), 0.07) 50%,
    transparent 75%
  );
}

.service-card--property .service-card__glow {
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(109, 179, 240, 0.18) 0%,
    rgba(var(--color-primary-rgb), 0.06) 50%,
    transparent 75%
  );
}

.service-card__shine {
  position: absolute;
  inset: -30% -80%;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 255, 255, 0.1) 52%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-12deg);
  opacity: 0;
  pointer-events: none !important;
}

.service-card:hover .service-card__shine,
.service-card.is-open .service-card__shine {
  opacity: 1;
  animation: serviceCardShine 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes serviceCardShine {
  from { transform: translateX(-120%) skewX(-12deg); }
  to { transform: translateX(120%) skewX(-12deg); }
}

.service-card:hover .service-card__surface,
.service-card.is-open .service-card__surface {
  border-color: rgba(var(--color-primary-rgb), 0.26);
  box-shadow:
    0 20px 48px rgba(var(--color-primary-rgb), 0.12),
    0 10px 24px rgba(15, 31, 61, 0.06),
    0 0 32px rgba(var(--color-primary-rgb), 0.08),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.service-card:hover .service-card__glow,
.service-card.is-open .service-card__glow {
  opacity: 1;
}

.service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 2rem) 0;
  min-height: 19.5rem;
}

.service-card__actions {
  position: relative;
  z-index: 12;
  flex-shrink: 0;
  padding: 1.1rem clamp(1.5rem, 2.5vw, 2rem) clamp(1.35rem, 2.25vw, 1.75rem);
}

.service-card__icon-wrap {
  position: relative;
  margin-bottom: clamp(0.85rem, 1.6vw, 1.15rem);
}

.service-card__icon-glow {
  position: absolute;
  inset: -45%;
  background: radial-gradient(
    circle,
    rgba(46, 125, 235, 0.5) 0%,
    rgba(var(--color-primary-rgb), 0.22) 38%,
    transparent 72%
  );
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-card__icon-glow,
.service-card.is-open .service-card__icon-glow {
  opacity: 1;
}

.service-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  box-shadow:
    0 14px 32px rgba(var(--color-primary-rgb), 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.service-card--size-md .service-card__icon {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 18px;
}

.service-card__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.service-card--size-md .service-card__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.service-card:hover .service-card__icon,
.service-card.is-open .service-card__icon {
  transform: rotate(-7deg) scale(1.06);
  box-shadow:
    0 18px 40px rgba(var(--color-primary-rgb), 0.4),
    0 0 28px rgba(46, 125, 235, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.32rem 0.7rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.07);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--radius-full);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 0.55rem;
}

.service-card__desc {
  flex: 1;
  min-height: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.service-card__cta {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  align-self: flex-start;
  width: auto;
  min-width: 10.85rem;
  height: 44px;
  margin: 0;
  padding: 0 0.5rem 0 1.125rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  touch-action: manipulation;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.service-card__cta-label,
.service-card__cta-arrow {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.service-card__cta:hover {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.28);
}

.service-card__cta:active {
  color: #ffffff;
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: scale(0.98);
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.22);
}

.service-card__cta:focus {
  outline: none;
}

.service-card__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.service-card__cta-ripple {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.16);
  transform: scale(0);
  opacity: 0.55;
  pointer-events: none;
  animation: serviceCtaRipple 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.service-card__cta:hover .service-card__cta-ripple,
.service-card.is-open .service-card__cta .service-card__cta-ripple {
  background: rgba(255, 255, 255, 0.38);
}

@keyframes serviceCtaRipple {
  to {
    transform: scale(4.2);
    opacity: 0;
  }
}

.service-card__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.service-card__cta-arrow svg {
  width: 0.8rem;
  height: 0.8rem;
}

.service-card__cta:hover .service-card__cta-arrow {
  color: var(--color-primary);
  background: #ffffff;
  border-color: #ffffff;
  transform: translateX(2px);
}

.service-card.is-open .service-card__cta .service-card__cta-arrow {
  transform: rotate(180deg);
}

.service-card.is-open .service-card__cta:hover .service-card__cta-arrow {
  transform: rotate(180deg) translateX(2px);
}

/* Expandable list */
.service-card__expand {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.service-card.is-open .service-card__expand {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

.service-card__expand-grid {
  display: block;
  min-height: 0;
}

.service-card__expand-inner {
  overflow: hidden;
  min-height: 0;
}

.service-card__list {
  list-style: none;
  margin: 0;
  padding: 0 clamp(1.75rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
}

.service-card__item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  box-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.4);
}

.service-card__item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    border-color 0.25s ease;
}

.service-card__item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--color-primary-rgb), 0.2);
}

/* Scroll entrance — pre-GSAP hidden */
@media (prefers-reduced-motion: no-preference) {
  .services--animate:not(.services--revealed) .services__eyebrow,
  .services--animate:not(.services--revealed) .services__heading-line,
  .services--animate:not(.services--revealed) .services__intro,
  .services--animate:not(.services--revealed) .service-card {
    opacity: 0;
  }

  .services--animate:not(.services--revealed) .services__heading-line,
  .services--animate:not(.services--revealed) .services__intro,
  .services--animate:not(.services--revealed) .service-card {
    transform: translateY(28px);
  }
}

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 32rem;
    margin-top: clamp(2rem, 5vw, 2.75rem);
  }

  .service-card--size-lg .service-card__content,
  .service-card--size-md .service-card__content {
    min-height: 0;
  }

  .service-card__content {
    padding: 1.65rem 1.5rem 0;
  }

  .service-card__actions {
    padding: 1rem 1.5rem 1.5rem;
  }

  .service-card__list {
    padding: 0 1.65rem 1.65rem;
  }
}

@media (max-width: 640px) {
  .services__heading {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .services__intro {
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card__surface,
  .service-card__icon,
  .service-card__cta,
  .service-card__cta-arrow,
  .service-card__expand,
  .service-card__item {
    transition: none !important;
    animation: none !important;
  }

  .service-card__cta:hover {
    transform: none;
  }

  .service-card__cta:active {
    transform: none;
  }

  .service-card__cta-ripple {
    animation: none;
    display: none;
  }

  .service-card.is-open .service-card__expand {
    opacity: 1;
  }

  .service-card:hover .service-card__surface,
  .service-card.is-open .service-card__surface {
    box-shadow:
      0 10px 40px rgba(15, 31, 61, 0.05),
      0 1px 0 rgba(255, 255, 255, 0.95) inset;
  }

  .service-card:hover .service-card__shine,
  .service-card.is-open .service-card__shine {
    animation: none;
    opacity: 0;
  }

  .service-card__item.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- REVIEWS (PREMIUM CAROUSEL) ---------- */
.reviews {
  --review-card-width: 380px;
  --review-card-height: 420px;
  --review-card-gap: 32px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
}

.reviews.section {
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
}

.reviews__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  pointer-events: none;
}

.reviews__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.reviews__glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(1100px, 140vw);
  height: min(680px, 90vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(var(--color-primary-rgb), 0.07) 0%,
    rgba(109, 179, 240, 0.05) 38%,
    transparent 72%
  );
  filter: blur(48px);
  opacity: 1;
  pointer-events: none;
}

.reviews__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.reviews__blob--1 {
  top: -6%;
  right: -5%;
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.06) 0%, transparent 70%);
}

.reviews__blob--2 {
  bottom: -10%;
  left: -8%;
  width: min(36vw, 380px);
  height: min(36vw, 380px);
  background: radial-gradient(circle, rgba(109, 179, 240, 0.06) 0%, transparent 72%);
}

.reviews__container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
}

/* Header */
.reviews__header {
  margin-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
}

.reviews__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.reviews__header-copy {
  max-width: 42rem;
  position: relative;
  z-index: 2;
}

.reviews__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: clamp(0.85rem, 1.6vw, 1.15rem);
}

.reviews__title {
  position: relative;
  z-index: 2;
  font-family: 'Barlow Condensed', var(--font-heading), sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #14213d;
  opacity: 1;
  margin: 0;
}

.reviews__title-accent {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .reviews__title {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .reviews__title {
    font-size: 64px;
  }
}

.reviews__subtitle {
  max-width: 34rem;
  margin: clamp(1.1rem, 2vw, 1.5rem) 0 0;
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  line-height: 1.75;
  color: #64748b;
}

/* Yelp pill button */
.reviews__yelp-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #14213d;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--color-primary-rgb), 0.16);
  border-radius: var(--radius-full);
  box-shadow:
    0 8px 28px rgba(var(--color-primary-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.reviews__yelp-btn:hover {
  transform: translateY(-2px);
  color: var(--color-primary-dark);
  border-color: rgba(var(--color-primary-rgb), 0.28);
  box-shadow:
    0 14px 36px rgba(var(--color-primary-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.reviews__yelp-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Trust indicators */
.reviews__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 2.5vw, 2.5rem);
  width: min(68%, 58rem);
  max-width: 58rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3rem);
}

.reviews__trust-card {
  position: relative;
  padding: clamp(1.375rem, 1.6vw, 1.625rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e8eef8;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(15, 31, 61, 0.04);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.reviews__trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 50% 115%,
    rgba(var(--color-primary-rgb), 0.1) 0%,
    rgba(var(--color-primary-rgb), 0.04) 42%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.reviews__trust-card > * {
  position: relative;
  z-index: 1;
}

.reviews__trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--color-primary-rgb), 0.28);
  box-shadow:
    0 14px 36px rgba(var(--color-primary-rgb), 0.1),
    0 6px 20px rgba(15, 31, 61, 0.06);
}

.reviews__trust-card:hover::before {
  opacity: 1;
}

.reviews__trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.07);
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews__trust-card:hover .reviews__trust-card-icon {
  transform: scale(1.08);
}

.reviews__trust-card-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.reviews__trust-card-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #14213d;
}

.reviews__trust-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #64748b;
}

@media (min-width: 1024px) {
  .reviews__trust-card-text {
    font-size: 16px;
  }
}

/* Carousel */
.reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: calc(var(--review-card-width) * 3 + var(--review-card-gap) * 2 + 7rem);
  margin: 0 auto clamp(2.5rem, 4vw, 3.25rem);
  padding: 0.5rem 0;
}

.reviews__carousel-viewport {
  flex: 0 0 auto;
  width: calc(var(--review-card-width) * 3 + var(--review-card-gap) * 2);
  max-width: 100%;
  overflow: hidden;
  padding: 12px 0 14px;
  cursor: grab;
  touch-action: pan-y;
}

.reviews__carousel-viewport.is-dragging {
  cursor: grabbing;
}

.reviews__carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--review-card-gap);
  will-change: transform;
}

.reviews__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid #e4ecf8;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(15, 31, 61, 0.06);
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.reviews__nav svg {
  width: 1.1rem;
  height: 1.1rem;
}

.reviews__nav:hover {
  background: #ffffff;
  border-color: rgba(var(--color-primary-rgb), 0.25);
  box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.1);
}

.reviews__nav:active {
  transform: scale(0.97);
}

/* Review cards */
.review-card {
  flex: 0 0 var(--review-card-width);
  width: var(--review-card-width);
  height: var(--review-card-height);
  user-select: none;
}

.review-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e4ecf8;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(15, 31, 61, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

.review-card:hover .review-card__inner {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 40px rgba(var(--color-primary-rgb), 0.1);
}

.review-card__quote {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  opacity: 0.05;
  pointer-events: none;
}

.review-card__quote svg {
  width: 100%;
  height: 100%;
}

.review-card__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-right: 0.5rem;
}

.review-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.125rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.review-card__star {
  width: 14px;
  height: 14px;
}

.review-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #3d4f63;
  font-style: normal;
  overflow-wrap: break-word;
}

.review-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
  padding-top: 1.25rem;
}

.review-card__rule {
  width: 100%;
  height: 1px;
  background: #e4ecf8;
}

.review-card__author cite {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: #14213d;
  line-height: 1.35;
}

.review-card__author span {
  display: block;
  margin-top: 0.2rem;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.45;
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.review-card__verified::before {
  content: '✓';
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

/* Reviews responsive */
@media (max-width: 1240px) {
  .reviews__carousel {
    max-width: calc(var(--review-card-width) * 2 + var(--review-card-gap) + 7rem);
  }

  .reviews__carousel-viewport {
    width: calc(var(--review-card-width) * 2 + var(--review-card-gap));
  }
}

@media (max-width: 1024px) {
  .reviews__header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews__yelp-btn {
    align-self: flex-start;
  }

  .reviews__nav {
    display: none;
  }

  .reviews__carousel {
    max-width: min(92%, var(--review-card-width));
    gap: 0;
  }

  .reviews__carousel-viewport {
    width: var(--review-card-width);
  }
}

@media (max-width: 900px) {
  .reviews__trust-grid {
    width: min(82%, 28rem);
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 700px) {
  .reviews {
    --review-card-width: min(380px, calc(100vw - 2.5rem));
  }

  .reviews__trust-grid {
    width: min(90%, 22rem);
  }

  .review-card:hover .review-card__inner {
    transform: none;
    border-color: #e4ecf8;
    box-shadow: 0 6px 24px rgba(15, 31, 61, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__yelp-btn,
  .reviews__nav,
  .reviews__trust-card,
  .reviews__trust-card-icon,
  .review-card,
  .review-card__inner {
    transition: none !important;
  }

  .reviews__trust-card:hover {
    transform: none;
  }

  .reviews__trust-card:hover .reviews__trust-card-icon {
    transform: none;
  }

  .reviews__trust-card:hover::before {
    opacity: 0;
  }

  .review-card:hover .review-card__inner {
    transform: none;
  }
}

/* Reviews scroll animation — pre-GSAP hidden states */
@media (prefers-reduced-motion: no-preference) {
  .reviews--animate:not(.reviews--revealed) .reviews__veil {
    opacity: 0;
  }

  .reviews--animate:not(.reviews--revealed) .reviews__glow {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .reviews--animate:not(.reviews--revealed) .reviews__eyebrow,
  .reviews--animate:not(.reviews--revealed) .reviews__subtitle,
  .reviews--animate:not(.reviews--revealed) .reviews__yelp-btn,
  .reviews--animate:not(.reviews--revealed) .reviews__trust-grid {
    opacity: 0;
    transform: translateY(24px);
  }

  .reviews--animate:not(.reviews--revealed) .reviews__carousel {
    opacity: 0;
    transform: translateY(36px);
  }

  .reviews--animate:not(.reviews--revealed) .review-card {
    opacity: 0;
  }
}

.reviews--revealed .reviews__veil {
  opacity: 1;
}

.reviews--revealed .reviews__title,
.reviews__title {
  opacity: 1;
  visibility: visible;
}

/* ---------- SECTION WAVE (SERVICES → ABOUT) ---------- */
.section-wave--services-about {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #ffffff;
  line-height: 0;
}

.section-wave__svg {
  display: block;
  width: 100%;
  height: clamp(3.25rem, 5.5vw, 5rem);
}

/* ---------- ABOUT (LUXURY) ---------- */
.about {
  position: relative;
  overflow: hidden;
  background: #f6f9fe;
  background-image: linear-gradient(180deg, #f6f9fe 0%, #f3f8ff 48%, #f6f9fe 100%);
  padding-top: clamp(4rem, 6.5vw, 5.25rem);
  padding-bottom: clamp(4rem, 6.5vw, 5.25rem);
}

.about.section {
  padding-top: clamp(4rem, 6.5vw, 5.25rem);
  padding-bottom: clamp(4rem, 6.5vw, 5.25rem);
}

.about__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__content-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 980px);
  height: 75%;
  background: radial-gradient(
    ellipse at 50% 48%,
    rgba(30, 99, 198, 0.07) 0%,
    rgba(109, 179, 240, 0.04) 42%,
    transparent 72%
  );
  opacity: 1;
  pointer-events: none;
}

.about__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.about__blob--1 {
  top: 8%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 99, 198, 0.06) 0%, transparent 70%);
}

.about__blob--2 {
  bottom: 4%;
  right: -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(109, 179, 240, 0.06) 0%, transparent 72%);
}

.about__blob--3 {
  display: none;
}

.about__container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3.5vw, 3rem);
  align-items: center;
  min-height: 520px;
}

/* ---- Image column (50%) ---- */
.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about__frame {
  position: relative;
  width: min(100%, 660px);
}

.about__image-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(30, 99, 198, 0.14),
    0 12px 32px rgba(15, 31, 61, 0.08);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__frame:hover .about__image-wrap {
  transform: scale(1.03);
  box-shadow:
    0 36px 80px rgba(30, 99, 198, 0.18),
    0 16px 40px rgba(15, 31, 61, 0.1),
    0 0 48px rgba(109, 179, 240, 0.12);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.about__float-badge {
  position: absolute;
  left: 1.35rem;
  bottom: 1.35rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #14213d;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow:
    0 8px 32px rgba(30, 99, 198, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  animation: aboutBadgeFloat 3.4s ease-in-out infinite;
}

.about__float-badge-dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #1e63c6;
  box-shadow: 0 0 0 4px rgba(30, 99, 198, 0.2);
  animation: aboutBadgePulse 2.4s ease-in-out infinite;
}

@keyframes aboutBadgePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(30, 99, 198, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(30, 99, 198, 0.06); }
}

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

/* ---- Content column (50%) ---- */
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: 0;
}

.about__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1e63c6;
  margin-bottom: 0.85rem;
}

.about__heading {
  font-family: 'Barlow Condensed', var(--font-heading), sans-serif;
  font-size: clamp(2.75rem, 4.8vw, 4.625rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.about__heading-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.about__heading-line {
  display: block;
  color: #14213d;
  will-change: transform;
}

.about__heading-line--accent {
  color: #1e63c6;
}

.about__copy {
  margin-bottom: 1.15rem;
}

.about__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.about__text:last-child {
  margin-bottom: 0;
}

/* 2×2 feature grid */
.about__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.about__feature-card {
  padding: 0.9rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(30, 99, 198, 0.12);
  border-radius: 16px;
  box-shadow:
    0 8px 28px rgba(15, 31, 61, 0.06),
    0 4px 16px rgba(30, 99, 198, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.about__feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 99, 198, 0.2);
  box-shadow:
    0 14px 36px rgba(15, 31, 61, 0.08),
    0 8px 24px rgba(30, 99, 198, 0.09),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.about__feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  color: #1e63c6;
  background: rgba(30, 99, 198, 0.08);
  border: 1px solid rgba(30, 99, 198, 0.1);
}

.about__feature-card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.about__feature-card-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #14213d;
  margin-bottom: 0.2rem;
}

.about__feature-card-desc {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* CTA row */
.about__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.about__cta {
  margin: 0;
}

.about__cta.btn--primary:hover {
  box-shadow:
    0 12px 40px rgba(30, 99, 198, 0.48),
    0 0 32px rgba(30, 99, 198, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.about__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #14213d;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  box-shadow:
    0 6px 24px rgba(30, 99, 198, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.about__trust-icon {
  width: 1rem;
  height: 1rem;
  color: #1e63c6;
  flex-shrink: 0;
}

/* Scroll entrance — pre-GSAP hidden */
@media (prefers-reduced-motion: no-preference) {
  .about--animate:not(.about--revealed) .about__inner {
    opacity: 0;
    transform: translateY(32px);
  }

  .about--animate:not(.about--revealed) .about__visual {
    opacity: 0;
    transform: translateX(-48px);
  }

  .about--animate:not(.about--revealed) .about__content {
    opacity: 0;
    transform: translateX(48px);
  }

  .about--animate:not(.about--revealed) .about__heading-line {
    transform: translateY(110%);
  }

  .about--animate:not(.about--revealed) .about__feature-card {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
}

/* ---------- CONTACT / CTA ---------- */
.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: #14213d;
}

.contact__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact__bg-wrap {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/images/contact-truck.png');
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  transform: scale(1);
  will-change: transform;
  animation: contactBgZoom 23s ease-in-out infinite alternate;
}

@keyframes contactBgZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(20, 33, 61, 0.9) 0%,
      rgba(20, 33, 61, 0.8) 42%,
      rgba(37, 99, 235, 0.58) 100%
    ),
    linear-gradient(to top, rgba(20, 33, 61, 0.55) 0%, transparent 38%);
  transition: opacity 0.6s ease;
}

.contact__brighten {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.contact:hover .contact__brighten {
  opacity: 1;
}

.contact__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 42%,
    rgba(10, 15, 30, 0.42) 100%
  );
  pointer-events: none;
}

.contact__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact__particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(191, 219, 254, 0.55);
  filter: blur(6px);
  opacity: 0.35;
  will-change: transform, opacity;
  animation: contactParticleDrift 22s linear infinite;
}

.contact__particles span:nth-child(1) {
  top: 18%;
  left: 12%;
  width: 10px;
  height: 10px;
  animation-duration: 26s;
  animation-delay: 0s;
}

.contact__particles span:nth-child(2) {
  top: 62%;
  left: 22%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.45);
  animation-duration: 30s;
  animation-delay: -6s;
}

.contact__particles span:nth-child(3) {
  top: 28%;
  right: 18%;
  width: 8px;
  height: 8px;
  animation-duration: 24s;
  animation-delay: -12s;
}

.contact__particles span:nth-child(4) {
  bottom: 22%;
  right: 28%;
  width: 12px;
  height: 12px;
  animation-duration: 28s;
  animation-delay: -4s;
}

.contact__particles span:nth-child(5) {
  top: 45%;
  left: 48%;
  width: 6px;
  height: 6px;
  background: rgba(147, 197, 253, 0.65);
  animation-duration: 20s;
  animation-delay: -9s;
}

.contact__particles span:nth-child(6) {
  bottom: 35%;
  left: 68%;
  width: 9px;
  height: 9px;
  animation-duration: 32s;
  animation-delay: -15s;
}

@keyframes contactParticleDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.2;
  }
  25% {
    opacity: 0.45;
  }
  50% {
    transform: translate3d(28px, -36px, 0);
    opacity: 0.3;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    transform: translate3d(-18px, -72px, 0);
    opacity: 0.2;
  }
}

.contact__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.contact__glow--1 {
  top: -15%;
  left: 10%;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.28) 0%, transparent 70%);
  opacity: 0.45;
}

.contact__glow--2 {
  bottom: -20%;
  left: 35%;
  width: min(50vw, 500px);
  height: min(50vw, 500px);
  background: radial-gradient(circle, rgba(61, 143, 217, 0.22) 0%, transparent 72%);
  opacity: 0.35;
}

.contact__glow--3 {
  top: 20%;
  right: 8%;
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  background: radial-gradient(circle, rgba(109, 179, 240, 0.18) 0%, transparent 70%);
  opacity: 0.35;
}

.contact__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(5rem, 12vw, 7.5rem);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(20, 33, 61, 0.45) 45%,
    #14213d 100%
  );
  pointer-events: none;
  z-index: 3;
}

.contact__inner {
  position: relative;
  z-index: 2;
}

.contact__content {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact__content-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 36rem);
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.22) 0%,
    rgba(37, 99, 235, 0.08) 42%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.contact__content > :not(.contact__content-glow) {
  position: relative;
  z-index: 1;
}

.contact__title-wrap {
  position: relative;
  margin-bottom: 1.125rem;
}

.contact__title-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 28rem);
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.38) 0%,
    rgba(37, 99, 235, 0.12) 48%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: contactTitleGlowPulse 5s ease-in-out infinite;
}

@keyframes contactTitleGlowPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

.contact__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0;
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(var(--color-primary-rgb), 0.22);
  border: 1px solid rgba(109, 179, 240, 0.35);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.contact__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  list-style: none;
  margin: 0 0 2.75rem;
  padding: 0;
}

.contact__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.contact__trust-item::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  box-shadow: 0 0 12px rgba(109, 179, 240, 0.55);
}

.contact__cta-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.contact__cta-glow {
  position: absolute;
  inset: -35% -15%;
  background: radial-gradient(
    ellipse at center,
    rgba(109, 179, 240, 0.45) 0%,
    rgba(var(--color-primary-rgb), 0.15) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  animation: contactCtaPulse 3.2s ease-in-out infinite;
}

@keyframes contactCtaPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.1);
  }
}

.contact__cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6875rem;
  padding: 1.15rem 2.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius-full);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact__cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 24px 56px rgba(37, 99, 235, 0.42),
    0 0 48px rgba(37, 99, 235, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.contact__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.contact__cta-icon-svg {
  display: block;
  width: 21px;
  height: 21px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.contact__cta-btn:hover .contact__cta-icon-svg {
  transform: translateX(3px) scale(1.1);
}

/* Contact scroll animation — pre-GSAP hidden states */
@media (prefers-reduced-motion: no-preference) {
  .contact--animate:not(.contact--revealed) .contact__badge {
    opacity: 0;
    transform: translateY(20px);
  }

  .contact--animate:not(.contact--revealed) .contact__title {
    opacity: 0;
    transform: translateY(32px);
  }

  .contact--animate:not(.contact--revealed) .contact__subtitle {
    opacity: 0;
    transform: translateY(24px);
  }

  .contact--animate:not(.contact--revealed) .contact__trust-item {
    opacity: 0;
    transform: translateY(18px);
  }

  .contact--animate:not(.contact--revealed) .contact__cta-wrap {
    opacity: 0;
    transform: scale(0.9);
  }
}

@media (max-width: 900px) {
  .contact__bg {
    background-position: 80% center;
  }
}

@media (max-width: 640px) {
  .contact__trust {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2.25rem;
  }

  .contact__cta-wrap {
    display: flex;
    width: 100%;
  }

  .contact__cta-btn {
    width: 100%;
    padding: 1.1rem 1.5rem;
  }

  .contact__bg {
    background-position: 85% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__bg {
    animation: none;
    transform: scale(1.03);
  }

  .contact__particles {
    display: none;
  }

  .contact__title-glow {
    animation: none;
    opacity: 0.4;
  }

  .contact__brighten {
    display: none;
  }

  .contact__cta-glow {
    animation: none;
    opacity: 0.5;
  }

  .contact__cta-btn {
    transition: none;
  }

  .contact__cta-btn:hover {
    transform: none;
  }

  .contact__cta-icon-svg {
    transition: none;
  }

  .contact__cta-btn:hover .contact__cta-icon-svg {
    transform: none;
  }

  .footer__btn {
    transition: none;
  }

  .footer__btn:hover {
    transform: none;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #14213d;
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(5rem, 8vw, 6.25rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer__logo-img {
  display: block;
  height: 76px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  filter:
    brightness(1.08)
    contrast(1.05)
    drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.75rem;
  max-width: 22rem;
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer__btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.footer__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.35rem;
}

.footer__list {
  list-style: none;
}

.footer__list a {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.65rem;
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: #2563eb;
}

.footer__contact {
  list-style: none;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: #2563eb;
}

.footer__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #2563eb;
}

.footer__hours {
  list-style: none;
}

.footer__hours li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.65rem;
}

.footer__hours li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 1.25rem;
}

.footer__bottom {
  padding: 1.75rem 1.25rem 2.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* ---------- FLOATING CALL BUTTON ---------- */
.floating-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-ring 2.5s ease infinite;
}

.floating-call svg {
  width: 22px;
  height: 22px;
}

.floating-call:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.6);
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.5); }
  50% { box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.5), 0 0 0 8px rgba(var(--color-primary-rgb), 0.15); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__desc {
    max-width: 36rem;
  }

  .about__inner {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .header {
    top: 0.625rem;
    padding: 0 0.75rem;
  }

  .header__inner {
    padding: 0.55rem 1rem;
    border-radius: 20px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__logo-img {
    height: 66px;
    max-width: min(290px, 58vw);
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-left: 1px solid var(--glass-border);
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.1);
    transition: right var(--transition);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__menu li {
    width: 100%;
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  }

  .nav__link,
  .nav__cta {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
  }

  .about__visual {
    order: -1;
    max-width: 660px;
    margin: 0 auto;
    width: 100%;
  }

  .about__image-wrap {
    height: min(52vw, 420px);
  }

  .about__content {
    max-width: none;
    margin: 0;
  }

  .about__heading {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

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

  .about__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .about__trust-badge {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 105vh;
    min-height: 105dvh;
    padding: 8.5rem 0 4.5rem;
  }

  .hero__subject-glow {
    right: 0;
    width: 70vw;
    opacity: 0.55;
  }

  .hero__particles span {
    display: none;
  }

  .hero__particles span:nth-child(1),
  .hero__particles span:nth-child(5),
  .hero__particles span:nth-child(8) {
    display: block;
  }

  .hero__eyebrow {
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
  }

  .hero__title {
    margin-bottom: 1.35rem;
    line-height: 0.92;
  }

  .hero__subtitle {
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .hero__meta {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .contact__cta-btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer__desc {
    max-width: none;
  }

  .footer__actions {
    width: 100%;
  }

  .footer__btn {
    flex: 1;
    min-width: calc(50% - 0.375rem);
  }

  .footer__logo-img {
    height: 64px;
    max-width: 240px;
  }

  .floating-call span {
    display: none;
  }

  .floating-call {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg-image {
    animation: none;
    transform: scale(1.05);
  }

  .hero__subject-glow,
  .hero__radial-light,
  .hero__particles span,
  .nav__logo,
  .nav__cta,
  .nav__link.active::after {
    animation: none !important;
  }

  .about--animate:not(.about--revealed) .about__inner,
  .about--animate:not(.about--revealed) .about__visual,
  .about--animate:not(.about--revealed) .about__content,
  .about--animate:not(.about--revealed) .about__heading-line,
  .about--animate:not(.about--revealed) .about__feature-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .about__float-badge {
    animation: none !important;
  }

  .hero--animate:not(.hero--revealed) .hero__eyebrow,
  .hero--animate:not(.hero--revealed) .hero__title-line,
  .hero--animate:not(.hero--revealed) .hero__subtitle,
  .hero--animate:not(.hero--revealed) .hero__cta,
  .hero--animate:not(.hero--revealed) .hero__meta {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero .reveal,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-call {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
