/* ============================================================
   TRASH BANDIT JUNK REMOVAL — Main Stylesheet
   Color system from business card logo:
     Navy:  #1A2847
     Gold:  #F0A500
     White: #FFFFFF
     Light: #F5F6F8
     Dark:  #0F1C2E
   ============================================================ */

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

:root {
  --navy:       #1A2847;
  --navy-dark:  #0F1C2E;
  --navy-mid:   #243155;
  --gold:       #F0A500;
  --gold-dark:  #C98A00;
  --gold-light: #FFC83D;
  --white:      #FFFFFF;
  --off-white:  #F5F6F8;
  --gray-light: #E8EAED;
  --gray:       #8A95A3;
  --gray-dark:  #4A5568;
  --text:       #0F1C2E;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 20px rgba(15,28,46,.12);
  --shadow-lg:  0 8px 40px rgba(15,28,46,.18);
  --transition: .25s ease;
  --max-w:      1200px;
  --header-h:   96px;
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-dark); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1rem; }
.section-sub { max-width: 580px; margin: 0 auto 3rem; text-align: center; }
.section-sub-left { max-width: 580px; margin-bottom: 1.5rem; }

/* ---------- Layout Utilities ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.text-center { text-align: center; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4,
.text-white p, .text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-off-white { background: var(--off-white); }
.bg-gold { background: var(--gold); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.align-center { align-items: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,165,0,.35);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,40,71,.35);
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .875rem; }
.btn-icon { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 999;
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

/* Nav links go dark on white header */
.site-header.scrolled .main-nav a {
  color: var(--navy);
}
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
  color: var(--gold);
}
.site-header.scrolled .header-phone {
  color: var(--navy);
}
.site-header.scrolled .mobile-toggle span {
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.site-logo img {
  height: 84px;
  width: auto;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-text .brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.site-logo .logo-text .brand-sub {
  font-size: .65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: .5rem .75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.header-phone:hover { color: var(--gold-light); }
.header-phone svg { width: 16px; height: 16px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy-dark);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1.25rem;
}

.mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.mobile-cta .btn { justify-content: center; width: 100%; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,35,.6) 0%,
    rgba(15,28,46,.3) 50%,
    rgba(10,18,35,.0) 100%
  );
}

.hero .container {
  max-width: none;
  margin-left: 0;
  padding-left: clamp(1.5rem, 5vw, 5rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  max-width: 500px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.4);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,.82);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--navy);
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--gold);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card-link:hover,
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(10,18,35,.15), 0 4px 12px rgba(10,18,35,.08);
  border-color: var(--gold);
}

.service-card-link:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow: 0 6px 16px rgba(10,18,35,.12);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

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

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(240,165,0,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.service-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.service-card p { font-size: .9rem; flex: 1; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .875rem;
  margin-top: 1rem;
  transition: var(--transition);
}
.service-card .card-link:hover { gap: .7rem; }
.service-card .card-link svg { width: 14px; height: 14px; }

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-light);
}

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

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
  position: relative;
}

.step:nth-child(1) .step-num { background: var(--gold); color: var(--navy); }

.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; }

/* ---------- Gallery Preview / Recent Jobs ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,46,.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Comparison Section ---------- */
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-col {
  padding: 2.5rem 2rem;
}

.compare-col.them {
  background: var(--off-white);
}

.compare-col.us {
  background: var(--navy);
  color: var(--white);
}

.compare-col.us h3, .compare-col.us li { color: var(--white); }

.compare-divider {
  width: 2px;
  background: var(--gray-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-vs {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.compare-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid;
}

.compare-col.them h3 { border-color: var(--gray-light); }
.compare-col.us h3 { border-color: rgba(240,165,0,.5); }

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .6rem 0;
  font-size: .9rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
}

.compare-col.us .compare-list li {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.08);
}

.compare-list li:last-child { border: none; }

