/* ============================================================
   BULL CITY HAUL — style.css
   Palette: Forest Green + Cream + Burnt Orange
   Fonts: Barlow Condensed (display) + Lato (body)
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --green-dark:   #1a3025;
  --green-mid:    #24452f;
  --green-light:  #2f5c3e;
  --cream:        #f5f0e8;
  --cream-dark:   #ede7d8;
  --orange:       #e8621a;
  --orange-dark:  #c95010;
  --orange-light: #f07a38;
  --white:        #ffffff;
  --gray-100:     #f8f8f5;
  --gray-200:     #e8e5df;
  --gray-500:     #8a8578;
  --gray-700:     #4a4640;
  --text-dark:    #1e1c18;
  --text-body:    #3d3a34;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Lato', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,26,0.1);
  border: 1px solid rgba(232,98,26,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--orange-light);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.section-desc.light { color: rgba(255,255,255,0.75); }

.accent { color: var(--orange); }
.accent-light { color: var(--orange-light); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232,98,26,0.4);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,98,26,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-header {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}

.btn-header:hover { background: var(--orange-dark); }

.btn-phone {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.btn-phone:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  padding: 18px;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(232,98,26,0.4);
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,98,26,0.5);
}

.mt-btn { margin-top: 12px; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { font-size: 28px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-text strong {
  font-weight: 900;
  color: var(--orange);
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Nav open state */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-dark);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(46,92,62,0.6) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(232,98,26,0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(232,98,26,0.12);
  border: 1px solid rgba(232,98,26,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.7s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-headline .accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}

.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 6px;
  background: var(--orange);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.service-card:hover::before { transform: scaleX(1); }

.featured-card {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.featured-card::before { background: var(--orange); }
.featured-card:hover::before { transform: scaleX(1); }

.featured-card h3 { color: var(--white); }
.featured-card p { color: rgba(255,255,255,0.7); }

.featured-ribbon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---------- WHY US ---------- */
.why-us {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,98,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.why-list p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.why-us-visual {
  position: relative;
  height: 420px;
}

.visual-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
}

.vc-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.vc-stars {
  font-size: 22px;
  color: #f5c518;
  margin-bottom: 4px;
}

.vc-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.vc1 { top: 20px; left: 0; width: 160px; }
.vc2 { top: 60px; right: 20px; width: 170px; }
.vc3 { bottom: 80px; left: 30px; width: 170px; }
.vc4 { bottom: 40px; right: 0; width: 150px; }

.visual-bg-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--orange) 0, var(--orange) 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  background: var(--green-dark);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 22px;
  right: -10px;
  font-size: 32px;
  color: var(--orange);
  font-weight: 900;
  z-index: 2;
  display: none; /* shown only on desktop via visibility trick */
}

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

/* ---------- SERVICE AREAS ---------- */
.service-areas {
  background: var(--cream);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.area-pill {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--gray-200);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all var(--transition);
}

.area-pill:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-pill-more {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.area-pill-more:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.areas-note {
  font-size: 15px;
  color: var(--gray-500);
}

.areas-note a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--gray-100);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.t-featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.t-featured p { color: rgba(255,255,255,0.8); }
.t-featured footer strong { color: var(--white); }
.t-featured footer span { color: rgba(255,255,255,0.5); }

.t-stars { font-size: 20px; color: #f5c518; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.t-featured footer { border-top-color: rgba(255,255,255,0.1); }

.testimonial-card footer strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card footer span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
  background: var(--green-mid);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,98,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.quote-perks li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.quote-form h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

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

.form-group label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group label span {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47,92,62,0.12);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

.field-error {
  font-size: 13px;
  color: #e53935;
  min-height: 16px;
}

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { font-size: 56px; margin-bottom: 16px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 8px;
}

.form-success a {
  color: var(--orange);
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-dark);
  padding-top: 72px;
}

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

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--orange); }

.footer-hours {
  margin-top: 8px;
  font-size: 13px !important;
  line-height: 1.6;
}

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

.footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-call,
.sticky-quote {
  flex: 1;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.sticky-call {
  background: var(--green-dark);
  color: var(--white);
  border-top: 3px solid var(--green-light);
}

.sticky-call:hover { background: var(--green-mid); }

.sticky-quote {
  background: var(--orange);
  color: var(--white);
  border-top: 3px solid var(--orange-light);
}

.sticky-quote:hover { background: var(--orange-dark); }

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

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(1.15); }
}

/* ---------- INTERSECTION OBSERVER ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner  { grid-template-columns: 1fr; gap: 48px; }
  .why-us-visual { display: none; }
  .quote-inner   { grid-template-columns: 1fr; gap: 48px; }
}

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

  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--green-dark);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    font-size: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .btn-header { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(60px, 16vw, 100px); }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-divider { display: none; }

  .services-grid    { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 32px; }

  .quote-form-wrap { padding: 32px 24px; }
  .sticky-cta { display: flex; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 12px; }
}
