/* 
  TERRA HAUL PDX - MODERN VETERAN JUNK REMOVAL DESIGN SYSTEM
  Colors: Tactical Slate (#0B132B, #1C2541), Honor Gold (#F4A261, #E76F51), Veteran Cyan/Green (#2A9D8F)
*/

:root {
  --bg-dark: #111511;
  --bg-card: #1B211B;
  --bg-card-hover: #273027;
  --bg-surface: #242C24;
  --border-color: rgba(192, 90, 62, 0.35);
  --border-color-glow: rgba(192, 90, 62, 0.75);
  
  --primary: #C05A3E;
  --primary-hover: #A64B32;
  --primary-glow: rgba(192, 90, 62, 0.4);
  
  --accent-gold: #D99B26;
  --accent-green: #4E6E45;
  --accent-blue: #4A7C9D;
  --accent-red: #C0392B;

  --text-main: #F5EBE0;
  --text-muted: #B3A89B;
  --text-gold: #C05A3E;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 25px rgba(192, 90, 62, 0.35);
  
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section {
  padding: 80px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--text-gold); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--accent-green); }
.text-warning { color: var(--primary); }
.text-info { color: var(--accent-blue); }

.hidden { display: none !important; }

/* TOP HONOR BAR */
.honor-top-bar {
  background: linear-gradient(90deg, #0B132B 0%, #1C2541 50%, #0B132B 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 13px;
}

.honor-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.honor-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pow-flag { font-size: 16px; }

.honor-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}

.discount-pill {
  background: rgba(244, 162, 97, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
}

.phone-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
}
.phone-link:hover { color: var(--primary); }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 12, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.custom-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #000;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.pdx-tag {
  color: var(--primary);
}

.brand-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 600;
}

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

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

.nav-links a:hover {
  color: var(--primary);
}

.nav-btn-highlight {
  background: var(--primary);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: transform 0.2s, background 0.2s;
}

.nav-btn-highlight:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-2px);
}

.dispatch-badge-btn {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 1.5s infinite;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 90px 0 100px;
  background: radial-gradient(circle at 70% 30%, rgba(244, 162, 97, 0.08) 0%, transparent 60%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid var(--border-color);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #E76F51 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
}

.btn-success {
  background: var(--accent-green);
  color: #fff;
}
.btn-success:hover {
  background: #238579;
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(15, 23, 42, 0.7);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

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

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

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color-glow);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card);
}