.compare-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-col.them .compare-list svg { color: #E53E3E; }
.compare-col.us .compare-list svg { color: var(--gold); }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(240,165,0,.12);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.why-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.why-card p { font-size: .875rem; }

/* ---------- About Section ---------- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
}

.about-badge .big { font-size: 1.75rem; line-height: 1; display: block; }
.about-badge .small { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; display: block; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature p {
  font-size: .875rem;
  color: var(--gray-dark);
}

/* ---------- Service Area ---------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--navy);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: 99px;
  transition: var(--transition);
}

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

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.review-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .75rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.review-text {
  font-size: .9rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: .875rem; }
.review-loc { font-size: .78rem; color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: var(--transition);
  gap: 1rem;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  transition: transform .25s ease;
}

.faq-item.open .faq-icon { border-color: var(--gold); background: var(--gold); }
.faq-item.open .faq-icon svg { color: var(--navy); transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--gray-dark);
}

.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Estimate Form ---------- */
.form-section {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,.15);
}

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

.form-field select { appearance: none; cursor: pointer; }

.form-submit { text-align: center; margin-top: 1.5rem; }

.form-note {
  font-size: .8rem;
  color: var(--gray);
  text-align: center;
  margin-top: .75rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }

.footer-col a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  margin-bottom: .75rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}

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

.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--navy-dark);
  padding: 6rem 0 3.5rem;
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

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

/* ---------- Mobile Sticky CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: .75rem 1rem;
  z-index: 990;
  border-top: 2px solid var(--gold);
  gap: .5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .compare-divider { width: 100%; height: 2px; flex-direction: row; }
  .compare-vs { width: 44px; height: 44px; margin: -22px auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .main-nav, .header-phone { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta .btn { display: none; }

  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 2rem 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .about-features { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 300px; }

  .steps::before { display: none; }
  .steps { gap: 1.5rem; }

  body { padding-bottom: 0; }

  .trust-items { gap: 1rem 1.5rem; }
  .trust-item { font-size: .82rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Utility Classes ---------- */
.gold-text { color: var(--gold); }
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-center { margin: 1rem auto 1.5rem; }

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item .label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}

/* Tabs for gallery page */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: .5rem 1.25rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid var(--gray-light);
  color: var(--gray-dark);
  transition: var(--transition);
  cursor: pointer;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-item[data-cat] { transition: opacity .3s ease, transform .3s ease; }
.gallery-item.hidden { display: none; }

/* Before/After slider */
.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: col-resize;
  user-select: none;
  max-width: 700px;
  margin: 0 auto;
}

.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::before, .ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-grip svg { width: 18px; height: 18px; color: var(--navy); }

.ba-label {
  position: absolute;
  top: 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .75rem;
  border-radius: 99px;
  pointer-events: none;
}

.ba-label.before { left: 1rem; background: var(--navy); color: var(--white); }
.ba-label.after { right: 1rem; background: var(--gold); color: var(--navy-dark); }

/* Success/error form states */
.form-success {
  text-align: center;
  padding: 3rem;
  display: none;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin: 0 auto 1rem;
}

/* CTA row */
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-contact-info {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

.cta-contact-info svg { width: 18px; height: 18px; color: var(--gold); }
.cta-contact-info a { color: rgba(255,255,255,.8); }
.cta-contact-info a:hover { color: var(--gold); }

/* ============================================================
   PREMIUM REDESIGN ADDITIONS
   ============================================================ */

/* ---------- Floating Conversion Bar ---------- */
.float-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 995;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.float-bar-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.float-bar-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.float-btn-call {
  background: var(--gold);
  color: var(--navy-dark);
}
.float-btn-call:hover { background: var(--gold-dark); transform: translateY(-1px); }

.float-btn-text {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
}
.float-btn-text:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }

.float-btn-quote {
  background: var(--navy-mid);
  border: 1px solid rgba(240,165,0,.4);
  color: var(--gold);
}
.float-btn-quote:hover { background: rgba(240,165,0,.12); transform: translateY(-1px); }

.float-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

body { padding-bottom: 0; }

