/* ============================================================
   Arctic Air Conditioning 2.0 LLC — Complete Stylesheet
   Light Theme | Brand Blue #2EA3F2
   ============================================================ */

/* ----------------------------------------
   DESIGN TOKENS
   ---------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary: #2EA3F2;
  --color-primary-hover: #1B8FDE;
  --color-primary-soft: rgba(46, 163, 242, 0.12);
  --color-primary-glow: rgba(46, 163, 242, 0.25);
  --color-secondary: #F97316;
  --color-secondary-hover: #EA6C0E;
  --color-accent: #1A3A5C;

  /* Surfaces */
  --color-bg: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-surface-dark: #1A2332;
  --color-surface-darker: #0F1720;

  /* Text */
  --color-text: #1F2937;
  --color-text-light: #6B7280;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #9CA3AF;
  --color-text-on-primary: #FFFFFF;

  /* Borders */
  --color-border: #E5E7EB;
  --color-border-hover: #D1D5DB;
  --color-border-dark: rgba(255, 255, 255, 0.08);

  /* Feedback */
  --color-success: #059669;
  --color-warning: #D97706;
  --color-error: #DC2626;

  /* Google */
  --color-google-star: #FBBC04;
  --color-google-blue: #1A73E8;

  /* Overlays */
  --color-overlay: rgba(0, 0, 0, 0.25);
  --color-overlay-heavy: rgba(0, 0, 0, 0.6);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 56px;
  --space-11: 64px;
  --space-12: 80px;
  --space-13: 100px;
  --space-14: 140px;
  --section-pad: var(--space-13);
  --container-width: 1200px;
  --container-wide: 1400px;
  --gap: 24px;
  --gap-lg: 48px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.14);
  --shadow-card: var(--shadow-sm);
  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-dropdown: 0 12px 36px rgba(0, 0, 0, 0.18);

  /* Borders */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --speed-fast: 0.25s;
  --speed: 0.45s;
  --speed-slow: 0.8s;

  /* Glass */
  --glass-bg: rgba(15, 23, 32, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;

  /* Z-index */
  --z-mobile-overlay: 999;
  --z-nav: 1000;
  --z-dropdown: 1001;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--speed-fast) var(--ease);
}

