/* -------------------------------------------------------------------------- */
/*  Premiere Portable Services - Design System & Responsive Mobile Styles     */
/* -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #07090e;
  --bg-surface: #0f1420;
  --bg-surface-elevated: #161d2f;
  --bg-card: rgba(18, 25, 41, 0.75);
  --bg-glass: rgba(15, 20, 32, 0.65);
  
  --gold-primary: #d4af37;
  --gold-light: #f5e4a8;
  --gold-dark: #aa8620;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-gradient: linear-gradient(135deg, #f5e4a8 0%, #d4af37 50%, #aa8620 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f5e4a8 40%, #d4af37 100%);
  
  --accent-blue: #3b82f6;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #f3e5ab;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-glow: rgba(212, 175, 55, 0.5);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.sub-heading {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sub-heading::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--gold-primary);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Page Sub-Header Banner */
.page-banner {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #07090e 0%, #0f1420 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  text-align: center;
}

.page-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.breadcrumbs a {
  color: var(--gold-primary);
  text-decoration: none;
}

/* Glass Card Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #07090e;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  background: var(--gold-gradient-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.btn-outline-gold:hover {
  background: var(--gold-glow);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  min-height: 38px;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}

/* Floating Banner Alert */
.top-notice-bar {
  background: linear-gradient(90deg, #0b0f19 0%, #1a1608 50%, #0b0f19 100%);
  border-bottom: 1px solid var(--border-gold);
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-notice-bar strong {
  color: var(--gold-primary);
}

.top-notice-link {
  color: var(--gold-light);
  text-decoration: underline;
  cursor: pointer;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.2rem 0;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-gold);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 90px;
  width: auto;
  max-width: 560px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07090e;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: block;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast);
  white-space: nowrap;
}

.phone-badge:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Mobile Hamburger Button & Drawer */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--gold-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 40%);
  opacity: 0.85;
}

.hero-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(7, 9, 14, 0) 70%);
  top: -100px;
  left: -100px;
  z-index: -1;
  pointer-events: none;
}

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

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-badge-tag .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Quick Quote Card Widget in Hero */
.hero-quote-widget {
  padding: 2rem;
  background: rgba(15, 20, 32, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold-glow);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-radius: var(--radius-lg);
}

.widget-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.widget-title {
  font-size: 1.35rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(7, 9, 14, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Trust Bar Section */
.trust-bar-section {
  padding: 2rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item svg {
  color: var(--gold-primary);
}

/* Fleet Showcase Section */
.section-padding {
  padding: 5rem 0;
}

.fleet-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #07090e;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.fleet-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fleet-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.06);
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.badge-luxury {
  background: rgba(212, 175, 55, 0.85);
  color: #07090e;
}

.badge-vip {
  background: rgba(59, 130, 246, 0.85);
  color: #ffffff;
}

.badge-commercial {
  background: rgba(16, 185, 129, 0.85);
  color: #ffffff;
}

.badge-ada {
  background: rgba(245, 158, 11, 0.85);
  color: #07090e;
}

.fleet-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.fleet-subtitle {
  color: var(--gold-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fleet-specs-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.fleet-spec-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.fleet-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-tag span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Event Calculator Section */
.calculator-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
  position: relative;
}

.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-card-input {
  padding: 2.5rem;
}

.range-slider-group {
  margin-bottom: 2rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-value-display {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.2rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.custom-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-surface-elevated);
  outline: none;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.checkbox-toggle-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--bg-surface-elevated);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-subtle);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-secondary);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--gold-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background-color: #07090e;
}

/* Calculator Output Results Panel */
.calc-results-panel {
  background: rgba(15, 20, 32, 0.9);
  border: 1px solid var(--border-gold-glow);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.calc-results-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.result-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.result-metric-box {
  background: rgba(7, 9, 14, 0.7);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.result-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.estimate-total-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
}

.estimate-price-range {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-primary);
}

/* Interior Virtual Tour Showcase */
.interior-walkthrough {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.walkthrough-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold-glow);
  box-shadow: var(--shadow-lg);
}