/* ---------- Availability Banner ---------- */
.avail-banner {
  padding: .65rem 0;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.avail-banner.open-now {
  background: #14532d;
  color: #bbf7d0;
  border-bottom: 2px solid #16a34a;
}

.avail-banner.closed-now {
  background: #7f1d1d;
  color: #fecaca;
  border-bottom: 2px solid #dc2626;
}

.avail-banner .avail-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: .4rem;
  animation: pulse-dot 2s infinite;
}

.avail-banner.open-now .avail-dot { background: #4ade80; }
.avail-banner.closed-now .avail-dot { background: #f87171; animation: none; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

/* ---------- Stats Counter Section ---------- */
.stats-section {
  background: var(--navy);
  padding: 4rem 0;
  border-bottom: 3px solid var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-block {
  padding: 1rem;
}

.stat-block .stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-block .stat-label {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  margin-top: .4rem;
  font-weight: 500;
}

/* ---------- Load Pricing Cards ---------- */
.pricing-section { background: var(--off-white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(240,165,0,.14);
  transform: translateY(-3px);
}

.price-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-3px); }

.price-badge-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 99px;
  white-space: nowrap;
}

.price-truck-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1;
}

.price-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.price-card.featured .price-card-title { color: var(--white); }

.price-card-load {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.price-card.featured .price-card-load { color: rgba(255,255,255,.55); }

.price-range {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}

.price-note {
  font-size: .75rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.price-card.featured .price-note { color: rgba(255,255,255,.45); }

.price-items {
  text-align: left;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-items li {
  font-size: .82rem;
  color: var(--gray-dark);
  padding: .3rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.price-items li:last-child { border: none; }
.price-card.featured .price-items li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.1); }

.price-items li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.price-cta {
  display: block;
  padding: .7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  text-align: center;
  transition: var(--transition);
}

.price-cta-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.price-cta-outline:hover { background: var(--navy); color: var(--white); }

.price-cta-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.price-cta-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ---------- Can We Take It Grid ---------- */
.can-take-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.can-take-item {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem .75rem;
  text-align: center;
  transition: var(--transition);
}

.can-take-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(240,165,0,.12);
  transform: translateY(-2px);
}

.can-take-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240,165,0,.12);
  border-radius: var(--radius);
  margin: 0 auto .75rem;
}

