/* ============================================================
   Liberty Pro Moving — Brand Stylesheet
   Navy #14264c · Crimson #c8202c · Cream #f8f4ed · Gold #c9a961
   Fraunces (display) + Manrope (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,500;1,9..144,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #14264c;
  --navy-deep: #0d1a36;
  --crimson: #c8202c;
  --crimson-dark: #a01821;
  --cream: #f8f4ed;
  --cream-warm: #f0e9dc;
  --gold: #c9a961;
  --gold-bright: #d9bc78;
  --ink: #2a2a2a;
  --gray: #6b6b6b;
  --gray-light: #d8d4cc;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20, 38, 76, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 38, 76, 0.12);
  --shadow-lg: 0 16px 48px rgba(20, 38, 76, 0.16);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 600;
  color: var(--crimson);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--crimson); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--crimson-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOP BAR (Owner answers) + HEADER
   ============================================================ */

.top-bar {
  background: var(--navy);
  color: var(--cream);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar .status::before {
  content: '●';
  color: #4ade80;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.top-bar a {
  color: var(--gold-bright);
  font-weight: 600;
  margin-left: 18px;
}
.top-bar a:hover { color: var(--white); }

header.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}

.logo img { height: 48px; width: auto; }

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

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

nav.main-nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--navy);
  color: var(--cream);
}
.btn-secondary:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--cream);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.15;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.stat .label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--crimson);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
}

.hero-badge .big {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  line-height: 1;
}

/* ============================================================
   CREDENTIALS BAR
   ============================================================ */

.credentials {
  background: var(--navy);
  color: var(--cream);
  padding: 24px 0;
}

.credentials .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cred-item {
  text-align: center;
  padding: 0 12px;
}

.cred-item .icon {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

.cred-item .label {
  font-size: 11px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.cred-item .value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  display: block;
  margin-top: 2px;
}

/* ============================================================
   QUOTE FORM (the most important part)
   ============================================================ */

.quote-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 17px;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.quote-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.quote-progress::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}

.progress-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.progress-step.active {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 32, 44, 0.15);
}

.progress-step.complete {
  background: var(--navy);
  color: var(--cream);
}

.quote-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.quote-step.active { display: block; }

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

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-desc {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 15px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.option-btn {
  background: var(--cream);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.option-btn .emoji {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.option-btn:hover {
  border-color: var(--crimson);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.option-btn.selected {
  border-color: var(--crimson);
  background: var(--crimson);
  color: var(--white);
}

.option-btn.selected .emoji { transform: scale(1.1); }

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--crimson);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream);
  transition: all 0.15s;
  font-size: 14px;
  font-weight: 500;
}

.checkbox-row:hover { border-color: var(--navy); background: var(--white); }
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--crimson); cursor: pointer; }

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.estimate-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.estimate-card .label {
  font-size: 13px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}

.estimate-card .price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.1;
}

.estimate-card .breakdown {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.85;
}

.estimate-explainer {
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gray);
}

.estimate-explainer strong { color: var(--navy); display: block; margin-bottom: 6px; }

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

.success-card .checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4ade80;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.success-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */

section {
  padding: 80px 0;
}

section.alt-bg {
  background: var(--white);
}

section.dark-bg {
  background: var(--navy);
  color: var(--cream);
}

section.dark-bg h2,
section.dark-bg h3 {
  color: var(--white);
}

section.dark-bg h2 em,
section.dark-bg h3 em {
  color: var(--gold-bright);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card .number {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
  margin: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-light);
  position: relative;
  transition: all 0.2s;
}

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

.service-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--crimson);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 12px 0;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-card a {
  font-weight: 700;
  color: var(--crimson);
}

.service-card a::after {
  content: ' →';
  transition: margin-left 0.2s;
}

.service-card a:hover::after { margin-left: 4px; }

/* ============================================================
   CITIES GRID
   ============================================================ */

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.city-link {
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.city-link:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--crimson);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .answer {
  padding: 0 24px 20px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner h2 em {
  color: var(--gold-bright);
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--crimson);
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
  color: var(--crimson-dark);
}

.cta-banner .btn-secondary {
  background: var(--navy);
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 60px 0 30px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

footer h4 {
  color: var(--gold-bright);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer ul li { margin-bottom: 8px; }

footer a {
  color: var(--cream);
  font-size: 15px;
  opacity: 0.85;
}

footer a:hover { color: var(--gold-bright); opacity: 1; }

footer .footer-brand p {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 16px;
}

footer .contact-info {
  font-size: 14px;
  line-height: 1.9;
}

footer .footer-bottom {
  border-top: 1px solid rgba(248, 244, 237, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  background: var(--cream-warm);
  padding: 14px 0;
  font-size: 14px;
  color: var(--gray);
}

.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { color: var(--crimson); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-light); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 12px;
  z-index: 99;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

.mobile-cta .btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
}

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16/10; }
  .three-col { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 20px; box-shadow: var(--shadow-md); }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 12px; }
  .nav-toggle { display: block; }
  .header-cta .btn-secondary { display: none; }
}

@media (max-width: 640px) {
  .hero-stats { gap: 20px; }
  .stat .num { font-size: 26px; }
  .quote-form { padding: 24px; }
  .input-row { grid-template-columns: 1fr; }
  .credentials .container { gap: 8px; }
  .cred-item { padding: 0 6px; }
  .cred-item .value { font-size: 13px; }
  .cred-item .label { font-size: 10px; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; }
  footer .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .hero { padding: 30px 0; }
  section { padding: 50px 0; }
  .top-bar .container { justify-content: center; text-align: center; }
}
