/* ============================================================
   JTR Mover Services — style.css
   ============================================================ */

:root {
  --navy:    #1a2e52;
  --navy2:   #142444;
  --orange:  #f97316;
  --orange2: #ea6c0d;
  --white:   #ffffff;
  --off:     #f8f9fc;
  --gray:    #6b7280;
  --gray2:   #374151;
  --border:  #e5e7eb;
  --red:     #ef4444;
  --green:   #22c55e;
  --shadow:  0 4px 24px rgba(26,46,82,.10);
  --shadow2: 0 8px 40px rgba(26,46,82,.16);
  --radius:  10px;
  --radius2: 18px;
  --transition: .22s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll on all screens */
}

body {
  font-family: var(--font);
  color: var(--gray2);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange2); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy2);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 7px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right a { color: rgba(255,255,255,.85); }
.topbar-right a:hover { color: var(--orange); }
.topbar-phone { font-weight: 700; color: var(--orange) !important; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow2); border-bottom-color: transparent; }

.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 12px; padding-bottom: 12px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -1px;
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1rem; font-weight: 800; color: var(--navy); }
.logo-tagline { font-size: .68rem; color: var(--gray); font-weight: 500; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 8px 13px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--off); color: var(--orange); }

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid var(--border);
  min-width: 180px;
  z-index: 200;
  padding: 6px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown .dropdown li a { border-radius: 0; font-weight: 500; font-size: .84rem; color: var(--gray2); }
.has-dropdown .dropdown li a:hover { background: var(--off); color: var(--orange); }
.has-dropdown .dropdown .view-all { color: var(--orange); font-weight: 700; border-top: 1px solid var(--border); margin-top: 4px; padding-top: 8px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-call:hover { background: var(--navy); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange2); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; margin-top: 14px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 60%, #1e4080 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.18);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.35);
  padding: 6px 14px; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.75); }
.trust-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* Quick quote card in hero */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius2);
  padding: 32px 28px;
  box-shadow: var(--shadow2);
  color: var(--gray2);
}
.hero-form-card h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.hero-form-card p { font-size: .83rem; color: var(--gray); margin-bottom: 20px; }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .88rem;
  color: var(--gray2);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
.form-control.error { border-color: var(--red); }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; font-size: .86rem; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 4px; cursor: pointer; accent-color: var(--orange); flex-shrink: 0; }
.form-check-group { background: var(--off); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.form-check-group legend { font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: block; }

/* Multi-step */
.step-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; justify-content: center; }
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); transition: all var(--transition);
}
.step-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }
.step-dot.done { background: var(--green); }
.form-step { display: none; }
.form-step.active { display: block; }
.step-label { font-size: .78rem; font-weight: 600; color: var(--gray); text-align: center; margin-bottom: 20px; }