.can-take-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.can-take-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ---------- Recent Jobs Feed ---------- */
.jobs-feed {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.job-feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.job-feed-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(240,165,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.job-feed-info { flex: 1; }

.job-feed-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .15rem;
}

.job-feed-meta {
  font-size: .78rem;
  color: var(--gray);
}

.job-feed-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ---------- Reviews Masonry ---------- */
.reviews-masonry {
  columns: 3;
  column-gap: 1.25rem;
  margin-top: 2rem;
}

.review-card-new {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  break-inside: avoid;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.review-card-new:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.review-card-new .stars {
  display: flex;
  gap: .15rem;
  margin-bottom: .75rem;
}

.review-card-new .stars span { color: var(--gold); font-size: 1rem; }

.review-card-new .review-body {
  font-size: .88rem;
  color: var(--gray-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card-new .reviewer {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.review-avatar-new {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name { font-size: .83rem; font-weight: 600; color: var(--navy); }
.reviewer-date { font-size: .74rem; color: var(--gray); }

/* ---------- Quote Wizard ---------- */
.wizard-section {
  background: var(--navy-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.wizard-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,.08) 0%, transparent 65%);
  pointer-events: none;
}

.wizard-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wizard-header { text-align: center; margin-bottom: 2.5rem; }
.wizard-header .section-label { color: var(--gold); }
.wizard-header h2 { color: var(--white); margin-bottom: .5rem; }
.wizard-header p { color: rgba(255,255,255,.6); }

.wizard-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.wz-step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .3s ease;
}

.wz-step-dot.active { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.wz-step-dot.done { background: #16a34a; border-color: #16a34a; color: var(--white); }

.wz-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.12);
  transition: .3s ease;
}
.wz-progress-line.filled { background: var(--gold); }

.wizard-panel { display: none; animation: wz-fade-in .3s ease; }
.wizard-panel.active { display: block; }

@keyframes wz-fade-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

.wizard-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.wz-panel-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.wz-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
}

.wz-option {
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.1rem .75rem;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  background: transparent;
}

.wz-option:hover { border-color: var(--gold); background: rgba(240,165,0,.08); }
.wz-option.selected { border-color: var(--gold); background: rgba(240,165,0,.15); }

.wz-option-icon { font-size: 1.6rem; display: block; margin-bottom: .4rem; }
.wz-option-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.3; }

.wz-load-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

.wz-load-option {
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: .2s ease;
  background: transparent;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.wz-load-option:hover { border-color: var(--gold); background: rgba(240,165,0,.06); }
.wz-load-option.selected { border-color: var(--gold); background: rgba(240,165,0,.14); }

.wz-load-fill {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.wz-load-fill::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  opacity: .6;
}

.wz-load-fill[data-pct="25"]::after { height: 25%; }
.wz-load-fill[data-pct="50"]::after { height: 50%; }
.wz-load-fill[data-pct="75"]::after { height: 75%; }
.wz-load-fill[data-pct="100"]::after { height: 100%; }

.wz-load-label { font-size: .88rem; font-weight: 700; color: var(--white); display: block; }
.wz-load-price { font-size: .78rem; color: var(--gold); font-weight: 600; }

.wz-estimate-preview {
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.35);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wz-estimate-preview.show { display: flex; }
.wz-estimate-label { color: rgba(255,255,255,.7); font-size: .83rem; }
.wz-estimate-range { color: var(--gold); font-size: 1.3rem; font-weight: 800; }

.wz-upload-zone {
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
}

.wz-upload-zone:hover { border-color: var(--gold); background: rgba(240,165,0,.05); }
.wz-upload-zone p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: .5rem; }
.wz-upload-zone svg { color: rgba(255,255,255,.35); width: 36px; height: 36px; margin: 0 auto; }

.wz-photo-previews { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.wz-photo-thumb { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; border: 2px solid rgba(255,255,255,.15); }

.wz-field { margin-bottom: 1.1rem; }
.wz-field label { display: block; font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: .4rem; }

.wz-field input,
.wz-field select,
.wz-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .95rem;
  font-family: inherit;
  transition: .2s ease;
  outline: none;
}

.wz-field input::placeholder,
.wz-field textarea::placeholder { color: rgba(255,255,255,.3); }
.wz-field select option { background: var(--navy-dark); color: var(--white); }

.wz-field input:focus,
.wz-field select:focus,
.wz-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,165,0,.15); }

.wz-field textarea { min-height: 90px; resize: vertical; }
.wz-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: 1rem;
}

.wz-back-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}
.wz-back-btn:hover { border-color: rgba(255,255,255,.45); color: var(--white); }

.wz-next-btn {
  background: var(--gold);
  border: none;
  color: var(--navy-dark);
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.wz-next-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.wz-next-btn svg { width: 16px; height: 16px; }

.wizard-success { text-align: center; padding: 3rem 1rem; }
.wizard-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.wizard-success h3 { color: var(--white); margin-bottom: .75rem; }
.wizard-success p { color: rgba(255,255,255,.6); max-width: 400px; margin: 0 auto 1.5rem; }

/* ---------- Responsive additions ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .wz-load-grid { grid-template-columns: 1fr; }
  .wz-option-grid { grid-template-columns: repeat(3, 1fr); }
  .wz-field-row { grid-template-columns: 1fr; }
  .can-take-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-masonry { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .float-bar-label { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .wz-option-grid { grid-template-columns: repeat(2, 1fr); }
  .can-take-grid { grid-template-columns: repeat(2, 1fr); }
  .float-bar-actions { gap: .35rem; }
  .float-btn { padding: .5rem .8rem; font-size: .78rem; }
}