.hero-logo-frame {
  background: radial-gradient(circle at 50% 50%, #202720 0%, #111511 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 420px;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-logo-display {
  height: auto;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

.hero-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.live-dispatch-toast {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.toast-icon { font-size: 24px; }
.live-dispatch-toast p { font-size: 12px; color: var(--text-muted); }

/* CARDS */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

/* 50-MILE RADIUS ZIP CHECKER */
.zip-section {
  padding-top: 20px;
}

.zip-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(30,41,59,0.9) 100%);
  border: 1px solid var(--border-color-glow);
}

.zip-header { margin-bottom: 20px; text-align: center; }

.zip-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.zip-input-group input {
  flex: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 15px;
}
.zip-input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.zip-result-box {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.zip-result-box.success {
  background: rgba(42, 157, 143, 0.15);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

.zip-result-box.error {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
}

.pdx-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.city-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  color: var(--text-muted);
}

/* LOAD ESTIMATOR */
.section-title {
  margin-bottom: 50px;
}

.sub-heading {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 12px;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.load-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.load-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.load-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.load-card.active {
  background: rgba(244, 162, 97, 0.12);
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.load-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.load-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.load-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.load-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.estimate-summary-card h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.addon-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.discount-toggle-box {
  background: rgba(244, 162, 97, 0.08);
  border: 1px dashed var(--primary);
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.switch-container {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch-container input { opacity: 0; width: 0; height: 0; }

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #334155;
  transition: .3s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 4px; bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .switch-slider { background-color: var(--primary); }
input:checked + .switch-slider:before { transform: translateX(24px); }

.estimate-total-box {
  text-align: center;
  background: var(--bg-dark);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.total-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.total-amount {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
}
.total-note { font-size: 11px; color: var(--text-muted); }

/* BOOKING WIZARD */
.booking-section {
  background: radial-gradient(circle at 30% 70%, rgba(42, 157, 143, 0.08) 0%, transparent 60%);
}

.booking-wizard-container {
  max-width: 860px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: all 0.3s;
}

.step-item.active {
  opacity: 1;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-item.active .step-num {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.step-title {
  font-size: 14px;
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 12px;
}

.wizard-page {
  display: none;
}
.wizard-page.active {
  display: block;
}

.wizard-page h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.wizard-page p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: flex;
  gap: 16px;
}

.col-3 { flex: 3; }
.col-4 { flex: 4; }
.col-5 { flex: 5; }
.col-6 { flex: 6; }
.col-8 { flex: 8; }

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.time-slot-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.time-slot-card input { display: none; }

.time-slot-card.active {
  border-color: var(--primary);
  background: rgba(244, 162, 97, 0.1);
}

.slot-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.slot-time { font-size: 12px; color: var(--text-muted); }

.notification-pref-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.notification-pref-card h4 { margin-bottom: 14px; font-size: 15px; }

.pref-options { display: grid; gap: 10px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.booking-review-box {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.booking-review-box h4 { margin-bottom: 12px; font-size: 15px; }

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 16px 20px;
  background: var(--bg-card);
}

.gallery-caption strong {
  display: block;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.gallery-caption span {
  font-size: 13px;
  color: var(--text-muted);
}

/* POW TRIBUTE */
.pow-section {
  background: linear-gradient(180deg, #070C18 0%, #0F172A 100%);
}

.pow-card {
  background: radial-gradient(circle at 10% 50%, rgba(244,162,97,0.1) 0%, rgba(15,23,42,0.95) 70%);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.pow-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.pow-tag {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.pow-text-col h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 14px;
}

.pow-quote {
  font-style: italic;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.pow-text-col p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pow-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pow-badge-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* MODALS & DISPATCH */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 22px;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
}
.modal-close-btn:hover { color: #fff; }

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.dispatch-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.metric-title { font-size: 12px; color: var(--text-muted); display: block; }
.metric-val { font-family: var(--font-heading); font-size: 24px; font-weight: 700; }

.dispatch-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.dispatch-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.dispatch-table th, .dispatch-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dispatch-table th {
  background: var(--bg-dark);
  color: var(--text-muted);
  font-weight: 600;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pending { background: rgba(244, 162, 97, 0.2); color: var(--primary); }
.status-confirmed { background: rgba(58, 134, 239, 0.2); color: var(--accent-blue); }
.status-enroute { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.status-completed { background: rgba(42, 157, 143, 0.2); color: var(--accent-green); }

/* NOTIFICATION MODAL PREVIEW */
.alert-success-banner {
  background: rgba(42, 157, 143, 0.15);
  border: 1px solid var(--accent-green);
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.check-icon {
  width: 32px; height: 32px;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}

.notification-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.notif-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.notif-tab.active {
  background: var(--primary);
  color: #000;
}

.notif-tab-content { display: none; }
.notif-tab-content.active { display: block; }

.phone-mockup {
  max-width: 420px;
  margin: 0 auto;
  background: #000;
  border: 2px solid #334155;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.phone-header {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.sms-bubble {
  background: #27272a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.sms-meta { font-size: 10px; color: var(--text-muted); text-align: center; }

.terminal-box {
  background: #090d16;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: monospace;
  color: #38bdf8;
}

.terminal-title {
  color: var(--text-muted);
  font-size: 12px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.receipt-paper {
  background: #fff;
  color: #0f172a;
  padding: 30px;
  border-radius: var(--radius-sm);
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.receipt-header {
  border-bottom: 2px solid #0f172a;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.receipt-header h2 { font-size: 20px; font-weight: 800; color: #0f172a; }

/* FOOTER */
.footer {
  background: #04070F;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 { font-family: var(--font-heading); margin-bottom: 12px; }
.footer-col h4 { margin-bottom: 12px; color: var(--text-main); }
.footer-col p { color: var(--text-muted); margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; }
  .estimator-grid { grid-template-columns: 1fr; }
  .pow-grid { grid-template-columns: 1fr; }
  .time-slot-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .dispatch-metrics-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 36px; }
  .form-row { flex-direction: column; gap: 0; }
  .wizard-steps { flex-direction: column; align-items: flex-start; gap: 12px; }
  .step-line { display: none; }
}

/* PRINT STYLES */
@media print {
  body * { visibility: hidden; }
  #printable-receipt, #printable-receipt * { visibility: visible; }
  #printable-receipt { position: absolute; left: 0; top: 0; width: 100%; }
}
