/* ==========================================================================
   PIT CREW MOBILE MECHANIC - HIGH OCTANE STYLESHEET
   Domain: https://pitcrewtx.com/
   Service Area: North San Antonio, Bulverde & Spring Branch, TX
   Phone: (210) 570-5771 | service@pitcrewtx.com
   Inspired by premium authentic mobile mechanic craftsmanship
   ========================================================================== */

:root {
  /* Palette: Dark Asphalt, Pit Lane Crimson, Industrial Amber, Chrome */
  --pit-bg: #0b0f17;              /* Deep asphalt dark */
  --pit-surface: #111827;         /* Dark gray / steel */
  --pit-surface-elevated: #1a2234;/* Card background */
  --pit-surface-card: #151d2c;
  --pit-border: #243046;          /* Steel border */
  --pit-border-subtle: rgba(255, 255, 255, 0.08);

  --color-primary: #dc2626;        /* Racing Red */
  --color-primary-dark: #b91c1c;
  --color-primary-bright: #ef4444;
  --color-primary-glow: rgba(220, 38, 38, 0.25);

  --color-amber: #f59e0b;          /* Industrial caution amber */
  --color-amber-glow: rgba(245, 158, 11, 0.2);
  --color-green: #10b981;          /* Closed ticket green */

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-white: #ffffff;

  /* Typography */
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Radii & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-ticket: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--pit-border);
  --shadow-glow-red: 0 0 25px rgba(220, 38, 38, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--pit-bg);
  color: var(--text-main);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--pit-bg);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  padding-bottom: 74px; /* Space for mobile sticky action bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Racing Pit Stripe Divider */
.pit-stripe {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #dc2626,
    #dc2626 14px,
    #0b0f17 14px,
    #0b0f17 28px
  );
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.pit-stripe-subtle {
  height: 4px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(220, 38, 38, 0.7),
    rgba(220, 38, 38, 0.7) 10px,
    transparent 10px,
    transparent 20px
  );
}

/* Badges & Stamps */
.stamp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--color-primary-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius-sm);
}

.stamp-amber {
  color: var(--color-amber);
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.stamp-green {
  color: var(--color-green);
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-white);
  line-height: 1.1;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 14px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.top-bar {
  background: #06090e;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--pit-border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-weight: 600;
  transition: color 0.2s ease;
}

.top-bar-link:hover {
  color: var(--color-primary-bright);
}

@media (max-width: 640px) {
  .top-bar-contact { display: none; }
  .top-bar-inner { justify-content: center; text-align: center; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 23, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pit-border);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.45);
  border: 2px solid rgba(220, 38, 38, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.7);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), #991b1b);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.4);
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
}

.brand-title span {
  color: var(--color-primary-bright);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-bright);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone-box {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-right: 4px;
}

.header-phone-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.header-phone-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.header-phone-num:hover {
  color: var(--color-primary-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: var(--color-primary-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
}

.btn-outline {
  border: 1px solid var(--pit-border);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: #ffffff;
  background: rgba(220, 38, 38, 0.1);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 8px;
}

@media (max-width: 991px) {
  .nav-links, .header-phone-box {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--pit-surface);
  border-left: 1px solid var(--pit-border);
  z-index: 160;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pit-border);
  margin-bottom: 24px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 6px 0;
}

.mobile-nav-link:hover {
  color: var(--color-primary-bright);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--pit-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #0b0f17 0%, #0f1624 100%);
  padding: 64px 0 84px 0;
  border-bottom: 1px solid var(--pit-border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.02;
  margin: 18px 0 22px 0;
  letter-spacing: -0.03em;
}

.hero-title .text-red {
  color: var(--color-primary-bright);
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--text-muted);
  margin-bottom: 34px;
  line-height: 1.65;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-spec-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pit-border);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-spec-item span {
  color: var(--color-primary-bright);
}

/* Hero Quick Quote Card */
.hero-card {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-amber));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.hero-card-header {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--pit-border);
  padding-bottom: 14px;
}

.hero-card-title {
  font-size: 1.35rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.quick-form .form-group {
  margin-bottom: 15px;
}

.quick-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #090d14;
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
}

.quick-form select option {
  background-color: var(--pit-surface);
  color: #ffffff;
}

.quick-form .btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 1rem;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-mono);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Trust Bar / Brand Pillars Strip
   ========================================================================== */
