/* ============================================================
   Junk It KC — custom.css
   Brand: #3DB54A green, #da5e22 orange accent, #1e1e1e charcoal
   ============================================================ */

:root {
  --color-primary: #3DB54A;
  --color-primary-dark: #2E8E3A;
  --color-accent: #da5e22;
  --color-accent-dark: #b3431a;
  --color-dark: #1e1e1e;
  --color-light: #f5f7f6;
  --color-text: #1e1e1e;
  --color-text-soft: #4a4f55;
  --color-border: #e3e6e9;
  --color-white: #ffffff;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 60px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);

  --font-display: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-primary-dark); text-decoration: none; }
a:hover { color: var(--color-accent); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  font-weight: 700;
}

h1 { font-size: clamp(32px, 6vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 18px; }

p { margin: 0 0 var(--space-4); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-10);
  position: relative;
  padding-bottom: var(--space-4);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto var(--space-10);
  text-align: center;
  color: var(--color-text-soft);
  font-size: var(--text-lg);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn, .btn-primary, .btn-outline, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  line-height: 1.2;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}
.btn-white {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}
.btn-white:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 12px var(--space-6);
  max-width: 1320px;
  margin: 0 auto;
}
.logo-link img { height: 54px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.header-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 4px;
}
.header-nav a:hover { color: var(--color-accent); text-decoration: none; }
.header-nav .btn-primary { padding: 10px 18px; font-size: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 16px;
}
.header-phone:hover { color: var(--color-accent); text-decoration: none; }
.header-phone svg { width: 18px; height: 18px; }

#mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
#mobile-menu-btn span {
  display: block;
  width: 26px; height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all .2s ease;
}

#mobile-nav {
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transform: translateY(-120%);
  transition: transform .3s ease;
  z-index: 999;
  border-top: 1px solid var(--color-border);
}
#mobile-nav.open { transform: translateY(0); }
#mobile-nav a {
  color: var(--color-text);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav .btn-primary { align-self: flex-start; margin-top: 8px; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  color: #fff;
  padding: var(--space-20) 0 var(--space-16);
  background:
    linear-gradient(135deg, rgba(30,30,30,0.78) 0%, rgba(46,142,58,0.55) 100%),
    url('images/junk-removal-in-kansas-city.png') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: var(--space-4); }
