/* ===========================================================================
   TRASH IT KC — V2 BASE THEME
   Color tokens, typography, components. LF line endings. UTF-8.
   =========================================================================== */

:root {
  --blue-50:   #E8F0F9;
  --blue-500:  #0B4FA8;
  --blue-600:  #07377A;
  --blue-700:  #052657;
  --gold:      #F0B500;
  --gold-d:    #C99000;
  --ink:       #1A1F23;
  --ink-soft:  #4A555F;
  --gray-50:   #F7F9F8;
  --gray-100:  #EEF2F0;
  --gray-200:  #DDE4E0;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(20,30,25,0.06);
  --shadow-md: 0 8px 24px rgba(20,30,25,0.10);
  --shadow-lg: 0 20px 60px rgba(20,30,25,0.18);
  --radius:    14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5, h6 { font-family: inherit; margin: 0 0 .6em; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 1em; font-size: 1.05rem; }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: .25em; }
hr { border: 0; height: 1px; background: var(--gray-200); margin: 2.5rem 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 920px; }
.section { padding: 80px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--gray { background: var(--gray-50); }
.section--green { background: var(--blue-50); }
.section--ink  { background: var(--ink); color: #fff; }
.section--ink h2,
.section--ink h3 { color: #fff; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-lead  { text-align: center; max-width: 860px; margin: 0 auto 48px; color: var(--ink-soft); font-size: 1.1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-600);
  background: var(--blue-50); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow i { width: 14px; height: 14px; }

/* ============================================================
   BUTTON SYSTEM (FIXED — replaces broken outline button from V1)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn--primary { background: var(--gold); color: #1A1F23; }
.btn--primary:hover { background: var(--gold-d); color: #1A1F23; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--green { background: var(--blue-500); color: #fff; }
.btn--green:hover { background: var(--blue-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.85); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; }
.btn svg, .btn i { width: 18px; height: 18px; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--blue-600);
  color: #fff;
  font-size: 0.86rem;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.utility-bar a { color: #fff; }
.utility-bar a:hover { color: var(--blue-50); }
.utility-bar__group { display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 6px; }
.utility-bar i { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .utility-bar { display: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
#site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}
.header-nav a:hover { color: var(--blue-600); }
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
}
.header-tel i { color: var(--blue-600); width: 16px; height: 16px; }

/* Mobile menu */
#mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
#mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
#site-header.menu-open #mobile-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#site-header.menu-open #mobile-menu-btn span:nth-child(2) { opacity: 0; }
#site-header.menu-open #mobile-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 20px;
  border-top: 1px solid var(--gray-200);
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block;
  padding: 14px 8px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-100);
}
#mobile-nav a:last-child { border-bottom: 0; }
#mobile-nav .btn { margin-top: 12px; width: 100%; }

@media (max-width: 920px) {
  .header-nav { display: none; }
  .header-cta .btn:not(.btn--primary) { display: none; }
  #mobile-menu-btn { display: flex; }
}

/* ============================================================
   HERO — split, solid bg, content left, photo right
   ============================================================ */
.hero {
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(61,181,74,0.12), transparent 70%),
    var(--blue-50);
  padding: 76px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center; /* V5: vertically center photo with copy */
}
.hero__photo-wrap { align-self: center; margin-top: 0; }
.hero__copy h1 { margin: 6px 0 18px; }
.hero__sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 580px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__intro {
  background: #fff;
  border-left: 4px solid var(--blue-500);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  color: var(--ink-soft);
}
.hero__intro a { color: var(--blue-600); font-weight: 700; border-bottom: 1px dashed var(--blue-500); }
.hero__intro a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 540px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__badge i { width: 16px; height: 16px; color: var(--blue-600); }

.hero__photo-wrap {
  position: relative;
  perspective: 1000px;
}
.hero__photo {
  position: relative;
  border: 6px solid #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  outline: 2px solid var(--blue-500);
  outline-offset: 4px;
}
.hero__photo img { aspect-ratio: 4/3; object-fit: cover; }
.hero__stat-card {
  position: absolute;
  bottom: -28px;
  left: -22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--gray-100);
}
.hero__stat-card i {
  width: 32px; height: 32px;
  padding: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 999px;
  box-sizing: content-box;
}
@media (max-width: 920px) {
  .hero { padding: 56px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__photo-wrap { max-width: 520px; margin: 0 auto; }
  .hero__stat-card { left: 10px; bottom: -18px; font-size: .85rem; }
}

/* V4: full-width intro paragraph below the hero grid */
.hero__intro-full {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
  margin-top: 56px;
}
.hero__intro-full p {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero__intro-full a { color: var(--blue-600); font-weight: 700; border-bottom: 1px dashed var(--blue-500); }
.hero__intro-full a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* V4: full-width badges row, all inline horizontal centered */
.hero__badges-full { padding: 24px 0 8px; background: transparent; }
.hero__badges-full .hero__badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; margin: 0 auto; max-width: none;
  grid-template-columns: none;
}
@media (max-width: 720px) {
  .hero__intro-full { margin-top: 36px; padding: 22px 0; }
  .hero__intro-full p { font-size: 0.98rem; }
  .hero__badges-full .hero__badges { gap: 8px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--ink); color: #fff; padding: 36px 0; }
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat__num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #3D7FD6; letter-spacing: -0.02em; }
.stat__label { font-size: 0.92rem; color: rgba(255,255,255,0.72); margin-top: 4px; font-weight: 500; }
.stat i { width: 22px; height: 22px; color: var(--gold); margin-bottom: 6px; }
@media (max-width: 720px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================================
   SERVICE FEATURE ROW + CARDS GRID
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 36px 0 60px;
}
.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--gray-100);
}
.feature-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.feature-card__body { padding: 18px 22px; }
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.96rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-500);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 12px;
  margin-bottom: 14px;
}
.service-card__icon i { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 14px; }
.service-card__link {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
}
.btn.service-card__link { font-size: 0.88rem; }

@media (max-width: 920px) {
  .feature-row, .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-row, .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARE — bagged vs bulk trash
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.compare-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 14px;
  margin-bottom: 18px;
}
.compare-card__icon i { width: 28px; height: 28px; }
.compare-card h3 { margin-bottom: 8px; }
.compare-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.compare-card ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.compare-card ul li:last-child { border-bottom: 0; }
.compare-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  color: var(--blue-600);
  font-weight: 800;
}
.compare-callout {
  margin-top: 28px;
  background: var(--blue-50);
  border: 1px solid var(--blue-500);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.compare-callout i {
  width: 48px; height: 48px;
  color: var(--blue-600);
  background: #fff;
  padding: 12px;
  border-radius: 999px;
  box-sizing: content-box;
}
.compare-callout p { margin: 0; color: var(--ink); font-size: 1.02rem; }
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-callout { flex-direction: column; text-align: center; }
}

