/* ============================================================
   SelfTow — shared stylesheet for state & city location pages
   Design tokens match index.html (selftow.com homepage)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #FF6B1A;
  --primary-dark: #D95500;
  --primary-glow: rgba(255,107,26,0.2);
  --bg: #080808;
  --surface: #111111;
  --surface2: #1A1A1A;
  --surface3: #222222;
  --border: #2C2C2C;
  --border-light: #3A3A3A;
  --text: #F0F0F0;
  --text-muted: #909090;
  --text-dim: #484848;
  --success: #22C55E;
  --r: 14px;
  --r-sm: 8px;
  --max: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff; flex-shrink: 0;
}
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.logo-text span { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 20px; border: 1px solid var(--border);
  transition: all .2s;
}
.nav-phone:hover { color: var(--text); border-color: var(--border-light); }
.nav-phone i { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700; padding: 9px 18px;
  border-radius: 20px; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); }

/* ── PAGE WRAP ── */
main { padding-top: 64px; }
section { padding: 64px 24px; }
.inner { max-width: var(--max); margin: 0 auto; }

/* ── BREADCRUMB / HERO ── */
.loc-hero {
  padding: 56px 24px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.loc-hero-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(255,107,26,.12) 0%, transparent 65%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--text-dim); margin-bottom: 20px; position: relative;
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }

.loc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,107,26,.1); border: 1px solid rgba(255,107,26,.25);
  color: var(--primary); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; position: relative;
}
.loc-h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900; line-height: 1.06; letter-spacing: -1.5px;
  margin-bottom: 18px; max-width: 820px; position: relative;
}
.loc-h1 .accent { color: var(--primary); }
.loc-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.65;
  max-width: 640px; margin-bottom: 30px; position: relative;
}
.loc-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff; font-size: 16px; font-weight: 800;
  padding: 16px 32px; border-radius: var(--r); transition: all .2s; letter-spacing: -0.3px;
  border: none; cursor: pointer;
}
.btn-hero:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(255,107,26,.3); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 15px; font-weight: 700;
  padding: 14px 24px; border-radius: var(--r); border: 1px solid var(--border-light);
  transition: all .2s; background: var(--surface);
}
.btn-hero-ghost:hover { border-color: var(--primary); color: var(--primary); }
.loc-trust { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; position: relative; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-item i { color: var(--primary); font-size: 12px; }

/* ── CONTENT ── */
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--primary); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.65; max-width: 640px; margin-bottom: 40px; }

.content-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: flex-start;
}
.content-copy p { font-size: 15.5px; line-height: 1.75; color: var(--text-muted); margin-bottom: 18px; }
.content-copy strong { color: var(--text); }
.content-photo { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); position: sticky; top: 88px; }
.content-photo img { width: 100%; height: 340px; object-fit: cover; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 8px 0 28px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); font-weight: 500; }
.check-item i { color: var(--primary); font-size: 13px; }

.cta-band {
  background: linear-gradient(135deg, rgba(255,107,26,.12) 0%, rgba(255,107,26,.04) 100%);
  border: 1px solid rgba(255,107,26,.2);
  border-radius: 20px; padding: 36px; text-align: center; margin: 8px 0 32px;
}
.cta-band .cta-phone {
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 900; color: var(--primary);
  letter-spacing: -1px; margin: 10px 0;
}
.cta-band p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 4px; }
.cta-band .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* ── FEATURE / SERVICE CARDS ── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px 20px; transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(255,107,26,.35); transform: translateY(-3px); }
.feature-icon {
  width: 42px; height: 42px; background: rgba(255,107,26,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary);
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 15.5px; font-weight: 800; letter-spacing: -0.2px; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── CITY / STATE DIRECTORY GRID ── */
.dir-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dir-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.dir-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 16px; transition: all .2s; display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.dir-card:hover { border-color: var(--primary); background: var(--surface3); }
.dir-card .dc-name { font-size: 14px; font-weight: 700; }
.dir-card .dc-sub { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }
.dir-card i { color: var(--primary); font-size: 12px; flex-shrink: 0; }

.states-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.region-heading { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--text-dim); margin: 36px 0 14px; }
.region-heading:first-child { margin-top: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 20px; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\002B'; color: var(--primary); font-size: 18px; font-weight: 900; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── DRIVER BANNER (reused) ── */
#drivers-band { background: var(--surface); border-top: 1px solid var(--border); }
.driver-banner {
  background: linear-gradient(135deg, rgba(255,107,26,.12) 0%, rgba(255,107,26,.04) 100%);
  border: 1px solid rgba(255,107,26,.2); border-radius: 24px; padding: 48px 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.driver-banner h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
.driver-banner h2 span { color: var(--primary); }
.driver-banner p { font-size: 14.5px; color: var(--text-muted); max-width: 420px; }
.driver-btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff;
  font-size: 14.5px; font-weight: 800; padding: 15px 26px; border-radius: var(--r);
  white-space: nowrap; transition: all .2s;
}
.driver-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,26,.3); }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 24px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-links h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-dim); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; font-size: 12.5px; color: var(--text-dim); flex-wrap: wrap; gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-photo { position: static; }
  .content-photo img { height: 240px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .driver-banner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .driver-btn { margin: 0 auto; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  section { padding: 48px 20px; }
  .loc-hero { padding: 44px 20px 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav-phone { display: none; }
}