.hero p { font-size: var(--text-lg); color: rgba(255,255,255,0.95); max-width: 720px; margin-bottom: var(--space-6); }
.hero .hero-lead { font-size: var(--text-base); color: rgba(255,255,255,0.88); }
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-cta-row .btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(218,94,34,0.35);
}
.hero-cta-row .btn-white { background: #fff; color: var(--color-dark); }
.hero-cta-row .btn-white:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.hero a { color: #fff; text-decoration: underline; }
.hero a:hover { color: var(--color-accent); }

/* ── Booking section ────────────────────────────────────────── */
.booking-section {
  background: var(--color-light);
  padding: var(--space-16) 0;
}
.booking-section .container > h2 { text-align: center; }
.booking-section .container > p { text-align: center; max-width: 720px; margin: 0 auto var(--space-8); color: var(--color-text-soft); }

/* ── Services ───────────────────────────────────────────────── */
.section-services { background: #fff; }
.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.service-feature {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-feature img { width: 100%; height: 220px; object-fit: cover; }
.service-feature-body { padding: var(--space-5); }
.service-feature h3 { margin: 0 0 var(--space-2); color: var(--color-primary-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.service-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.service-card ul { margin: 0; padding-left: 18px; color: var(--color-text-soft); }
.service-card ul li { margin-bottom: 4px; }

/* ── VS section ─────────────────────────────────────────────── */
.section-vs { background: var(--color-light); }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
.vs-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.vs-col:last-child { border-top-color: var(--color-accent); }
.vs-col h3 { color: var(--color-dark); }
.vs-notes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.vs-notes h3 {
  color: var(--color-primary-dark);
  font-size: 20px;
  margin-bottom: var(--space-2);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* ── Trailer section ────────────────────────────────────────── */
.section-trailer { background: #fff; }
.trailer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.trailer-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.trailer-img img { width: 100%; height: auto; object-fit: cover; }
.trailer-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.trailer-spec {
  background: var(--color-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
}
.trailer-spec h3 {
  color: var(--color-primary-dark);
  margin: 0 0 4px;
  font-size: 18px;
}
.trailer-spec p { margin: 0; color: var(--color-text-soft); }
.trailer-notes { margin-top: var(--space-8); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.trailer-notes h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}

/* ── Why section ────────────────────────────────────────────── */
.section-why { background: var(--color-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-3);
  background: rgba(61,181,74,0.1);
  color: var(--color-primary-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { color: var(--color-dark); font-size: 18px; margin-bottom: var(--space-2); }
.why-card p { color: var(--color-text-soft); font-size: 14px; margin: 0; }

/* ── Areas section ──────────────────────────────────────────── */
.section-areas { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.area-card {
  background: var(--color-light);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-left-color: var(--color-accent); }
.area-card h3 {
  color: var(--color-primary-dark);
  font-size: 18px;
  margin-bottom: var(--space-2);
}
.area-card p { color: var(--color-text-soft); font-size: 14px; margin: 0; }

.all-areas {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.all-areas h3 { text-align: center; margin-bottom: var(--space-6); }
.all-areas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 820px;
  margin: 0 auto;
}
.all-areas-cols h4 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-accent);
}
.all-areas-cols ul { margin: 0; padding-left: 20px; color: var(--color-text-soft); columns: 2; }
.all-areas-cols ul li { margin-bottom: 4px; break-inside: avoid; }

/* ── Pricing ────────────────────────────────────────────────── */
.section-pricing { background: var(--color-light); }
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-collapse: collapse;
  margin: 0 auto var(--space-8);
  max-width: 860px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table th {
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: #fafbfa; }

.pricing-notes {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.pricing-notes h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
}
.pricing-notes ul { margin: 0 0 var(--space-4); padding-left: 20px; columns: 2; column-gap: var(--space-8); }
.pricing-notes ul li { margin-bottom: 4px; break-inside: avoid; color: var(--color-text-soft); }

/* ── Downloads ──────────────────────────────────────────────── */
.section-downloads { background: #fff; }
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 860px;
  margin: 0 auto;
}
.download-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: var(--color-text);
}
.download-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; color: var(--color-text); }
.download-card .dl-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.download-card .dl-icon svg { width: 24px; height: 24px; }
.download-card h3 { margin: 0 0 var(--space-2); color: var(--color-primary-dark); font-size: 18px; }
.download-card p { margin: 0; color: var(--color-text-soft); font-size: 14px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.section-faq { background: var(--color-light); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  color: var(--color-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary { background: rgba(61,181,74,0.06); }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-soft);
}
.faq-item .faq-answer p { margin: 0 0 var(--space-2); }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ── Bottom CTA ─────────────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: var(--space-16) 0;
  text-align: center;
}
.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255,255,255,0.92); font-size: var(--text-lg); max-width: 640px; margin: 0 auto var(--space-6); }
.section-cta .btn-primary { background: var(--color-accent); border-color: var(--color-accent); }
.section-cta .btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.section-cta .btn-white { background: #fff; color: var(--color-dark); border-color: #fff; }
.section-cta .btn-white:hover { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }

/* ── Footer ─────────────────────────────────────────────────── */
footer.site-footer, footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--space-12) 0 var(--space-8);
}
footer a { color: rgba(255,255,255,0.85); }
footer a:hover { color: var(--color-accent); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer-brand img { width: 120px; height: auto; margin-bottom: var(--space-4); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.footer-links strong { color: #fff; display: block; margin-bottom: var(--space-2); }
.footer-links a { display: block; padding: 4px 0; font-size: 14px; }
.footer-contact p { margin: 0 0 4px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-contact strong { color: #fff; display: block; margin-bottom: var(--space-2); }
.footer-contact a { font-weight: 700; color: var(--color-accent); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: var(--space-6) 0 var(--space-4);
}
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.footer-copy a { color: rgba(255,255,255,0.85); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-feature-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  #mobile-menu-btn { display: inline-flex; }
  .header-phone span { display: none; }
  .hero { padding: var(--space-16) 0 var(--space-12); min-height: auto; }
  .services-grid, .services-feature-grid,
  .why-grid, .vs-grid, .vs-notes, .trailer-grid,
  .trailer-notes, .downloads-grid, .all-areas-cols,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .pricing-notes ul { columns: 1; }
  .section { padding: var(--space-12) 0; }
  .all-areas-cols ul { columns: 1; }
  .pricing-table { font-size: 14px; }
  .pricing-table th, .pricing-table td { padding: 10px 8px; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .btn, .btn-primary, .btn-outline { padding: 12px 20px; font-size: 15px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .areas-grid { grid-template-columns: 1fr; }
  .container { padding: 0 var(--space-4); }
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
  }
  .pricing-table thead { display: none; }
  .pricing-table tr {
    margin-bottom: var(--space-3);
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-3);
  }
  .pricing-table td {
    border: none;
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
  }
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-right: var(--space-3);
  }
}

/* ============================================================
   FORM CSS — appended from dumpitkc junk-removal booking form.
   Color remap: #16a34a / #15803d → #3DB54A / #2E8E3A
   ============================================================ */
/* ============================================================
   DUMP IT KC - JUNK REMOVAL BOOKING FORM
   All CSS scoped to .orderform
   Colors: #da5e22 orange, #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: #da5e22;
  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: #da5e22;
  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: #da5e22;
  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: #da5e22;
  border-color: #da5e22;
  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: #da5e22;
  border-color: #da5e22;
  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: #da5e22;
}

.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: #da5e22;
}

.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: #da5e22; }

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

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

.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 #da5e22;
  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: #da5e22; 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: #da5e22; background: #fff8f2; }
.orderform .stype-card.selected { border-color: #da5e22; background: #fff3ec; }
.orderform .stype-title { font-weight: 700; font-size: 14px; color: #1e1e1e; margin-bottom: 2px; }
.orderform .stype-card.selected .stype-title { color: #da5e22; }
.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: #da5e22; background: #fff8f2; }
.orderform .time-slot.selected { border-color: #da5e22; background: #da5e22; }
.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: #da5e22;
  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: #da5e22;
}

.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: #da5e22;
}

.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: #da5e22;
  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: #da5e22;
  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: #da5e22;
  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 #da5e22;
  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: #da5e22;
  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 #da5e22;
  border-left: 6px solid #da5e22;
  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 #da5e22;
  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: #da5e22;
  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: #da5e22;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.orderform .field-group.date-highlight input[type="date"] {
  border: 2px solid #da5e22;
  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: #da5e22;
  color: #da5e22;
  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: #da5e22; 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: #da5e22;
  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: #da5e22;
  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: #da5e22 !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: #da5e22;
  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: #da5e22;
  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: #da5e22;
}

/* ---- 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: #da5e22;
}

.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 #da5e22;
  line-height: 1.5;
}

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

.orderform .sidebar-phone a {
  color: #da5e22;
  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 #da5e22;
  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 #da5e22;
  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;
}