/* ============================================================
   TRAILER SECTION
   ============================================================ */
.trailer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.trailer-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
  outline: 2px solid var(--gray-200);
}
.trailer-image img { aspect-ratio: 4/3; object-fit: cover; }
.spec-stack { display: flex; flex-direction: column; gap: 14px; }
.spec-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.spec-card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: 12px;
  flex-shrink: 0;
}
.spec-card__icon i { width: 24px; height: 24px; }
.spec-card__value { font-size: 1.3rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.spec-card__label { font-size: 0.86rem; color: var(--ink-soft); margin-top: 2px; }

.trailer-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.trailer-extras .spec-card { align-items: flex-start; }
.trailer-extras .spec-card div p { margin: 4px 0 0; font-size: 0.94rem; color: var(--ink-soft); }
@media (max-width: 820px) {
  .trailer-grid, .trailer-extras { grid-template-columns: 1fr; }
}

/* ============================================================
   CALCULATOR — STANDALONE INTERACTIVE
   ============================================================ */
.calc {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 36px;
}
.calc__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  min-height: 540px;
}
.calc__main { padding: 28px 30px; }
.calc__panel {
  background: var(--ink);
  color: #fff;
  padding: 30px;
  position: relative;
}
.calc__panel-sticky { position: sticky; top: 90px; }
.calc__tabs { display: inline-flex; background: var(--gray-100); border-radius: 999px; padding: 4px; margin-bottom: 22px; }
.calc__tab {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calc__tab i { width: 16px; height: 16px; }
.calc__tab.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.calc__view { display: none; }
.calc__view.is-active { display: block; }

/* Volume mode */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.vol-btn {
  text-align: left;
  padding: 22px 22px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s ease;
  position: relative;
}
.vol-btn:hover { border-color: var(--blue-500); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.vol-btn.is-active { border-color: var(--gold); background: #fff8f3; }
.vol-btn__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.vol-btn__head i { width: 22px; height: 22px; color: var(--blue-600); }
.vol-btn__title { font-weight: 800; font-size: 1.08rem; }
.vol-btn__price { color: var(--gold); font-weight: 800; margin-bottom: 4px; }
.vol-btn__equiv { color: var(--ink-soft); font-size: 0.9rem; }
.vol-btn__example { color: var(--ink-soft); font-size: 0.85rem; margin-top: 8px; line-height: 1.4; }

/* Item mode */
.calc__search {
  position: relative;
  margin-bottom: 18px;
}
.calc__search i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--ink-soft);
}
.calc__search input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
}
.calc__search input:focus { outline: none; border-color: var(--blue-500); }