a:hover {
  color: var(--color-primary-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select,
button {
  font: inherit;
}


/* ----------------------------------------
   TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

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

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

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-description {
  color: var(--color-text-light);
  max-width: 640px;
  font-size: 1.05rem;
}

.section-description--center {
  margin-left: auto;
  margin-right: auto;
}


/* ----------------------------------------
   LAYOUT
   ---------------------------------------- */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

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

.section--surface {
  background-color: var(--color-surface);
}

.section--dark {
  background-color: var(--color-surface-dark);
  color: var(--color-text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-on-dark);
}

.section--dark p {
  color: var(--color-text-on-dark-muted);
}

.section--dark .section-subtitle {
  color: var(--color-primary);
}

.section--accent {
  background-color: var(--color-primary);
  color: white;
}

.section--accent h2,
.section--accent h3 {
  color: white;
}

.grid {
  display: grid;
  gap: var(--gap);
}

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

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

.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.flex {
  display: flex;
}

.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ----------------------------------------
   UTILITY BAR
   ---------------------------------------- */
.utility-bar {
  background-color: var(--color-surface-darker);
  color: var(--color-text-on-dark-muted);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: calc(var(--z-nav) + 1);
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.utility-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.utility-bar a {
  color: var(--color-text-on-dark-muted);
  transition: color var(--speed-fast) var(--ease);
}

.utility-bar a:hover {
  color: var(--color-text-on-dark);
}

.utility-bar__phone {
  font-weight: 600;
  color: var(--color-text-on-dark);
}

.utility-bar__icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
}


/* ----------------------------------------
   NAVIGATION
   ---------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: transparent;
  transition: background-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}

.nav.has-utility {
  top: 36px;
}

.nav.scrolled {
  background: var(--color-surface-darker);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav.scrolled.has-utility {
  top: 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav__logo img {
  max-height: 44px;
  width: auto;
}

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

.nav__link {
  color: var(--color-text-on-dark);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--speed-fast) var(--ease),
              background-color var(--speed-fast) var(--ease);
  white-space: nowrap;
  font-size: 0.95rem;
}

.nav__link:hover {
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.06);
}

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

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  color: var(--color-text-on-dark);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--speed-fast) var(--ease),
              background-color var(--speed-fast) var(--ease);
  white-space: nowrap;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__dropdown-toggle:hover {
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.06);
}

.nav__dropdown-toggle .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--speed-fast) var(--ease);
}

.nav__dropdown:hover .nav__dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(15, 15, 30, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  padding: 8px 0;
  z-index: var(--z-dropdown);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--color-text-on-dark-muted);
  transition: background-color var(--speed-fast) var(--ease),
              color var(--speed-fast) var(--ease),
              border-color var(--speed-fast) var(--ease);
  border-left: 3px solid transparent;
  font-size: 0.9rem;
}

.nav__dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: white;
  border-left-color: var(--color-primary);
}

/* Nav CTA */
.nav__cta {
  background-color: var(--color-secondary);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--speed-fast) var(--ease),
              transform var(--speed-fast) var(--ease);
  white-space: nowrap;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__cta:hover {
  background-color: var(--color-secondary-hover);
  color: white;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  z-index: calc(var(--z-nav) + 2);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

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

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

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-overlay-heavy);
  z-index: var(--z-mobile-overlay);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.nav-overlay.active {
  opacity: 1;
}


/* ----------------------------------------
   HERO
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero--short {
  min-height: 50vh;
}

.hero__bg--photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: white;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-lg);
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  display: inline-block;
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: 0s;
}

.hero__title {
  color: white;
  margin-bottom: var(--space-4);
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: 0.15s;
}

.hero__text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
  font-size: 1.1rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: 0.3s;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: 0.45s;
}


/* ----------------------------------------
   HERO BADGE
   ---------------------------------------- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
  animation: fadeInUp 0.6s var(--ease-out) both;
}
.hero__stars {
  color: var(--color-google-star);
  font-weight: 600;
}

/* ----------------------------------------
   SECTION FOOTER
   ---------------------------------------- */
.section__footer {
  text-align: center;
  margin-top: var(--space-8);
}

/* ----------------------------------------
   SECTION HEADER
   ---------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

/* ----------------------------------------
   HERO FORM CARD
   ---------------------------------------- */
.hero__form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: 0.4s;
}

.hero__form-card h3 {
  color: var(--color-text);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.hero__form-card .form-group {
  margin-bottom: 16px;
}

.hero__form-card .btn {
  width: 100%;
  justify-content: center;
}


/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--speed) var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.2;
}

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

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: white;
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: white;
}

.section--dark .btn--secondary {
  border-color: white;
  color: white;
}

.section--dark .btn--secondary:hover {
  background-color: white;
  color: var(--color-text);
}

.btn--cta {
  background-color: var(--color-secondary);
  color: white;
}

