:root {
  --bg-dark: #0a0f1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2336;
  --bg-accent: #0d2847;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #38bdf8;
  --accent-glow: rgba(56, 189, 248, 0.15);
  --accent-bright: #7dd3fc;
  --green: #34d399;
  --green-glow: rgba(52, 211, 153, 0.15);
  --border: rgba(148, 163, 184, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  color: var(--accent);
  font-size: 10px;
}

.nav-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.nav-badge {
  background: var(--green-glow);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green));
}

.card-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-list li {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* Services */
.services {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(148, 163, 184, 0.2);
}

.service-primary {
  grid-column: span 2;
  background: var(--bg-accent);
  border-color: rgba(56, 189, 248, 0.15);
}

.service-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Locations */
.locations {
  padding: 100px 24px;
  background: var(--bg-card);
}

.locations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.locations-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.locations-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.location-item:hover {
  border-color: var(--accent);
}

.location-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Why */
.why {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.why-card:hover {
  border-color: rgba(148, 163, 184, 0.25);
}

.why-number {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-accent) 100%);
}

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

.closing h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.closing-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.closing-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.closing-number {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* Nav links */
.nav-brand {
  text-decoration: none;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(148, 163, 184, 0.08);
}

.nav-phone {
  text-decoration: none;
  color: var(--text-secondary);
}

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

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* Closing button */
.closing-phone {
  text-decoration: none;
  color: inherit;
}

.btn-schedule {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-schedule:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Contact section */
.contact {
  padding: 100px 24px;
  background: var(--bg-card);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  margin-top: 12px;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-phone-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.hours-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(56, 189, 248, 0.4);
}

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

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

.form-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: 14px;
  padding: 12px 16px;
}

.form-success {
  background: var(--green-glow);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 14px;
  padding: 14px 16px;
  align-items: center;
  gap: 8px;
}

.form-success a {
  color: var(--green);
  font-weight: 600;
}

.btn-submit {
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}

.btn-submit:hover:not(:disabled) {
  opacity: 0.9;
}

.btn-submit:active:not(:disabled) {
  transform: scale(0.99);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Page hero (service/area pages) */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-accent) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}

.breadcrumb:hover {
  color: var(--text-secondary);
}

.page-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 36px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.cta-phone:hover {
  opacity: 0.9;
}

/* Page content layout */
.page-content {
  padding: 80px 24px 100px;
}