.cat {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.cat__head {
  width: 100%;
  background: var(--gray-50);
  border: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  text-align: left;
}
.cat__head:hover { background: var(--gray-100); }
.cat__head .chev { transition: transform .2s ease; width: 18px; height: 18px; color: var(--ink-soft); }
.cat.is-open .cat__head .chev { transform: rotate(180deg); }
.cat__body { display: none; padding: 8px 18px 14px; }
.cat.is-open .cat__body { display: block; }
.cat__items { display: grid; grid-template-columns: 1fr; gap: 4px; }
.cat-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cat-item:last-child { border-bottom: 0; }
.cat-item__name { font-weight: 600; font-size: 0.96rem; }
.cat-item__price { color: var(--ink-soft); font-size: 0.88rem; min-width: 92px; text-align: right; }
.cat-item__counter { display: inline-flex; align-items: center; gap: 6px; }
.cat-item__counter button {
  width: 32px; height: 32px;
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.cat-item__counter button:hover { background: var(--blue-50); border-color: var(--blue-500); color: var(--blue-600); }
.cat-item__counter button:disabled { opacity: 0.4; cursor: not-allowed; }
.cat-item__count { min-width: 22px; text-align: center; font-weight: 700; }
.cat-item.is-hidden { display: none; }
.cat.is-empty { display: none; }

/* Panel */
.calc__panel h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; opacity: .8; }
.calc__total {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue-500);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.calc__total small { display: block; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.72); margin-top: 6px; letter-spacing: 0; text-transform: none; }
.calc__count { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 22px; }
.calc__included { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,0.82); }
.calc__included strong { color: #fff; display: block; margin-bottom: 4px; }
.calc__panel .btn { width: 100%; margin-bottom: 10px; }
.calc__reset { background: transparent; border: 0; color: rgba(255,255,255,0.7); font-family: inherit; cursor: pointer; font-size: 0.88rem; padding: 6px; }
.calc__reset:hover { color: #fff; }
.calc__note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

@media (max-width: 920px) {
  .calc__layout { grid-template-columns: 1fr; }
  .calc__panel-sticky { position: static; }
  .vol-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING TIER CARDS
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.tier-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-500);
}
.tier-card__icon {
  width: 56px; height: 56px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.tier-card__icon i { width: 28px; height: 28px; }
.tier-card__name { font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; }
.tier-card__price { color: var(--gold); font-weight: 800; font-size: 1.4rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.tier-card__equiv { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 12px; }
.tier-card__best { font-size: 0.92rem; color: var(--ink); margin-bottom: 18px; flex-grow: 1; line-height: 1.5; }
.tier-card .btn { width: 100%; }
.tier-card--popular { border-color: var(--gold); }
.tier-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
@media (max-width: 920px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* By-item example pricing rows */
.example-prices {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-100);
}
.example-prices h3 { margin-bottom: 18px; }
.ex-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.ex-row:last-child { border-bottom: 0; }
.ex-row__icon {
  width: 36px; height: 36px;
  background: #fff;
  color: var(--blue-600);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.ex-row__icon i { width: 18px; height: 18px; }
.ex-row__name { font-weight: 600; }
.ex-row__price { color: var(--gold); font-weight: 700; }

/* ============================================================
   WHY CARDS + HOW IT WORKS STRIP
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-card__icon i { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.14rem; margin-bottom: 6px; }
.why-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; }
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  position: relative;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  border: 1px solid var(--gray-100);
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--blue-500);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.step h4 { margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue-500); }
.area-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.area-card__head i { width: 18px; height: 18px; color: var(--gold); }
.area-card h3 { margin: 0; font-size: 1.14rem; }
.area-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; }
@media (max-width: 720px) { .areas-grid { grid-template-columns: 1fr; } }

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: all .2s ease;
}
.area-pill:hover { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
.area-pill i { width: 12px; height: 12px; }

.area-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}
.area-cols h4 { margin-bottom: 12px; color: var(--blue-600); }
@media (max-width: 720px) { .area-cols { grid-template-columns: 1fr; } }

/* ============================================================
   HOURS BAND
   ============================================================ */
.hours-band {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.hours-band h2 { color: #fff; margin-bottom: 10px; }
.hours-band__sub { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 620px; margin: 0 auto 24px; }
.hours-band__row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hours-band__icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hours-band__icon i { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   DOWNLOADS (full row)
   ============================================================ */
.download-card {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.download-card__visual {
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.download-card__visual i { display: none; }
.download-card__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.download-card__body { padding: 36px 40px; }
.download-card__body h2 { margin-bottom: 12px; }
.download-card__body ul { margin: 0 0 22px; padding-left: 1.2em; }
.download-card__body li { color: var(--ink-soft); margin-bottom: 6px; }
@media (max-width: 820px) {
  .download-card { grid-template-columns: 1fr; }
  .download-card__visual { padding: 0; min-height: 220px; }
  .download-card__visual img { aspect-ratio: 4/3; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--blue-500); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.04rem;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 14px; height: 14px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--blue-600);
}
.faq-item__answer { padding: 0 22px 22px; color: var(--ink-soft); }
.faq-item__answer p { margin-bottom: 0; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing-cta {
  position: relative;
  padding: 96px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-600) 100%);
}
.closing-cta h2 { color: #fff; margin-bottom: 14px; }
.closing-cta p { max-width: 640px; margin: 0 auto 28px; font-size: 1.12rem; color: rgba(255,255,255,0.92); }
.closing-cta__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.closing-cta__features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.closing-cta__features span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   FOOTER (rich, multi-column)
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 28px;
  font-size: 0.94rem;
}
footer h4 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer a { color: rgba(255,255,255,0.78); }
footer a:hover { color: #3D7FD6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.4fr 0.9fr 1.1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand img { height: 110px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.72); margin-bottom: 14px; font-size: 0.94rem; }
.footer-stars { color: #fbbf24; margin-bottom: 14px; font-size: 1.04rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.footer-social a:hover { background: #3D7FD6; color: #fff; }
.footer-social i { width: 16px; height: 16px; }

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 8px; }

.footer-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.footer-cities h5 { color: #3D7FD6; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 10px; }
.footer-cities ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-cities li { margin-bottom: 6px; }

.footer-contact p { margin: 0 0 8px; }
.footer-contact .footer-line { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact i { width: 16px; height: 16px; color: #3D7FD6; margin-top: 4px; flex-shrink: 0; }
.footer-hours-list { list-style: none; padding: 0; margin: 8px 0 14px; font-size: 0.88rem; }
.footer-hours-list li { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.footer-hours-list li:last-child { border-bottom: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.78); }
.footer-bottom a:hover { color: #3D7FD6; }

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cities { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BOOKING SECTION HEADER
   ============================================================ */
.booking-section { background: var(--gray-50); }
.booking-section__intro { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.booking-section__intro p { color: var(--ink-soft); font-size: 1.08rem; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   END OF BASE THEME — FORM CSS APPENDED BELOW VERBATIM
   ============================================================ */

/* ============================================================
   TRASH IT KC - TRASH HAULING BOOKING FORM
   All CSS scoped to .orderform
   Colors: #f0b500 gold, #1e1e1e charcoal, #ffffff white
   ============================================================ */

.orderform *,
.orderform *::before,
.orderform *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.orderform {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: #1e1e1e;
  background: #f4f4f4;
  line-height: 1.5;
}

/* ---- LOGIN BAR ---- */
.orderform .login-bar {
  background: #1e1e1e;
  color: #ccc;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.orderform .login-bar span {
  color: #aaa;
}

.orderform .login-bar a,
.orderform .login-bar button.login-toggle {
  color: #f0b500;
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  padding: 0;
}

.orderform .login-bar a:hover,
.orderform .login-bar button.login-toggle:hover {
  color: #f07030;
}

.orderform .login-form-inline {
  display: none;
  width: 100%;
  padding: 10px 0 4px;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.orderform .login-form-inline.visible {
  display: flex;
}

.orderform .login-form-inline input {
  background: #2e2e2e;
  border: 1px solid #444;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}

.orderform .login-form-inline input::placeholder {
  color: #888;
}

.orderform .login-form-inline button.btn-login {
  background: #f0b500;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  white-space: nowrap;
}

.orderform .login-form-inline button.btn-login:hover {
  background: #c04e18;
}

.orderform .login-msg {
  font-size: 12px;
  margin-left: 6px;
}

.orderform .login-msg.success { color: #4caf50; }
.orderform .login-msg.error { color: #f44336; }

/* ---- PAGE HEADER ---- */
.orderform .form-header {
  background: #f0b500;
  color: #fff;
  padding: 20px 24px;
}

.orderform .form-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.orderform .form-header p {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.9;
}

.orderform .header-phone {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 600;
}

.orderform .header-phone a {
  color: #fff;
  text-decoration: none;
}

/* ---- STEP PROGRESS BAR ---- */
.orderform .step-progress {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 20px 0;
  overflow-x: auto;
}

.orderform .step-progress-inner {
  display: flex;
  align-items: flex-start;
  min-width: 500px;
  position: relative;
}

.orderform .step-progress-inner::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.orderform .step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  cursor: default;
}

.orderform .step-item.completed {
  cursor: pointer;
}

.orderform .step-item.completed .step-circle:hover {
  background: #f0b500;
  border-color: #f0b500;
  color: #fff;
  transform: scale(1.1);
  transition: background 0.2s, transform 0.2s;
}

.orderform .step-item.completed .step-label {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.orderform .step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #e0e0e0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.orderform .step-item.active .step-circle {
  background: #f0b500;
  border-color: #f0b500;
  color: #fff;
}

.orderform .step-item.completed .step-circle {
  background: #1e1e1e;
  border-color: #1e1e1e;
  color: #fff;
}

.orderform .step-label {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding-bottom: 10px;
  white-space: nowrap;
}

.orderform .step-item.active .step-label {
  color: #f0b500;
}

.orderform .step-item.completed .step-label {
  color: #1e1e1e;
}

/* ---- ITEM SEARCH ---- */
.orderform .jr-item-input {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 8px;
  box-sizing: border-box;
  background: #fff;
  color: #1e1e1e;
}

.orderform .jr-item-input:focus {
  outline: none;
  border-color: #f0b500;
}

.orderform .jr-item-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #ccc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.orderform .jr-item-dropdown.open { display: block; }

.orderform .jr-item-option {
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13px;
  color: #1e1e1e;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orderform .jr-item-option:last-child { border-bottom: none; }
.orderform .jr-item-option:hover { background: #fff3ec; color: #f0b500; }

.orderform .jr-item-price {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

.orderform .jr-item-option:hover .jr-item-price { color: #f0b500; }

.orderform .jr-selected-items {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.orderform .jr-selected-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff3ec;
  border: 1.5px solid #f0b500;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  color: #1e1e1e;
  width: 100%;
  box-sizing: border-box;
}

.orderform .jr-selected-tag-name { font-weight: 600; }
.orderform .jr-selected-tag-price { color: #f0b500; font-weight: 700; margin: 0 8px; }

.orderform .jr-remove-btn {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  font-weight: 700;
}

.orderform .jr-remove-btn:hover { color: #8e1a0e; }

.orderform .jr-other-wrap {
  margin-top: 8px;
}

.orderform .jr-other-input {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  box-sizing: border-box;
  background: #fff;
  color: #1e1e1e;
}

/* ---- SERVICE TYPE CARDS ---- */
.orderform .service-type-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.orderform .stype-card {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: #fff;
}
.orderform .stype-card:hover { border-color: #f0b500; background: #fff8f2; }
.orderform .stype-card.selected { border-color: #f0b500; background: #fff3ec; }
.orderform .stype-title { font-weight: 700; font-size: 14px; color: #1e1e1e; margin-bottom: 2px; }
.orderform .stype-card.selected .stype-title { color: #f0b500; }
.orderform .stype-desc { font-size: 12px; color: #666; line-height: 1.4; }

/* ---- TIME SLOT GRID ---- */
.orderform .time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
@media (max-width: 600px) { .orderform .time-slot-grid { grid-template-columns: repeat(2, 1fr); } }
.orderform .time-slot {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  background: #fff;
}
.orderform .time-slot:hover { border-color: #f0b500; background: #fff8f2; }
.orderform .time-slot.selected { border-color: #f0b500; background: #f0b500; }
.orderform .time-slot-label { font-weight: 700; font-size: 13px; color: #1e1e1e; margin-bottom: 2px; }
.orderform .time-slot.selected .time-slot-label,
.orderform .time-slot.selected .time-slot-range { color: #fff; }
.orderform .time-slot-range { font-size: 11px; color: #888; }

.orderform .time-slot.booked {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: #ccc;
  background: #f5f5f5;
}

.orderform .time-slot.booked .time-slot-label,
.orderform .time-slot.booked .time-slot-range {
  color: #aaa;
}

.orderform .time-slot.booked::after {
  content: 'Booked';
  display: block;
  font-size: 10px;
  color: #c0392b;
  font-weight: 700;
  margin-top: 2px;
}

/* Phase 4.3.18 — past-time slot (when date=today and slot start time already elapsed). */
.orderform .time-slot.past {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: #ccc;
  background: #f5f5f5;
}
.orderform .time-slot.past .time-slot-label,
.orderform .time-slot.past .time-slot-range { color: #aaa; }
.orderform .time-slot.past::after {
  content: 'Passed';
  display: block;
  font-size: 10px;
  color: #888;
  font-weight: 700;
  margin-top: 2px;
}
.orderform .time-slot.past:hover {
  border-color: #ccc;
  background: #f5f5f5;
}

/* ---- PHOTO UPLOAD ---- */
.orderform .photo-upload-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
  position: relative;
}

.orderform .photo-upload-area:hover,
.orderform .photo-upload-area.dragover {
  border-color: #f0b500;
  background: #fff8f2;
}

.orderform .photo-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.orderform .photo-upload-icon {
  font-size: 28px;
  margin-bottom: 6px;
  color: #f0b500;
}

.orderform .photo-upload-area p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.orderform .photo-upload-area strong {
  color: #333;
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.orderform .photo-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.orderform .photo-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
  flex-shrink: 0;
}

.orderform .photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.orderform .photo-preview-item .photo-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.orderform .photo-upload-status {
  font-size: 12px;
  color: #2e8b57;
  margin-top: 6px;
  font-weight: 600;
}

.orderform .photo-upload-status.error {
  color: #c0392b;
}

/* ---- ADDRESS AUTOCOMPLETE DROPDOWN ---- */
.orderform .addr-wrap {
  position: relative;
  display: block;
}

/* Google Places dropdown - match form font and colors exactly */
.pac-container {
  font-family: 'Open Sans', Arial, sans-serif !important;
  font-size: 14px !important;
  border: 1.5px solid #ccc !important;
  border-top: none !important;
  border-radius: 0 0 6px 6px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
  z-index: 99999 !important;
  margin-top: -1px;
}

.pac-container::after { display: none !important; } /* hide Google branding */

.pac-item {
  font-family: 'Open Sans', Arial, sans-serif !important;
  font-size: 14px !important;
  color: #1e1e1e !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
  border-top: 1px solid #f0f0f0 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.pac-item:hover {
  background: #f5f5f5 !important;
}

.pac-item-query {
  font-family: 'Open Sans', Arial, sans-serif !important;
  font-size: 14px !important;
  color: #1e1e1e !important;
  font-weight: 600 !important;
  padding-right: 4px !important;
}

.pac-matched {
  font-weight: 700 !important;
  color: #1e1e1e !important;
  text-decoration: none !important;
}

.pac-icon { display: none !important; } /* hide map pin icon */

.orderform .addr-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #ccc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 999;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  display: none;
}

.orderform .addr-dropdown.open {
  display: block;
}

.orderform .addr-option {
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  line-height: 1.3;
}

.orderform .addr-option:hover,
.orderform .addr-option.highlighted {
  background: #fff3ec;
  color: #f0b500;
}

.orderform .addr-option:last-child {
  border-bottom: none;
}

.orderform .addr-option .addr-main {
  font-weight: 600;
}

.orderform .addr-option .addr-secondary {
  font-size: 12px;
  color: #888;
  margin-top: 1px;
}

/* ---- MAIN LAYOUT ---- */
.orderform .form-body {
  display: flex;
  gap: 20px;
  padding: 20px 20px 0 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.orderform .form-main {
  flex: 1;
  min-width: 0;
}

/* ---- CARD SECTIONS ---- */
.orderform .form-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  margin-bottom: 20px;
  overflow: hidden;
}

.orderform .form-card-header {
  background: #1e1e1e;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.orderform .form-card-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff !important;
  margin: 0 !important;
}

.orderform .form-card-header .step-badge {
  background: #f0b500;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orderform .form-card-body {
  padding: 22px 20px;
}

/* ---- FORM FIELDS ---- */
.orderform .field-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.orderform .field-group {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.orderform .field-group.full-width {
  flex-basis: 100%;
}

.orderform .field-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #444;
}

.orderform .field-group label .req {
  color: #f0b500;
  margin-left: 2px;
}

.orderform .field-group input,
.orderform .field-group select,
.orderform .field-group textarea {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1e1e1e;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

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

.orderform .field-group input:focus,
.orderform .field-group select:focus,
.orderform .field-group textarea:focus {
  outline: none;
  border-color: #f0b500;
  box-shadow: 0 0 0 3px rgba(218,94,34,0.12);
}

.orderform .field-group input.field-error,
.orderform .field-group select.field-error,
.orderform .field-group textarea.field-error {
  border-color: #e53935;
  box-shadow: 0 0 0 2px rgba(229,57,53,0.12);
}

.orderform .field-group textarea {
  min-height: 90px;
  resize: vertical;
}

.orderform .field-hint {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}

.orderform .field-error-msg {
  font-size: 11px;
  color: #e53935;
  margin-top: 3px;
}

/* ---- NOTICE BOX ---- */
.orderform .notice-box {
  background: #fff8f2;
  border-left: 4px solid #f0b500;
  border-radius: 0 4px 4px 0;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

.orderform .notice-box strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #f0b500;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Reservation-only callout (Step 4). Amplified notice-box. */
.orderform .reservation-callout {
  background: #fff3e6;
  border: 2px solid #f0b500;
  border-left: 6px solid #f0b500;
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 14px;
  color: #333;
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(218, 94, 34, 0.12);
  position: relative;
}
.orderform .reservation-callout .rc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 6px;
  color: #b9461a;
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.orderform .reservation-callout .rc-title svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Email "account found" notice */
.orderform .email-check-notice {
  display: none;
  margin-top: 8px;
  padding: 10px 12px;
  background: #fff8f2;
  border: 1px solid #f0b500;
  border-radius: 4px;
  font-size: 13px;
  color: #1e1e1e;
  line-height: 1.5;
}
.orderform .email-check-notice.show { display: block; }
.orderform .email-check-notice a {
  color: #f0b500;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.orderform .email-check-notice a:hover { color: #b9461a; }

/* Highlighted date picker (Step 3) */
.orderform .field-group.date-highlight label {
  font-size: 14px;
  color: #f0b500;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.orderform .field-group.date-highlight input[type="date"] {
  border: 2px solid #f0b500;
  background: #fffaf5;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 0 0 3px rgba(218, 94, 34, 0.10);
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.orderform .field-group.date-highlight input[type="date"]:focus {
  outline: none;
  border-color: #b9461a;
  box-shadow: 0 0 0 4px rgba(218, 94, 34, 0.22);
}
/* Once a date is chosen, drop the highlight so it doesn't look unfilled */
.orderform .field-group.date-highlight.filled input[type="date"] {
  border-color: #c8c8c8;
  background: #fff;
  box-shadow: none;
  font-weight: 500;
}
.orderform .field-group.date-highlight.filled label {
  color: #444;
  font-weight: 600;
  font-size: 12px;
}

/* ---- CARD ICONS (payment) ---- */
.orderform .card-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.orderform .secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  background: #f0faf2;
  border: 1.5px solid #2e8b57;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #1e6b3a;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.orderform .secure-badge svg {
  flex-shrink: 0;
}

.orderform .card-icon {
  width: 52px;
  height: 32px;
  border-radius: 4px;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #666;
  background: #f9f9f9;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  opacity: 0.5;
}

.orderform .card-icon.active {
  opacity: 1;
  border-color: #f0b500;
  color: #f0b500;
  background: #fff8f2;
}

.orderform .card-icon.visa { color: #1a1f71; border-color: #1a1f71; background: #f0f2ff; }
.orderform .card-icon.mc { color: #eb001b; border-color: #f79e1b; background: #fff8f0; }
.orderform .card-icon.amex { color: #007bc1; border-color: #007bc1; background: #f0f8ff; }
.orderform .card-icon.disc { color: #e65c00; border-color: #e65c00; background: #fff5f0; }

.orderform .card-icon:not(.active) {
  filter: grayscale(1);
}

/* ---- AGREEMENT BOX ---- */
.orderform .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.orderform .modal-overlay.open { display: flex; }
.orderform .modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.orderform .modal-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: #1a1a1a; }
.orderform .modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 22px; cursor: pointer; color: #888; line-height: 1;
}
.orderform .modal-close:hover { color: #1a1a1a; }
.orderform .modal-body { font-size: 13px; color: #333; line-height: 1.7; }
.orderform .modal-body h1,.orderform .modal-body h2 { font-size: 16px; font-weight: 700; margin: 18px 0 8px; color: #1a1a1a; border-bottom: 1px solid #eee; padding-bottom: 6px; }
.orderform .modal-body h3,.orderform .modal-body h4 { font-size: 14px; font-weight: 700; margin: 14px 0 6px; color: #1a1a1a; }
.orderform .modal-body p { margin-bottom: 10px; }
.orderform .modal-body ul,.orderform .modal-body ol { margin: 0 0 12px 20px; }
.orderform .modal-body ul li,.orderform .modal-body ol li { margin-bottom: 6px; }
.orderform .agreement-link { color: #f0b500; text-decoration: underline; cursor: pointer; font-weight: 600; }
.orderform .agreement-link:hover { color: #bf4e1a; }

.orderform .agreement-box {
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  height: 280px;
  overflow-y: auto;
  padding: 20px 24px;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  background: #fafafa;
  margin-bottom: 16px;
  position: relative;
}

.orderform .agreement-box h2,
.orderform .agreement-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  margin: 0 0 12px 0;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.orderform .agreement-box h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 16px 0 6px 0;
  color: #1e1e1e;
}

.orderform .agreement-box p {
  margin: 0 0 10px 0;
}

.orderform .agreement-box ul,
.orderform .agreement-box ol {
  margin: 6px 0 10px 0;
  padding-left: 24px;
}

.orderform .agreement-box li {
  margin-bottom: 4px;
}

.orderform .agreement-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 13px;
}

/* ---- SPINNER ---- */
.orderform .spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e0e0e0;
  border-top-color: #f0b500;
  border-radius: 50%;
  animation: of-spin 0.75s linear infinite;
}

@keyframes of-spin {
  to { transform: rotate(360deg); }
}

/* ---- CHECKBOX + SIGNATURE ---- */
.orderform .check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.orderform .check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #f0b500;
  cursor: pointer;
}

/* Force all checkboxes in the form to show natively */
.orderform input[type="checkbox"] {
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  accent-color: #f0b500 !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
}

.orderform .check-row label {
  font-size: 13px;
  color: #333;
  cursor: pointer;
  line-height: 1.5;
}

.orderform .sms-notice {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-top: 16px;
  border: 1px solid #e8e8e8;
}

/* ---- REVIEW SUMMARY TABLE ---- */
.orderform .review-section {
  margin-bottom: 18px;
}

.orderform .review-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #f0b500;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0e8e2;
}

.orderform .review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.orderform .review-table td {
  padding: 5px 0;
  vertical-align: top;
}

.orderform .review-table td:first-child {
  color: #666;
  font-weight: 600;
  width: 42%;
  padding-right: 10px;
}

.orderform .review-table td:last-child {
  color: #1e1e1e;
}

/* ---- NAVIGATION BUTTONS ---- */
.orderform .btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  gap: 10px;
  flex-wrap: wrap;
}

.orderform .btn-next,
.orderform .btn-submit {
  background: #f0b500;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.orderform .btn-next:hover,
.orderform .btn-submit:hover {
  background: #c04e18;
}

.orderform .btn-next:active,
.orderform .btn-submit:active {
  transform: scale(0.98);
}

.orderform .btn-back {
  background: none;
  color: #666;
  border: 1px solid #ccc;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.orderform .btn-back:hover {
  border-color: #888;
  color: #333;
}

/* ---- STEP PANELS ---- */
.orderform .step-panel {
  display: none;
  animation: of-fadeIn 0.25s ease;
}

.orderform .step-panel.active {
  display: block;
}

@keyframes of-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- GLOBAL ERROR MESSAGE ---- */
.orderform .global-error {
  background: #fdecea;
  border: 1px solid #e53935;
  border-radius: 4px;
  color: #b71c1c;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

.orderform .global-error.visible {
  display: block;
}

/* ---- PROCESSING OVERLAY ---- */
.orderform .processing-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,30,30,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.orderform .processing-overlay.visible {
  display: flex;
}

.orderform .processing-overlay .spinner {
  width: 42px;
  height: 42px;
  border-width: 4px;
  border-color: rgba(255,255,255,0.3);
  border-top-color: #f0b500;
}

/* ---- ORDER SUMMARY SIDEBAR ---- */
.orderform .sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 16px;
}

.orderform .sidebar-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  overflow: hidden;
}

.orderform .sidebar-header {
  background: #1e1e1e;
  color: #fff;
  padding: 14px 16px;
}

.orderform .sidebar-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff !important;
  margin: 0 !important;
}

.orderform .sidebar-body {
  padding: 16px;
}

.orderform .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 8px;
}

.orderform .summary-row:last-child {
  border-bottom: none;
}

.orderform .summary-label {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.orderform .summary-value {
  color: #1e1e1e;
  font-weight: 500;
  text-align: right;
  font-size: 13px;
}

.orderform .summary-value.empty {
  color: #bbb;
  font-style: italic;
  font-weight: 400;
}

.orderform .sidebar-total {
  margin-top: 14px;
  background: #f9f9f9;
  border-radius: 4px;
  padding: 12px;
  text-align: center;
}

.orderform .sidebar-total .total-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #888;
  font-weight: 600;
  margin-bottom: 4px;
}

.orderform .sidebar-total .total-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #f0b500;
}

.orderform .sidebar-total .total-sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

.orderform .sidebar-minimum {
  margin-top: 10px;
  background: #fff8f2;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 12px;
  color: #666;
  border-left: 3px solid #f0b500;
  line-height: 1.5;
}

.orderform .sidebar-phone {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: #444;
}

.orderform .sidebar-phone a {
  color: #f0b500;
  font-weight: 700;
  text-decoration: none;
}

.orderform .sidebar-phone a:hover {
  text-decoration: underline;
}

/* ---- MOBILE SUMMARY DRAWER ---- */
.orderform .mobile-summary {
  display: none;
  background: #fff;
  border-bottom: 2px solid #f0b500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.orderform .mobile-summary-toggle {
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orderform .mobile-summary-toggle .toggle-icon {
  font-size: 18px;
  transition: transform 0.2s;
}

.orderform .mobile-summary-toggle.open .toggle-icon {
  transform: rotate(180deg);
}

.orderform .mobile-summary-body {
  display: none;
  padding: 14px 20px;
}

.orderform .mobile-summary-body.visible {
  display: block;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .orderform .sidebar {
    display: none;
  }

  .orderform .mobile-summary {
    display: block;
  }

  .orderform .form-body {
    padding: 14px 14px 0 14px;
  }

  .orderform .field-row {
    flex-direction: column;
    gap: 12px;
  }

  /* Keep service type row always side-by-side */
  #serviceTypeRow {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  .orderform .field-group {
    min-width: unset;
  }

  .orderform .btn-next,
  .orderform .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .orderform .btn-row {
    flex-direction: column-reverse;
  }

  .orderform .btn-back {
    width: 100%;
    text-align: center;
  }
}

/* ---- SIGNATURE FIELD ---- */
.orderform .signature-field-wrap {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fffef8;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.orderform .signature-field-wrap label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #444;
  display: block;
  margin-bottom: 8px;
}

.orderform .signature-field-wrap input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #f0b500;
  background: transparent;
  font-size: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #1e1e1e;
  padding: 4px 0;
  outline: none;
  font-style: italic;
}

.orderform .signature-field-wrap .sig-hint {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
  font-style: italic;
}

/* ---- READ-ONLY DATE ---- */
.orderform input[readonly] {
  background: #f5f5f5;
  color: #555;
}

/* ===========================================================================
   V3 — UNIFIED QUOTE WIDGET, CTA BANDS, MOBILE STICKY, BTN VARIANTS
   =========================================================================== */

/* --- Button additions --- */
.btn--sm { padding: 8px 14px; font-size: 0.88rem; border-radius: 999px; }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

/* --- Book section --- */
.book-section { background: var(--gray-50); }
.book-section .section-head { text-align: center; }
.book-section .section-head .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
/* V4: book section nested inside #services — tighten vertical spacing */
#services #book.book-section { padding-top: 24px; padding-bottom: 56px; margin-top: 32px; margin-bottom: 48px; border-radius: var(--radius-lg); }

/* --- Quote widget shell --- */
.quote-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  /* overflow: hidden was here — removed so .qw-estimate-card can be position:sticky.
     We replicate the corner-clipping by clipping the tab strip individually below. */
}
/* Clip the tab strip's top-left/top-right corners to match the widget radius */
.qw-tabs {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

/* --- Tabs --- */
.qw-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.qw-tab {
  flex: 1;
  padding: 18px 14px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color .2s, background .2s, border-color .2s;
}
.qw-tab i { width: 18px; height: 18px; }
.qw-tab:hover { color: var(--ink); background: var(--white); }
.qw-tab.is-active {
  color: var(--blue-600);
  background: var(--white);
  border-bottom-color: var(--blue-500);
}

/* --- Grid layout --- */
.qw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px; /* V4: narrower right rail */
  gap: 0;
}
.qw-main {
  padding: 32px;
  border-right: 1px solid var(--gray-200);
  min-width: 0;
}
.qw-pane { display: none; }
.qw-pane.is-active { display: block; }
.qw-pane h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.qw-pane-lead { color: var(--ink-soft); margin-bottom: 22px; }
.qw-pane-foot { color: var(--ink-soft); font-size: 0.88rem; margin-top: 18px; }

/* --- Volume buttons --- */
.qw-volume-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.qw-vol {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  padding: 22px;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
}
.qw-vol:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.qw-vol.is-selected {
  border-color: var(--blue-500);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(61,181,74,0.18);
}
.qw-vol-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 6px;
}
.qw-vol-icon i { width: 22px; height: 22px; }
.qw-vol strong { font-size: 1.1rem; color: var(--ink); }
.qw-vol-price { font-size: 1.25rem; font-weight: 800; color: var(--gold); }
.qw-vol-equiv { font-size: 0.88rem; color: var(--ink-soft); font-weight: 600; }
.qw-vol-best { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.45; }
.qw-vol--popular { border-color: var(--blue-500); }
.qw-vol-ribbon {
  position: absolute;
  top: -10px; right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
}

/* --- Item search & quick chips --- */
.qw-search { position: relative; }
.qw-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  width: 18px; height: 18px;
  pointer-events: none;
}
.qw-search input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s;
}
.qw-search input:focus { outline: none; border-color: var(--blue-500); }
.qw-quick-row {
  margin: 14px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.qw-quick-label {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-right: 4px;
}
.qw-quick-chips { display: contents; }
.qw-quick-chip {
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.qw-quick-chip:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-600);
}

/* --- Categories accordion --- */
.qw-categories details {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--white);
}
.qw-categories details[open] {
  box-shadow: var(--shadow-sm);
}
.qw-categories summary {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  list-style: none;
}
.qw-categories summary::-webkit-details-marker { display: none; }
.qw-categories summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue-600);
  font-weight: 400;
  line-height: 1;
}
.qw-categories details[open] summary::after { content: "−"; }
.qw-cat-count {
  margin-left: auto;
  margin-right: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.qw-cat-items {
  padding: 4px 16px 14px;
  display: grid;
  gap: 4px;
}
.qw-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-100);
}
.qw-item-row:last-child { border-bottom: 0; }
.qw-item-name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.qw-item-price { color: var(--gold); font-weight: 700; font-size: 0.9rem; min-width: 70px; text-align: right; }
.qw-counter { display: inline-flex; align-items: center; gap: 6px; }
.qw-counter button {
  width: 30px; height: 30px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .15s, border-color .15s;
}
.qw-counter button:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  color: var(--blue-600);
}
.qw-counter span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

/* --- Estimate sticky panel --- */
.qw-estimate {
  background: var(--ink);
  color: #fff;
  padding: 24px 22px;
  align-self: stretch;     /* V8: extend background to bottom of grid */
  min-width: 0;
  margin-top: 32px;
  min-height: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
/* Inner card floats with the user as they scroll the booking form. */
.qw-estimate-card {
  display: block;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  /* Hide the scrollbar visually — still scrollable */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.qw-estimate-card::-webkit-scrollbar { width: 6px; }
.qw-estimate-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 3px; }
.qw-estimate-card::-webkit-scrollbar-track { background: transparent; }
.qw-estimate-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3D7FD6;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.qw-estimate-eyebrow i { width: 16px; height: 16px; }
.qw-estimate-total {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 8px 0 0;
  color: #3D7FD6;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.qw-estimate-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin: 6px 0 18px;
  line-height: 1.5;
}
.qw-estimate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  max-height: 220px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 12px;
}
.qw-estimate-list:empty { display: none; }
.qw-estimate-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.qw-estimate-list li span:last-child { color: var(--blue-500); font-weight: 700; flex-shrink: 0; }
.qw-estimate .btn { width: 100%; margin-bottom: 10px; }
.qw-reset {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 6px;
  width: 100%;
  margin-bottom: 14px;
  text-decoration: underline;
}
.qw-reset:hover { color: #fff; }
.qw-estimate-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

/* --- Pre-fill banner --- */
.qw-prefill-banner {
  background: var(--blue-50);
  border: 1px solid var(--blue-500);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--blue-600);
  font-weight: 600;
}
.qw-prefill-banner[hidden] { display: none; }
.qw-prefill-banner i {
  color: var(--blue-500);
  flex-shrink: 0;
}

/* --- Form pane resets — make orderform fill the qw-pane width without its own background bezel --- */
.qw-pane[data-qw-pane="form"] .orderform {
  background: transparent;
  margin: 0 -32px -32px;
}
.qw-pane[data-qw-pane="form"] .orderform .login-bar {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
}
.qw-pane[data-qw-pane="form"] .orderform .form-body {
  padding-top: 20px;
}
@media (max-width: 900px) {
  .qw-pane[data-qw-pane="form"] .orderform { margin: 0 -16px -24px; }
}

/* --- Supporting content (What's Included + By-Item Examples) --- */
.quote-supporting {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.qs-included h3,
.qs-examples h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--ink);
}
.qs-included p {
  color: var(--ink-soft);
  line-height: 1.7;
}
.qs-lead {
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.qs-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.qs-price-list li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.qs-price-list li:last-child { border-bottom: 0; }
.qs-ico {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  align-items: center;
  justify-content: center;
}
.qs-ico i { width: 18px; height: 18px; }
.qs-name { font-weight: 600; color: var(--ink); }
.qs-price { color: var(--gold); font-weight: 700; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .qw-grid { grid-template-columns: 1fr; }
  .qw-main { border-right: 0; border-bottom: 1px solid var(--gray-200); padding: 22px; }
  .qw-volume-grid { grid-template-columns: 1fr; }
  .qw-estimate { position: static; padding: 24px; }
  .qw-estimate-list { max-height: 160px; }
  .quote-supporting { grid-template-columns: 1fr; gap: 28px; }
  .qw-tab span { display: none; }
  .qw-tab { padding: 16px 8px; }
}

/* --- CTA Bands --- */
.cta-band {
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.cta-band--green {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
  color: #fff;
  border-color: transparent;
}
.cta-band--green .cta-band__msg { color: #fff; }
.cta-band--green .cta-band__msg strong { color: #fff; }
.cta-band--light { background: var(--blue-50); }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band__msg {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
  flex: 1;
  min-width: 260px;
}
.cta-band__msg strong {
  font-weight: 800;
}
.cta-band__ctas {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__ctas { width: 100%; }
  .cta-band__ctas .btn { flex: 1; justify-content: center; }
}

/* --- Area-card CTA button --- */
.area-card__cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.area-card__cta i { width: 14px; height: 14px; }

/* --- Mobile sticky CTA bar --- */
.mobile-sticky-cta { display: none; }
@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    gap: 0;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  }
  .msc-btn {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
  }
  .msc-btn--book { background: var(--gold); }
  .msc-btn--book:hover { background: var(--gold-d); color: #fff; }
  .msc-btn--call { background: var(--blue-500); }
  .msc-btn--call:hover { background: var(--blue-600); color: #fff; }
  .msc-btn i { width: 18px; height: 18px; }
  body { padding-bottom: 64px; }
}

/* --- Hide V2 calc / pricing leftovers if any --- */
#calc-root { display: none !important; }

/* ============================================================
   V4: estimate panel — per-line delete + share actions
   ============================================================ */
.qw-estimate-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.qw-line-label { color: rgba(255,255,255,0.92); font-size: 0.92rem; }
.qw-line-price { color: var(--blue-500); font-weight: 700; font-size: 0.92rem; white-space: nowrap; }
.qw-line-remove {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); background: transparent;
  color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .15s; font-family: inherit;
}
.qw-line-remove:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.5); }

.qw-estimate-actions {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin: 6px 0 14px;
}
.qw-action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.qw-action-btn i { width: 14px; height: 14px; }
.qw-action-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }
.qw-estimate-actions .qw-reset {
  background: transparent; border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px; border-radius: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.85rem; cursor: pointer;
  width: auto; margin: 0; text-decoration: none;
}
.qw-estimate-actions .qw-reset:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* V4: form sidebar removed — single column */
.qw-pane[data-qw-pane="form"] .form-body { grid-template-columns: 1fr !important; max-width: 1100px; margin: 0 auto; }
.qw-pane[data-qw-pane="form"] .sidebar { display: none !important; }


/* ============================================================
   V6 PATCHES (2026-04-26)
   ============================================================ */

/* B) On mobile, hide the inline header phone link so the header
      shows only logo + Book Now + burger. The mobile drawer
      already has a tappable phone card. */
@media (max-width: 920px) {
  #site-header .header-cta .header-tel { display: none; }
  /* Tighter header gap on mobile */
  .header-inner { gap: 8px; padding: 10px 0; }
  .header-logo img { height: 44px; }
}

/* C) Mobile nav drawer: clean phone + Book Now styling. */
.mobile-nav__tel {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 8px !important;
  font-weight: 700;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.mobile-nav__tel i {
  width: 20px; height: 20px;
  color: var(--blue-600);
  flex-shrink: 0;
}
.mobile-nav__tel span { font-size: 1.05rem; line-height: 1; }
.mobile-nav__book {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px !important;
  width: 100%;
  padding: 14px 18px !important;
  font-size: 1rem;
  border-radius: 999px;
  border-bottom: 0 !important;
}
.mobile-nav__book i { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav__book span { line-height: 1; }

/* D) Mobile drawer must sit ABOVE the sticky CTA bar.
      Without this, taps to drawer items in the bottom 64px get
      eaten by the fixed sticky bar (z-index 9999). */
#mobile-nav {
  z-index: 60;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#site-header { z-index: 50; }
@media (max-width: 920px) {
  #site-header.menu-open { z-index: 10000; }
  #site-header.menu-open ~ * .mobile-sticky-cta,
  body:has(#site-header.menu-open) .mobile-sticky-cta {
    display: none !important;
  }
}

/* E) Reset link below Email/Text instead of inline beside them. */
.qw-estimate-actions { flex-direction: column; align-items: stretch; gap: 8px; }
.qw-estimate-actions .qw-action-btn {
  justify-content: center;
}
.qw-estimate-actions .qw-reset {
  margin-top: 4px;
  font-size: 0.82rem;
  text-align: center;
  background: transparent;
  border: 0 !important;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  padding: 6px 0 !important;
}
.qw-estimate-actions .qw-reset:hover {
  background: transparent;
  color: rgba(255,255,255,0.9);
}
/* When in column mode: split Email + Text onto one row, Reset below */
.qw-estimate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.qw-estimate-actions .qw-reset {
  grid-column: 1 / -1;
}

/* V6: Free guide body centered + mobile padding fix */
.download-card__body {
  text-align: center;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.download-card__body h2,
.download-card__body p,
.download-card__body ul,
.download-card__body .btn {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.download-card__body ul {
  display: inline-block;
  text-align: left;
  max-width: 540px;
  padding-left: 1.2em;
}
@media (max-width: 720px) {
  .download-card__body { padding: 28px 20px; }
  .download-card__body h2 { font-size: 1.55rem; line-height: 1.2; }
  .download-card__body p,
  .download-card__body li { font-size: 0.96rem; }
  .download-card__body .btn { width: 100%; }
}

/* ============================================================
   V7 PATCHES (2026-04-26)
   ============================================================ */

/* A) Search icon: lucide replaces <i> with <svg>, so target both. */
.qw-search i,
.qw-search svg {
  position: absolute !important;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  width: 18px; height: 18px;
  pointer-events: none;
}

/* B) Mobile header: give the logo breathing room from the left edge. */
@media (max-width: 920px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .header-inner { padding: 10px 4px; gap: 10px; }
  .header-logo img { height: 42px; }
}
@media (max-width: 480px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .header-logo img { height: 38px; }
}

/* C) Mobile drawer: shrink Book Now button. */
.mobile-nav__book {
  padding: 11px 18px !important;
  font-size: 0.92rem !important;
  max-width: 220px;
  margin: 14px auto 0 !important;
  align-self: center;
}
.mobile-nav__book i { width: 16px !important; height: 16px !important; }

/* D) Estimate panel Email Quote / Text Quote: shrink so each fits one line. */
.qw-estimate-actions .qw-action-btn {
  padding: 9px 8px !important;
  font-size: 0.78rem !important;
  gap: 5px !important;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}
.qw-estimate-actions .qw-action-btn i,
.qw-estimate-actions .qw-action-btn svg {
  width: 13px !important;
  height: 13px !important;
  flex-shrink: 0;
}

/* =====================================================
   V8 PATCHES — Equipment tab
   ===================================================== */

/* V8: 4-tab grid (Equipment) */
.qw-tabs { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 600px) {
  .qw-tabs { grid-template-columns: repeat(2, 1fr); }
  .qw-tab { padding: 10px 8px !important; font-size: 0.84rem !important; }
}

/* V8: Hide estimate panel when Equipment tab active */
.quote-widget.qw-eq-active .qw-estimate { display: none; }
.quote-widget.qw-eq-active .qw-grid { grid-template-columns: 1fr; }

/* V8: Equipment pane styling — reuse trailer-grid from old section but scoped */
.qw-equipment .trailer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 24px;
  align-items: center;
}
.qw-equipment .trailer-image img {
  width: 100%; height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: block;
}
.qw-equipment .spec-stack { display: grid; gap: 14px; }
.qw-equipment .spec-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--blue-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  align-items: center;
}
.qw-equipment .spec-card__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
}
.qw-equipment .spec-card__icon i,
.qw-equipment .spec-card__icon svg {
  width: 26px; height: 26px;
  color: var(--blue-600);
}
.qw-equipment .spec-card__value {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.2;
}
.qw-equipment .spec-card__label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.qw-equipment .trailer-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.qw-equipment .trailer-extras .spec-card {
  align-items: start;
  padding: 22px;
}
.qw-equipment .trailer-extras p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.qw-equipment h3 {
  margin: 0 0 8px;
  color: var(--ink);
}
@media (max-width: 720px) {
  .qw-equipment .trailer-grid { grid-template-columns: 1fr; gap: 20px; }
  .qw-equipment .trailer-extras { grid-template-columns: 1fr; }
}
