/* =========================================================
   CTownLineWorks - Main Stylesheet
   Website Redesign By Rooted.com
   ========================================================= */

/* === 1. VARIABLES === */
:root {
  --clr-orange:       #E8671A;
  --clr-orange-dark:  #C85810;
  --clr-yellow:       #FFC107;
  --clr-black:        #111111;
  --clr-dark:         #1a1a1a;
  --clr-dark-2:       #222222;
  --clr-text:         #1c1c1c;
  --clr-text-muted:   #666666;
  --clr-white:        #ffffff;
  --clr-bg-light:     #f5f5f5;
  --clr-border:       #e5e5e5;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', sans-serif;

  --section-py:    96px;
  --container-px:  clamp(1.25rem, 4vw, 2.5rem);
  --container-max: 1200px;
  --header-h:      96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);

  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--clr-text);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  color: var(--clr-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.65rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.32rem); font-weight: 700; }

/* === 4. UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-orange);
  opacity: 0.4;
  flex-shrink: 0;
}

.section-title { margin-bottom: 14px; }

.section-sub {
  font-size: 1.06rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

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

.btn--primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  border-color: var(--clr-orange);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--clr-orange-dark);
  border-color: var(--clr-orange-dark);
  box-shadow: 0 5px 18px rgba(232,103,26,0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: var(--clr-white);
  color: var(--clr-black);
  border-color: var(--clr-white);
  transform: translateY(-1px);
}

.btn--yellow {
  background: var(--clr-yellow);
  color: var(--clr-black);
  border-color: var(--clr-yellow);
}
.btn--yellow:hover {
  background: #e6ac00;
  border-color: #e6ac00;
  box-shadow: 0 5px 18px rgba(255,193,7,0.35);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-text);
  border-color: #ccc;
}
.btn--outline:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* Accessibility */
.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;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-orange);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   5. TOP BAR
   ========================================================= */
.top-bar {
  background: var(--clr-black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.top-bar__left svg { color: var(--clr-orange); flex-shrink: 0; }

.top-bar__sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-yellow);
  letter-spacing: -0.3px;
  transition: color var(--transition);
  white-space: nowrap;
}
.top-bar__phone svg { color: var(--clr-orange); flex-shrink: 0; }
.top-bar__phone:hover { color: #fff; }

/* =========================================================
   6. SITE HEADER (sticky)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.header-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.is-active { color: var(--clr-orange); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 5px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--clr-white);
  z-index: 850;
  padding: 24px var(--container-px) 32px;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(105%);
  transition: transform 0.32s ease, visibility 0.32s;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu .nav-link {
  display: block;
  padding: 15px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--clr-border);
}

.mobile-menu__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================
   7. HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(90vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 7s ease-out;
  will-change: transform;
}

.hero.is-loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.38) 0%,
    rgba(5, 5, 5, 0.62) 50%,
    rgba(5, 5, 5, 0.85) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: clamp(60px, 9vw, 100px);
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-yellow);
  margin-bottom: 22px;
}

.hero__eyebrow-sep {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--clr-yellow);
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.06;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--clr-yellow);
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Scroll hint animation */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll-hint:hover { color: rgba(255,255,255,0.75); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* =========================================================
   8. TRUST BAR  (white bg - icons render cleanly)
   ========================================================= */
.trust-bar {
  background: var(--clr-white);
  border-top: 4px solid var(--clr-orange);
  border-bottom: 1px solid var(--clr-border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--clr-border);
  transition: background var(--transition);
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--clr-bg-light); }

.trust-item__icon {
  width: 56px; height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
}

.trust-item__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* =========================================================
   9. SERVICES SECTION
   ========================================================= */
.services {
  padding: var(--section-py) 0;
  background: var(--clr-bg-light);
}

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

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--clr-dark);
}

.service-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  will-change: transform;
}

.service-card:hover .service-card__photo img { transform: scale(1.06); }

.service-card__tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.service-card__tag-text {
  display: inline-block;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
}