.btn--cta:hover {
  background-color: var(--color-secondary-hover);
  color: white;
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn--outline-white:hover {
  background-color: white;
  color: var(--color-text);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn svg,
.btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ----------------------------------------
   CARDS
   ---------------------------------------- */
.card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

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

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

.card__body {
  padding: 24px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.card__text {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.card__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: gap var(--speed-fast) var(--ease),
              color var(--speed-fast) var(--ease);
}

.card__link::after {
  content: '\2192';
  transition: transform var(--speed-fast) var(--ease);
}

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

.card__link:hover::after {
  transform: translateX(4px);
}


/* ----------------------------------------
   SERVICE CATEGORY CARDS
   ---------------------------------------- */
.service-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
  border-bottom: 3px solid var(--color-primary);
}

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

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

.service-card .card__body {
  padding: 24px;
}

.service-card .card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-card .card__text {
  color: var(--color-text-light);
  line-height: 1.6;
}

.service-card .card__link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.service-card .card__link::after {
  content: '\2192';
  transition: transform var(--speed-fast) var(--ease);
}

.service-card .card__link:hover::after {
  transform: translateX(4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}


/* ----------------------------------------
   TRUST / WHY CHOOSE US
   ---------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
}

.trust-item__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin: 0 auto var(--space-4);
}

.trust-item__icon svg {
  width: 48px;
  height: 48px;
}

.trust-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.trust-item__text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section--dark .trust-item__title {
  color: var(--color-text-on-dark);
}

.section--dark .trust-item__text {
  color: var(--color-text-on-dark-muted);
}


/* ----------------------------------------
   REVIEW BADGE
   ---------------------------------------- */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-badge__stars {
  display: flex;
  gap: 2px;
  color: var(--color-google-star);
}

.review-badge__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-badge__rating {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
}

.review-badge__count {
  color: var(--color-google-blue);
  font-size: 0.9rem;
}

.section--dark .review-badge__rating {
  color: var(--color-text-on-dark);
}


/* ----------------------------------------
   REVIEW CARDS
   ---------------------------------------- */
.review-card {
  background-color: var(--color-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-google-star);
  margin-bottom: 8px;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-card__text {
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
  font-size: 0.95rem;
}

.review-card__google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.review-card__google img {
  width: 16px;
  height: 16px;
}


/* ----------------------------------------
   CTA BANNER SECTION
   ---------------------------------------- */
.cta-section {
  padding: var(--space-12) 0;
  background-color: var(--color-primary);
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.cta-section .btn--outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  transition: all var(--speed) var(--ease);
}

.cta-section .btn--outline:hover {
  background-color: white;
  color: var(--color-primary);
}

.cta-section .btn--cta {
  background-color: var(--color-secondary);
  color: white;
}

.cta-section .btn--cta:hover {
  background-color: var(--color-secondary-hover);
}

.cta-section .cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}


/* ----------------------------------------
   SERVICE AREA TAGS
   ---------------------------------------- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tag {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--color-surface);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color var(--speed-fast) var(--ease),
              color var(--speed-fast) var(--ease);
  text-decoration: none;
}

.area-tag:hover {
  background-color: var(--color-primary);
  color: white;
}


/* ----------------------------------------
   BREADCRUMBS
   ---------------------------------------- */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.875rem;
  color: var(--color-text-on-dark-muted);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs__separator {
  opacity: 0.5;
}

.breadcrumbs a {
  color: var(--color-text-on-dark-muted);
  transition: color var(--speed-fast) var(--ease);
}

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

.breadcrumbs__current {
  color: var(--color-text-on-dark);
}


/* ----------------------------------------
   FAQ ACCORDION
   ---------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  gap: var(--space-4);
  line-height: 1.3;
  transition: color var(--speed-fast) var(--ease);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--speed-fast) var(--ease);
  font-weight: 400;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section--dark .faq-item {
  border-bottom-color: var(--color-border-dark);
}

.section--dark .faq-question {
  color: var(--color-text-on-dark);
}

.section--dark .faq-answer p {
  color: var(--color-text-on-dark-muted);
}


/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  background-color: var(--color-surface-dark);
  padding: var(--space-12) 0 var(--space-7);
  color: var(--color-text-on-dark-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
}

.footer__brand {
  padding-right: var(--space-4);
}

.footer__brand-logo {
  max-height: 44px;
  margin-bottom: var(--space-4);
}

.footer__brand-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  color: var(--color-text-on-dark-muted);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-on-dark-muted);
  transition: background-color var(--speed-fast) var(--ease),
              color var(--speed-fast) var(--ease);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  color: white;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  color: var(--color-text-on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
}

.footer__links a {
  display: block;
  padding: 4px 0;
  color: var(--color-text-on-dark-muted);
  font-size: 0.9rem;
  transition: color var(--speed-fast) var(--ease),
              padding-left var(--speed-fast) var(--ease);
}

.footer__links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

.footer__contact-item a {
  color: var(--color-text-on-dark-muted);
}

.footer__contact-item a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-dark);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-on-dark-muted);
}

.footer__bottom a {
  color: var(--color-text-on-dark-muted);
}

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


/* ----------------------------------------
   STATS BAR
   ---------------------------------------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-9);
  padding: var(--space-8) 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: var(--space-2);
}

.section--dark .stat__label {
  color: var(--color-text-on-dark-muted);
}

.section--accent .stat__number {
  color: white;
}

.section--accent .stat__label {
  color: rgba(255, 255, 255, 0.8);
}


/* ----------------------------------------
   PROCESS STEPS (How It Works)
   ---------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.process-step__text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-step__connector {
  position: absolute;
  top: 60px;
  right: -24px;
  width: 48px;
  height: 2px;
  background-color: var(--color-border);
}

.process-step:last-child .process-step__connector {
  display: none;
}

.section--dark .process-step__title {
  color: var(--color-text-on-dark);
}

.section--dark .process-step__text {
  color: var(--color-text-on-dark-muted);
}


/* ----------------------------------------
   DRIVE-TIME BADGE (Area Pages)
   ---------------------------------------- */
.drive-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

.drive-time-badge svg {
  width: 16px;
  height: 16px;
}


/* ----------------------------------------
   FORMS
   ---------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: border-color var(--speed-fast) var(--ease),
              box-shadow var(--speed-fast) var(--ease);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%236B7280'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.form-error {
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 4px;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--color-error);
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}


/* ----------------------------------------
   RELATED SERVICES TAGS
   ---------------------------------------- */
.related-services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.related-tag {
  padding: 8px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color var(--speed-fast) var(--ease),
              color var(--speed-fast) var(--ease);
  text-decoration: none;
}

.related-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}


/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--speed-slow) var(--ease-out),
              transform var(--speed-slow) var(--ease-out);
}

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

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.7s; }