.brand-pillars-bar {
  background: #070a10;
  border-bottom: 1px solid var(--pit-border);
  padding: 18px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.pillar-check {
  color: var(--color-primary-bright);
  font-weight: 900;
  font-size: 1rem;
}

@media (max-width: 860px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

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

/* ==========================================================================
   Zip Code Coverage Checker Section
   ========================================================================== */
.zip-checker-section {
  background-color: #0c111a;
  padding: 44px 0;
  border-bottom: 1px solid var(--pit-border);
}

.zip-checker-card {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.zip-checker-info {
  flex: 1;
  min-width: 280px;
}

.zip-checker-title {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.zip-checker-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.zip-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 300px;
  max-width: 460px;
}

.zip-input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  background: #090d14;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-mono);
  outline: none;
  transition: border-color 0.2s ease;
}

.zip-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
}

.zip-result-banner {
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.zip-result-banner.success {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.zip-result-banner.warning {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   Work-Order Ticket Styled Testimonials (In The Pits Inspired)
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background-color: var(--pit-bg);
  border-bottom: 1px solid var(--pit-border);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 26px;
}

.work-order-ticket {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-ticket);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.work-order-ticket:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--pit-border);
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.2);
}

.ticket-id {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.ticket-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-green);
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ticket-service-badge {
  padding: 12px 18px 0 18px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary-bright);
}

.ticket-body {
  padding: 12px 18px 18px 18px;
  flex: 1;
}

.ticket-quote {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.ticket-footer {
  border-top: 1px solid var(--pit-border);
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-author {
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.ticket-location {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}

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

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-section {
  padding: 90px 0;
  background-color: #0c111a;
  border-bottom: 1px solid var(--pit-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  padding: 30px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.6);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pit-border);
  transition: background 0.2s ease;
}

.service-card:hover::before {
  background: var(--color-primary-bright);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--color-primary-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-checklist {
  margin-bottom: 22px;
}

.service-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.check-icon {
  color: var(--color-primary-bright);
  flex-shrink: 0;
}

.service-card-action {
  padding-top: 16px;
  border-top: 1px solid var(--pit-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-book-link {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary-bright);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-book-link:hover {
  text-decoration: underline;
}

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

/* ==========================================================================
   Why Mobile? Comparison Table
   ========================================================================== */
.why-section {
  padding: 90px 0;
  background-color: var(--pit-bg);
  border-bottom: 1px solid var(--pit-border);
}

.comparison-wrapper {
  margin-top: 40px;
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--pit-border);
}

.comparison-table th {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #070b12;
  letter-spacing: 0.04em;
}

.comparison-table th.highlight-col {
  background: rgba(220, 38, 38, 0.15);
  color: #ffffff;
  border-bottom: 2px solid var(--color-primary);
}

.comparison-table td.highlight-col {
  background: rgba(220, 38, 38, 0.04);
  font-weight: 700;
  color: #ffffff;
}

.status-badge-good {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34d399;
}

.status-badge-bad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f87171;
}

@media (max-width: 768px) {
  .comparison-wrapper {
    overflow-x: auto;
  }
  .comparison-table {
    min-width: 600px;
  }
}

/* ==========================================================================
   How It Works (Steps)
   ========================================================================== */
.how-section {
  padding: 90px 0;
  background-color: #0c111a;
  border-bottom: 1px solid var(--pit-border);
}

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

.step-card {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  padding: 36px 26px;
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-mono);
  font-weight: 900;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 14px auto 18px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-bright);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ==========================================================================
   Service Area Section
   ========================================================================== */
.area-section {
  padding: 85px 0;
  background-color: var(--pit-bg);
  border-bottom: 1px solid var(--pit-border);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.area-list-card {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.area-group-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.area-tag {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pit-border);
  transition: all 0.2s ease;
}

.area-tag:hover {
  background: rgba(220, 38, 38, 0.15);
  color: #ffffff;
  border-color: var(--color-primary);
}

.area-callout {
  background: rgba(220, 38, 38, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: #fca5a5;
}

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

/* ==========================================================================
   Full Booking & Quote Section
   ========================================================================== */
.quote-section {
  padding: 90px 0;
  background-color: #0c111a;
  border-bottom: 1px solid var(--pit-border);
}

.quote-card-main {
  max-width: 860px;
  margin: 0 auto;
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  position: relative;
}

.quote-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

@media (max-width: 768px) {
  .form-grid-2, .form-grid-3 {
    grid-template-columns: 1fr;
  }
  .quote-card-main {
    padding: 24px;
  }
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: #090d14;
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.98rem;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--color-primary-bright);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
}

.form-control select option {
  background: var(--pit-surface);
  color: #ffffff;
}

.form-success-box {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-box.show {
  display: block;
}

.success-icon {
  width: 68px;
  height: 68px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background-color: var(--pit-bg);
  border-bottom: 1px solid var(--pit-border);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--pit-surface);
  border: 1px solid var(--pit-border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

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

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  background: transparent;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-dim);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 22px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #06090e;
  color: var(--text-muted);
  padding: 70px 0 30px 0;
  border-top: 1px solid var(--pit-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  color: var(--color-primary-bright);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--pit-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

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

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Mobile Bottom Sticky Action Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 15, 23, 0.96);
  backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-top: 1px solid var(--pit-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-buttons {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  text-align: center;
}

.sticky-call {
  background: var(--color-primary);
  color: #ffffff;
}

.sticky-quote {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--pit-border);
  color: #ffffff;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}