.service-card__body {
  padding: 24px 26px 28px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.service-card:hover .service-card__body { border-top-color: var(--clr-orange); }

.service-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card__body p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* =========================================================
   10. BEFORE / AFTER SECTION
   ========================================================= */
.before-after {
  padding: var(--section-py) 0;
  background: var(--clr-dark);
}

.before-after .section-header .section-title { color: var(--clr-white); }
.before-after .section-header .section-eyebrow { color: var(--clr-yellow); }
.before-after .section-header .section-eyebrow::before,
.before-after .section-header .section-eyebrow::after { background: var(--clr-yellow); }
.before-after .section-sub { color: rgba(255,255,255,0.55); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ba-wrapper {}

.ba-service-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-service-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--clr-orange);
  flex-shrink: 0;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 16 / 10;
  background: var(--clr-dark-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle__circle {
  width: 46px; height: 46px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.32);
  flex-shrink: 0;
  position: relative;
  z-index: 11;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ba-slider:active .ba-handle__circle {
  transform: scale(1.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.ba-tag {
  position: absolute;
  top: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(0,0,0,0.55);
  color: var(--clr-white);
  z-index: 8;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ba-tag--before { left: 14px; }
.ba-tag--after  { right: 14px; }

/* 3-item ba-grid: last odd child fills its own centered row */
.ba-wrapper:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* =========================================================
   11. QUOTE FORM SECTION
   ========================================================= */
.quote-section {
  padding: var(--section-py) 0;
  background: var(--clr-white);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.quote-text h2 { margin-bottom: 16px; }

.quote-text .intro {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.quote-trust-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.quote-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
}

.quote-trust-list .chk {
  width: 20px; height: 20px;
  background: var(--clr-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-trust-list .chk svg { color: #fff; }

.quote-phone-block {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
}

.quote-phone-block p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.quote-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--clr-orange);
  line-height: 1;
  transition: color var(--transition);
}
.quote-phone-link:hover { color: var(--clr-orange-dark); }

/* Form */
.quote-form-wrap {
  background: var(--clr-bg-light);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  border: 1px solid var(--clr-border);
}

.form-stack { display: flex; flex-direction: column; gap: 18px; }

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(232,103,26,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 4l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-message {
  display: none;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-message.is-success {
  background: #d1fae5; color: #065f46;
  border: 1px solid #a7f3d0; display: block;
}
.form-message.is-error {
  background: #fee2e2; color: #991b1b;
  border: 1px solid #fca5a5; display: block;
}

.form-note {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-align: center;
}

/* =========================================================
   12. FINAL CTA STRIP
   ========================================================= */
.cta-strip {
  background: var(--clr-black);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--clr-white);
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.cta-strip__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.08rem;
  margin-bottom: 36px;
}

.cta-strip__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.cta-strip__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.cta-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-yellow);
  flex-shrink: 0;
}

/* =========================================================
   13. SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--clr-black);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--clr-yellow); }
.footer-contact-link svg { color: var(--clr-orange); flex-shrink: 0; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--clr-white); padding-left: 4px; }

.footer-area-text {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
}
.footer-area-text strong {
  color: rgba(255,255,255,0.88);
  display: block;
  margin-bottom: 6px;
}

.footer-bottom { padding: 20px 0; }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy,
.footer-credit { font-size: 13px; color: rgba(255,255,255,0.28); }

.footer-credit a {
  color: rgba(255,255,255,0.48);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--clr-white); }

/* =========================================================
   14. MOBILE FLOATING CTA
   ========================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.13);
  padding: 10px var(--container-px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transition: transform 0.3s ease;
}

.mobile-cta-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-cta-bar .btn { justify-content: center; font-size: 14px; padding: 13px; }

/* =========================================================
   15. RESPONSIVE - TABLET 1024px
   ========================================================= */
@media (max-width: 1024px) {
  :root { --section-py: 76px; }

  .top-bar__left span:not(.top-bar__sep):nth-child(n+3) { display: none; }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

/* =========================================================
   16. RESPONSIVE - MOBILE 768px
   ========================================================= */
@media (max-width: 768px) {
  :root { --section-py: 60px; --header-h: 68px; }

  .top-bar__left { display: none; }
  .top-bar__inner { justify-content: center; }
  .top-bar__phone { font-size: 1.2rem; }

  .header-logo img { height: 54px; }

  .site-nav,
  .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: calc(88vh - var(--header-h)); }
  .hero h1 { font-size: 2.3rem; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .trust-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .trust-item {
    border-bottom: 1px solid var(--clr-border);
  }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--clr-border); }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:last-child,
  .trust-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .services__grid { grid-template-columns: 1fr; gap: 18px; }

  .ba-grid { grid-template-columns: 1fr; gap: 28px; }
  .ba-slider { aspect-ratio: 4 / 3; }

  .quote-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .cta-strip { padding: 60px 0; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .cta-strip__actions .btn { width: 100%; max-width: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* =========================================================
   17. RESPONSIVE - SMALL MOBILE 480px
   ========================================================= */
@media (max-width: 480px) {
  :root { --section-py: 50px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.2px; }
  h2 { font-size: 1.65rem; }
  .quote-form-wrap { padding: 24px 18px; }
  .cta-strip h2 { font-size: 1.5rem; }
}