.walkthrough-media img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-pill {
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-pill h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature-pill p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Spec Matrix Table Wrapper for Responsive Scrolling */
.table-responsive {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-card);
}

.matrix-table th, .matrix-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.matrix-table th {
  background: var(--bg-surface-elevated);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.matrix-table th.gold-head {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  border-bottom: 2px solid var(--gold-primary);
}

.matrix-table td svg.check-icon {
  color: var(--accent-emerald);
}

.matrix-table td svg.cross-icon {
  color: var(--text-muted);
}

/* Service Area Checker */
.service-area-box {
  background: linear-gradient(135deg, rgba(15, 20, 32, 0.95) 0%, rgba(26, 22, 8, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.zip-input-group {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 1rem;
  gap: 0.5rem;
}

.zip-input-group input {
  flex-grow: 1;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
}

.zip-result-message {
  font-weight: 600;
  min-height: 24px;
  margin-top: 1rem;
}

.zip-result-message.success {
  color: var(--accent-emerald);
}

.zip-result-message.error {
  color: var(--accent-amber);
}

/* Testimonials Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.star-rating {
  color: #ffc107;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.quote-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07090e;
  font-weight: 800;
  font-family: var(--font-heading);
}

.client-info h5 {
  font-size: 1rem;
  color: var(--text-primary);
}

.client-info span {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
  color: var(--gold-primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 300px;
}

/* Contact Info Card & Map Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  padding: 2.5rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

/* Footer */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  margin: 1.25rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-primary);
}

/* Floating Sticky Bar */
.floating-quote-bar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 99;
  background: rgba(15, 20, 32, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform var(--transition-bounce);
}

.floating-quote-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.bar-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.bar-text span {
  color: var(--gold-primary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  left: 1.5rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

@media (min-width: 640px) {
  .toast-container {
    left: auto;
    max-width: 420px;
  }
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: slideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* -------------------------------------------------------------------------- */
/*  Responsive Media Breakpoints (Desktop -> Tablet -> Mobile -> Small Mobile)*/
/* -------------------------------------------------------------------------- */

/* 1. Large Screen / Tablet Landscape (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .calc-container, .walkthrough-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-bg-overlay {
    width: 100%;
    opacity: 0.3;
  }
  .testimonial-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* 2. Tablet Portrait & Mobile (<= 868px) */
@media (max-width: 868px) {
  .nav-links, .phone-badge {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-section {
    padding: 3.5rem 0 3rem;
  }
  .hero-title {
    font-size: clamp(2rem, 6.5vw, 3.25rem);
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-stats-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .stat-item h3 {
    font-size: 1.6rem;
  }
  .stat-item p {
    font-size: 0.8rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .zip-input-group {
    flex-direction: column;
  }
  .zip-input-group input, .zip-input-group button {
    width: 100%;
  }
}

/* 3. Small Smartphones (<= 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .top-notice-bar {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    justify-content: center;
    text-align: center;
  }
  .navbar {
    height: 75px;
  }
  .brand-logo-img {
    height: 48px;
    max-width: 240px;
  }
  .footer-logo-img {
    height: 65px;
    max-width: 360px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-specs-list {
    grid-template-columns: 1fr;
  }
  .calc-card-input, .calc-results-panel, .contact-card {
    padding: 1.5rem 1.25rem;
  }
  .result-card-row, .feature-pill-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-quote-bar {
    width: 92%;
    border-radius: var(--radius-lg);
    justify-content: space-between;
    padding: 0.6rem 1rem;
  }
  .bar-text {
    display: none;
  }
  .floating-quote-bar > div {
    width: 100%;
    justify-content: space-between;
  }
  .modal-card {
    padding: 1.75rem 1.25rem;
  }
}
