/* ==============================
   WILLIS MOBILE SERVICE
   Dark Theme — Charcoal + Gold + Silver
   ============================== */

:root {
  --bg: #111111;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --border: #2e2e2e;
  --accent: #C4A265;
  --accent-dim: #d4b87a;
  --text: #C0C0C0;
  --text-2: #888888;
  --text-3: #555555;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--accent); }
.site-nav a.active { color: var(--accent); }

.header-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent) !important;
  letter-spacing: 0.5px;
  text-decoration: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_171993/images/d4778f5c-e174-40c7-8546-fe6d104234db.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.90) 0%,
    rgba(17, 17, 17, 0.60) 50%,
    rgba(17, 17, 17, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-logo-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-logo-badge img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  border: 1px solid rgba(196, 162, 101, 0.3);
}

.hero-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-logo-tagline {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-headline span {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.hero-cta-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-cta-phone:hover { color: var(--accent); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* HERO VISUAL CARD */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  background: rgba(26, 26, 26, 0.92);
  border: 1px solid rgba(196, 162, 101, 0.25);
  border-radius: 12px;
  padding: 28px;
  width: 280px;
  backdrop-filter: blur(8px);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 162, 101, 0.12);
  border: 1px solid rgba(196, 162, 101, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dim);
  margin-bottom: 20px;
}

.card-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.stat-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-chip {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS SHARED */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 640px;
}

/* SERVICES */
.services-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(196, 162, 101, 0.4);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: var(--text-3);
  padding-left: 14px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* PROCESS */
.process-section {
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  padding: 0 24px;
}

.step-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 48px;
  flex-shrink: 0;
}

.process-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  max-width: 420px;
}

.guarantee-icon {
  flex-shrink: 0;
}

.process-guarantee p {
  font-size: 14px;
  color: var(--text-2);
}

/* COVERAGE */
.coverage-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.coverage-sub {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.city-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--text-2);
}

.coverage-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
}

/* MAP GRAPHIC */
.coverage-map {
  display: flex;
  justify-content: center;
}

.map-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.map-circle-1 {
  width: 260px;
  height: 260px;
  border-style: dashed;
  animation: spin-slow 60s linear infinite;
}

.map-circle-2 {
  width: 180px;
  height: 180px;
  border-color: rgba(249, 115, 22, 0.3);
  border-style: solid;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pin-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* CLOSING */
.closing-section {
  padding: 120px 0;
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.closing-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.closing-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.closing-cta-phone:hover {
  background: var(--accent-dim);
}

.closing-cta-primary {
  background: var(--accent);
}

.cta-divider {
  color: var(--text-3);
  font-size: 14px;
}

.closing-cta-email {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.closing-cta-email:hover {
  color: var(--text);
  border-color: var(--text-3);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.footer-phone:hover { color: var(--accent-dim); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-connector {
    width: 1px;
    height: 32px;
    margin: 0 auto;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    text-align: left;
  }

  .hero {
    padding: 60px 24px 80px;
  }

  .closing-contact {
    flex-direction: column;
  }

  .cta-divider {
    display: none;
  }
}

/* ====== REQUEST A QUOTE PAGE ====== */
.quote-page {
  min-height: 100vh;
}

.quote-page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px 64px;
}

.quote-page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.quote-page-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text);
}

.quote-page-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.response-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-2);
}

.response-time-badge strong { color: var(--accent-dim); }

/* Form container */
.quote-form-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Form */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  margin: 20px;
  line-height: 1.5;
}

.form-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Sections */
.form-section {
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.form-section:last-of-type { border-bottom: none; }

.form-section-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 20px;
  width: 100%;
}

.section-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0;
}

/* Form rows */
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.form-row:last-child { margin-bottom: 0; }
.form-row-2 > .form-field { flex: 1; }
.form-row-3 > .form-field { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.required { color: var(--accent); }

/* Inputs */
.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-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='%236b7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

/* Service type grid */
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.service-radio-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}

.service-radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-radio-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--text);
}

.service-radio-card.selected {
  border-color: var(--accent);
  color: var(--accent-dim);
  background: rgba(249, 115, 22, 0.08);
}

.service-radio-card span { pointer-events: none; }

/* Submit */
.form-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quote-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.quote-submit-btn:hover { background: var(--accent-dim); }
.quote-submit-btn:active { transform: scale(0.98); }

.form-footer-note {
  font-size: 13px;
  color: var(--text-3);
}

/* Side info cards */
.quote-side-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

.side-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.side-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.side-info-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.side-info-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-info-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.side-info-steps strong { font-size: 13px; color: var(--text); display: block; margin-bottom: 2px; }
.side-info-steps p { font-size: 12px; color: var(--text-3); line-height: 1.5; }

.side-info-urgent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-color: rgba(249, 115, 22, 0.2);
}

.side-info-urgent svg { flex-shrink: 0; margin-top: 2px; }
.side-info-urgent strong { font-size: 13px; color: var(--text); display: block; margin-bottom: 4px; }
.side-info-urgent p { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.urgent-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.success-container {
  text-align: center;
  max-width: 480px;
}

.success-icon {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.success-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}

.success-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.success-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.success-home-btn:hover { border-color: var(--text-3); color: var(--text); }

.success-call-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.success-call-btn:hover { background: var(--accent-dim); }

/* Nav CTA */
.nav-cta-link {
  background: var(--accent) !important;
  color: white !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta-link:hover { background: #ea580c !important; color: white !important; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .quote-form-container {
    grid-template-columns: 1fr;
  }
  .quote-side-info {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .side-info-card { flex: 1; min-width: 260px; }
}

@media (max-width: 640px) {
  .service-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row-3 { flex-direction: column; }
  .form-row-2 { flex-direction: column; }
}

@media (max-width: 480px) {
  .quote-page-header { padding: 40px 20px 48px; }
  .quote-form-container { padding: 24px 16px 60px; }
  .form-section { padding: 20px 16px; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .quote-submit-btn { width: 100%; justify-content: center; }
  .success-actions { flex-direction: column; }
  .success-call-btn { text-align: center; }
}