.page-content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.content-main h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  margin-top: 40px;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Test type cards */
.test-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.test-type {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.test-icon {
  font-size: 8px;
  color: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.test-icon-urgent {
  color: #f87171;
}

.test-type strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.test-type p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.feature-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.faq-item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.faq-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-card-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.sidebar-phone {
  display: block;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.sidebar-phone:hover {
  opacity: 0.8;
}

.sidebar-badge {
  display: inline-block;
  background: var(--green-glow);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-link:hover {
  color: var(--accent);
}

/* Service area page */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.area-primary {
  background: var(--bg-accent);
  border-color: rgba(56, 189, 248, 0.15);
}

.area-state-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.area-sc {
  color: var(--green);
}

.area-card h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.area-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.city-group {
  margin-bottom: 20px;
}

.city-group-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
}

.cross-state-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.cross-state-icon {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.cross-state-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cross-state-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.cross-state-phone {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-left: auto;
}

.cross-state-phone:hover {
  opacity: 0.8;
}

/* Footer expanded */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-phone {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin: 8px 0 4px;
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

  .service-primary {
    grid-column: span 1;
  }

  .locations-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 24px;
    border-radius: 0;
  }

  .nav-phone {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .area-cities {
    grid-template-columns: 1fr;
  }

  .cross-state-card {
    flex-wrap: wrap;
    gap: 16px;
  }

  .cross-state-phone {
    margin-left: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .page-hero {
    padding: 100px 20px 60px;
  }
}

/* ============================================================
   Service card enhancements (pricing + links)
   ============================================================ */
.service-price-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

.service-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s;
}

.service-link:hover {
  opacity: 0.8;
}

.services-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn-book-main {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.btn-book-main:hover {
  opacity: 0.9;
}

.services-cta-or {
  font-size: 14px;
  color: var(--text-muted);
}

.services-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--mono);
}

/* ============================================================
   Sidebar pricing card
   ============================================================ */
.sidebar-pricing {
  border-color: rgba(56, 189, 248, 0.15);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.pricing-row:last-of-type {
  border-bottom: none;
}

.pricing-row span {
  color: var(--text-secondary);
  flex: 1;
}

.pricing-row strong {
  color: var(--text-primary);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.pricing-row-sub {
  opacity: 0.7;
}

.pricing-deposit {
  margin-top: 12px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pricing-call {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.price-inline {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}

.sidebar-book-btn {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

.sidebar-book-btn:hover {
  opacity: 0.9;
}

/* ============================================================
   Booking page layout
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.form-section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.field-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.field-note a {
  color: var(--accent);
}

/* Booking summary sidebar */
.booking-summary {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.summary-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.summary-line span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.summary-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary) !important;
  border-bottom: none;
}

.summary-total span {
  color: var(--text-primary) !important;
}

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

.summary-deposit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 4px 0;
}

.deposit-amount {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
}

.summary-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.summary-secure {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.summary-info {
  border-color: rgba(56, 189, 248, 0.15);
}

.summary-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-call {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.summary-call a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--mono);
}

/* Booking page responsive */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    position: static;
    order: -1;
  }
}

/* ============================================================
   Booking success page
   ============================================================ */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.success-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 2px solid rgba(52, 211, 153, 0.4);
  color: var(--green);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.error-icon {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.4);
  color: #f87171;
}

.success-inner h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.success-details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.success-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.success-row:last-child {
  border-bottom: none;
}

.success-row span {
  color: var(--text-muted);
}

.success-row strong {
  color: var(--text-primary);
}

.success-note {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.success-phone {
  display: block;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 24px;
}

.success-home {
  display: inline-block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.success-home:hover {
  color: var(--text-secondary);
}

/* Nav book link as accent button */
.nav-book-link {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 7px 14px !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 6px;
  transition: opacity 0.2s !important;
}

.nav-book-link:hover {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  opacity: 0.9;
}

/* ============================================================
   After-hours callout (hero section)
   ============================================================ */
.after-hours-callout {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.after-hours-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}

.after-hours-callout p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.after-hours-cta {
  font-family: var(--mono);
  font-size: 13px;
  color: #fbbf24;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.after-hours-cta:hover {
  opacity: 0.8;
}

/* ============================================================
   Footer business hours
   ============================================================ */
.footer-hours {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  padding-left: 0;
}

.footer-hours-after {
  color: #fbbf24;
  font-weight: 600;
}

.footer-hours-247 {
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
}

/* ============================================================
   After-hours banner (booking page)
   ============================================================ */
.after-hours-banner {
  background: rgba(245, 158, 11, 0.08);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 12px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.after-hours-banner-icon {
  color: #fbbf24;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.after-hours-banner > div {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.after-hours-banner a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--mono);
}

/* ============================================================
   Sidebar after-hours notice
   ============================================================ */
.after-hours-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.after-hours-icon {
  color: #fbbf24;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.after-hours-notice > div {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   Weight station page
   ============================================================ */
.page-hero-emergency {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1000 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.page-tag-emergency {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.cta-phone-urgent {
  background: #d97706;
  color: var(--bg-dark);
}

.cta-phone-urgent:hover {
  background: #b45309;
  opacity: 1;
}

.sidebar-emergency {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.05);
}

.price-after-hours {
  color: #fbbf24 !important;
}

/* ============================================================
   Weight station service card on landing page
   ============================================================ */
.service-weight-station {
  grid-column: span 2;
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}

.service-weight-station .service-icon {
  color: #fbbf24;
}

.service-weight-station .service-price-tag {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: #fbbf24;
}

/* Responsive for weight station card */
@media (max-width: 768px) {
  .service-weight-station {
    grid-column: span 1;
  }
}

/* ============================================================
   After-hours form note (booking page)
   ============================================================ */
.after-hours-form-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 8px;
}

.after-hours-form-icon {
  color: #fbbf24;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.after-hours-form-note > div {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.after-hours-form-note a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--mono);
}