/* Alert */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .88rem; font-weight: 500; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.alert-error   { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-bg { background: var(--off); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-subtitle { color: rgba(255,255,255,.65); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-size: .75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: .6px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-navy .section-title { color: var(--white); }
.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 580px; margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow2); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(249,115,22,.06));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .86rem; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.service-card .link-more { font-size: .82rem; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 4px; }
.service-card .link-more:hover { gap: 8px; }
.service-featured {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  border-color: var(--navy);
  color: var(--white);
}
.service-featured h3, .service-featured p { color: var(--white); }
.service-featured p { color: rgba(255,255,255,.75); }
.service-featured .service-icon { background: rgba(255,255,255,.12); }
.service-featured .link-more { color: var(--orange); }

/* ── STATS ── */
.stats-strip { background: var(--orange); color: var(--white); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-item p { font-size: .82rem; opacity: .85; margin-top: 4px; font-weight: 500; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: calc(12.5% + 30px); right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
}
.process-step { text-align: center; }
.step-num {
  width: 60px; height: 60px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--orange);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.process-step h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .82rem; color: var(--gray); }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--navy);
}
.area-card:hover { border-color: var(--orange); color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.area-card strong { display: block; font-size: .92rem; font-weight: 700; }
.area-card span { font-size: .75rem; color: var(--gray); }
.area-featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.area-featured span { color: rgba(255,255,255,.65); }
.area-featured:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; animation: fadeIn .5s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stars { color: var(--orange); font-size: 1.3rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; color: var(--gray2); font-style: italic; line-height: 1.7; margin-bottom: 22px; }
.testimonial-author strong { font-weight: 700; color: var(--navy); font-size: .92rem; }
.testimonial-author span { color: var(--gray); font-size: .8rem; display: block; }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); }
.t-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: rgba(249,115,22,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: .84rem; color: var(--gray); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--orange), #dc6a0a);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta-band p { opacity: .9; margin-bottom: 28px; font-size: 1.02rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── QUOTE PAGE ── */
.quote-page { padding: 70px 0; }
.quote-inner { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.quote-form-wrap { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius2); padding: 40px 36px; }
.quote-form-wrap h1 { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.quote-form-wrap > p { color: var(--gray); font-size: .9rem; margin-bottom: 28px; }
.quote-sidebar > div { background: var(--off); border-radius: var(--radius2); padding: 24px; margin-bottom: 20px; }
.quote-sidebar h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.sidebar-include-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-include-list li { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--gray2); }
.sidebar-include-list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.sidebar-contact p { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--gray2); margin-bottom: 8px; }
.sidebar-contact a { color: var(--navy); font-weight: 600; }
.sidebar-contact a:hover { color: var(--orange); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.contact-info p { color: var(--gray); margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { width: 46px; height: 46px; background: rgba(249,115,22,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-detail h4 { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: .88rem; color: var(--gray2); margin: 0; }
.contact-detail a:hover { color: var(--orange); }

/* ── AREA PAGE ── */
.area-hero {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}
.area-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 14px; }
.area-hero h1 span { color: var(--orange); }
.area-hero p { font-size: 1rem; opacity: .85; max-width: 560px; margin: 0 auto 28px; }
.area-content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; padding: 70px 0; }
.area-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.area-content p { color: var(--gray2); margin-bottom: 16px; line-height: 1.7; }
.area-services-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.area-services-list li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--gray2); }
.area-services-list li::before { content: '→'; color: var(--orange); font-weight: 700; }
.nearby-areas { background: var(--off); border-radius: var(--radius); padding: 20px; }
.nearby-areas h3 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-links a { font-size: .8rem; background: var(--white); border: 1px solid var(--border); color: var(--navy); padding: 5px 12px; border-radius: 20px; transition: all var(--transition); }
.nearby-links a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { opacity: .82; font-size: 1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.45); margin: 0 6px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy2); color: rgba(255,255,255,.8); }
.footer-top { padding: 60px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { width: 42px; height: 42px; font-size: .95rem; }
.footer-logo .logo-name { color: var(--white); font-size: .92rem; }
.footer-logo .logo-tagline { color: rgba(255,255,255,.5); font-size: .62rem; }
.footer-about p { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { font-size: .72rem; font-weight: 700; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75); padding: 4px 10px; border-radius: 20px; }

.footer-col h3 { font-size: .85rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: .82rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col li a:hover { color: var(--orange); }
.footer-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.footer-areas li a { font-size: .8rem; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.7); }
.contact-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.contact-list a { color: rgba(255,255,255,.75); }
.contact-list a:hover { color: var(--orange); }
.footer-hours { background: rgba(255,255,255,.06); border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; }
.footer-hours h4 { font-size: .75rem; font-weight: 700; color: var(--white); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.footer-hours p { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--orange); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--orange); }

/* ── ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quote-inner { grid-template-columns: 1fr; }
  .quote-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .area-content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--border); padding: 16px; box-shadow: var(--shadow2); z-index: 999; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 10px 14px; font-size: .92rem; }
  .has-dropdown .dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; flex-shrink: 0; margin-left: auto; }
  .header-cta { display: none; }
  .site-header { position: relative; overflow-x: hidden; overflow-y: visible; }
  /* logo: shrinkable on mobile, hide tagline */
  .logo { flex-shrink: 1; min-width: 0; }
  .logo-text { min-width: 0; }
  .logo-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .9rem; }
  .logo-tagline { display: none; }
  .logo-icon { width: 40px; height: 40px; font-size: 1rem; }
  .header-inner { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .quote-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  /* hero buttons: stack vertically, full-width and centered */
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; text-align: center; }
  .hero-trust { gap: 12px; }
  .section { padding: 55px 0; }
  .quote-form-wrap { padding: 28px 20px; }
  .container { padding: 0 16px; }
  .hero { padding: 60px 0 50px; }
  .hero-form-card { padding: 24px 18px; }
  .area-content-grid { padding: 40px 0; }
  .stats-grid { gap: 14px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .area-services-list { grid-template-columns: 1fr; }
}

/* ── Quote form: path toggle ─────────────────────────────────── */
.path-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}
.path-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  user-select: none;
}
.path-card:hover { border-color: var(--orange); background: #fff7f0; }
.path-card.selected {
  border-color: var(--orange);
  background: #fff7f0;
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.path-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.path-name { font-weight: 800; font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.path-desc { font-size: .78rem; color: var(--gray2); line-height: 1.4; }

/* ── Quote form: service selection cards (standalone path) ───── */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-select-card {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--off);
  position: relative;
}
.service-select-card input[type="checkbox"] {
  position: absolute;
  top: 12px; right: 12px;
  width: 18px; height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
}
.service-select-card:hover { border-color: var(--orange); background: #fff7f0; }
.service-select-card.checked {
  border-color: var(--orange);
  background: #fff7f0;
  box-shadow: 0 0 0 3px rgba(249,115,22,.10);
}
.service-select-inner { padding-right: 22px; }
.service-select-icon { font-size: 1.6rem; margin-bottom: 6px; }
.service-select-name { font-weight: 800; font-size: .88rem; color: var(--navy); margin-bottom: 3px; }
.service-select-desc { font-size: .76rem; color: var(--gray2); line-height: 1.4; }

/* required star */
.req { color: #dc2626; }

@media (max-width: 540px) {
  .path-toggle { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
}