/* ----------------------------------------
   MISC UTILITIES
   ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }


/* ----------------------------------------
   RESPONSIVE — 1024px (Tablet)
   ---------------------------------------- */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  /* Navigation — show hamburger, hide desktop links */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--color-surface-darker);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: calc(var(--z-nav) + 1);
    overflow-y: auto;
  }

  .nav__links.active {
    transform: translateX(0);
  }

  .nav-overlay {
    display: block;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  /* Dropdown — mobile accordion */
  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    border-radius: var(--radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0;
    min-width: unset;
  }

  .nav__dropdown.active .nav__dropdown-menu {
    max-height: 400px;
    padding: 4px 0;
  }

  .nav__dropdown-item {
    padding-left: 32px;
  }

  /* Grids */
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .process-step__connector {
    display: none;
  }

  /* Hero */
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__form-card {
    max-width: 100%;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Utility bar */
  .utility-bar__left {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
  }
}


/* ----------------------------------------
   RESPONSIVE — 768px (Mobile Landscape)
   ---------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Grids collapse to single column */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

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

  /* Footer single column */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .footer__brand {
    padding-right: 0;
  }

  /* Stats bar wrap */
  .stats-bar {
    gap: var(--space-7);
  }

  .stat__number {
    font-size: 2rem;
  }

  /* CTA buttons stack */
  .cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero--short {
    min-height: 40vh;
  }

  .hero__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4));
  }

  /* Form row single column */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Review cards */
  .review-card {
    padding: 20px;
  }

  /* Area tags center */
  .area-tags {
    justify-content: center;
  }

  /* Related services center */
  .related-services {
    justify-content: center;
  }
}


/* ----------------------------------------
   RESPONSIVE — 480px (Small Mobile)
   ---------------------------------------- */
@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Buttons full width */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  /* Typography minimums */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Hero form card tighter padding */
  .hero__form-card {
    padding: 24px;
  }

  /* Footer */
  .footer {
    padding: var(--space-9) 0 var(--space-6);
  }

  .footer__bottom {
    font-size: 0.8rem;
  }

  /* Stats */
  .stat__number {
    font-size: 1.75rem;
  }

  .stat__label {
    font-size: 0.8rem;
  }

  /* Process steps */
  .process-step {
    padding: 24px 16px;
  }

  /* Trust items */
  .trust-item {
    padding: 24px 16px;
  }

  /* Nav links panel wider */
  .nav__links {
    width: 100%;
  }

  /* CTA section */
  .cta-section {
    padding: var(--space-9) 0;
  }

  /* Card body */
  .card__body {
    padding: 20px;
  }

  /* FAQ */
  .faq-question {
    font-size: 1rem;
    padding: 16px 0;
  }
}


/* ----------------------------------------
   REDUCED MOTION
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__label,
  .hero__title,
  .hero__text,
  .hero__actions,
  .hero__form-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
