/* ==========================================================================
   MERSIN VIP ASSIST - DESIGN SYSTEM & STYLESHEET
   Luxury Black & Metallic Gold Theme (Oto Kurtarma & 7/24 Yol Yardım)
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-main: #08090c;
  --bg-card: rgba(18, 20, 28, 0.85);
  --bg-card-hover: rgba(26, 29, 41, 0.95);
  --bg-surface: #10121a;
  --bg-surface-elevated: #161924;

  /* Gold Gradients & Accents */
  --gold-primary: #e5a93b;
  --gold-light: #ffe599;
  --gold-mid: #f5b838;
  --gold-dark: #b87c10;
  --gold-gradient: linear-gradient(135deg, #fff1b8 0%, #fadb14 25%, #d48806 70%, #874d00 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 184, 56, 0.15) 0%, rgba(212, 136, 6, 0.05) 100%);
  --gold-glow: 0 0 25px rgba(229, 169, 59, 0.4);
  --gold-glow-intense: 0 0 35px rgba(245, 184, 56, 0.65);

  /* Functional Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-gold: rgba(229, 169, 59, 0.25);
  --border-gold-bright: rgba(245, 184, 56, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.07);

  --accent-green: #10b981;
  --accent-whatsapp: #25d366;
  --accent-phone: #f59e0b;
  --accent-red: #ef4444;

  /* Typography */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cinzel', serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 1px 1px rgba(255, 255, 255, 0.05);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 169, 59, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(212, 136, 6, 0.04) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.gold-text {
  background: linear-gradient(135deg, #FFE8A3 0%, #F5B838 25%, #FFF0B3 50%, #D48806 75%, #F5B838 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  animation: goldShimmer 8s linear infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.vip-title {
  font-family: var(--font-display);
  letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
}

/* Top Announcement Bar */
.top-status-bar {
  background: linear-gradient(90deg, #111319 0%, #1c1810 50%, #111319 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
}

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

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-muted);
}

.top-links a:hover {
  color: var(--gold-light);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
}

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

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

.brand-crown-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #272111 0%, #15130b 100%);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow);
}

.brand-crown-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-mid);
}

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

.brand-text .brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: #ffffff;
}

.brand-text .brand-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary-gold {
  background: var(--gold-gradient);
  color: #0b0c10;
  box-shadow: 0 4px 18px rgba(229, 169, 59, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(229, 169, 59, 0.55);
  color: #000000;
}

.btn-emergency-call {
  background: linear-gradient(135deg, #ff3333 0%, #d90429 50%, #990000 100%);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: pulse-red 2.2s infinite;
  position: relative;
  letter-spacing: 0.5px;
}

.btn-emergency-call:hover {
  background: linear-gradient(135deg, #ef233c 0%, #c9001b 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 35px rgba(239, 68, 68, 0.7);
  color: #ffffff;
}

.btn-emergency-call:active {
  transform: translateY(0) scale(0.98);
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7), 0 4px 20px rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(239, 68, 68, 0), 0 8px 30px rgba(239, 68, 68, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), 0 4px 20px rgba(239, 68, 68, 0.4); }
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

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

.btn-outline-gold:hover {
  background: rgba(229, 169, 59, 0.12);
  border-color: var(--gold-light);
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.15rem;
  border-radius: var(--radius-full);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(229, 169, 59, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge.badge-vip {
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.25) 0%, rgba(135, 77, 0, 0.2) 100%);
  border-color: var(--gold-primary);
  color: #fff;
}

/* Google Review Badge */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(18, 22, 33, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 184, 56, 0.35);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.google-review-badge:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 6px 25px rgba(229, 169, 59, 0.3);
  transform: translateY(-2px);
}

.google-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.google-score {
  font-weight: 800;
  color: #ffffff;
  font-size: 0.9rem;
}

.google-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 600px;
}

/* Quick District Chips */
.district-quick-chips-wrapper {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.district-chips-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-mid);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.district-quick-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.district-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(22, 27, 39, 0.85);
  border: 1px solid rgba(229, 169, 59, 0.2);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.district-chip .chip-time {
  font-size: 0.72rem;
  color: var(--gold-light);
  background: rgba(229, 169, 59, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.district-chip:hover {
  background: rgba(229, 169, 59, 0.2);
  border-color: var(--gold-mid);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 169, 59, 0.25);
}

.district-chip.active {
  background: var(--gold-gradient);
  color: #0b0c10;
  border-color: transparent;
}

.district-chip.active .chip-time {
  background: rgba(0, 0, 0, 0.25);
  color: #000000;
}

/* Guarantee Ribbon */
.guarantee-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(14, 17, 26, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  margin: 2.5rem 0 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-item-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.guarantee-item-text strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.guarantee-item-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.trust-label {
  display: flex;
  flex-direction: column;
}

.trust-label strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.trust-label span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero Media Card */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--gold-glow);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: rgba(14, 16, 22, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.floating-plate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plate-badge {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  border: 1.5px solid #222;
  letter-spacing: 1px;
}

.floating-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.floating-info p {
  font-size: 0.75rem;
  color: var(--gold-mid);
}

/* Urgent Action Bar */
.urgent-banner {
  background: linear-gradient(90deg, #1c1810 0%, #2a200f 50%, #1c1810 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.urgent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.urgent-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.urgent-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: var(--gold-glow);
  flex-shrink: 0;
}

.urgent-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.urgent-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services Grid */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: var(--gold-mid);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(229, 169, 59, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(229, 169, 59, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.service-features li {
  font-size: 0.82rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.service-features li::before {
  content: '✓';
  color: var(--gold-mid);
  font-weight: 900;
}

/* Mersin Regions & Dispatch Estimator */
.regions-section {
  background: linear-gradient(180deg, #0c0e14 0%, #11141c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.region-card {
  background: rgba(20, 23, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: block;
}

.region-card:hover {
  border-color: var(--gold-primary);
  background: rgba(26, 30, 44, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.region-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.region-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-mid);
  display: inline-block;
  background: rgba(229, 169, 59, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.region-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.dispatch-box {
  background: rgba(14, 16, 23, 0.9);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.dispatch-left h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.dispatch-left p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.district-selector {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #0d0f15;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
}

.district-selector:focus {
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

.dispatch-result {
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.12) 0%, rgba(20, 23, 33, 0.8) 100%);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.dispatch-time-huge {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.dispatch-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Vehicle Showcase */
.vehicle-showcase {
  background: #090a0f;
  padding: 5rem 0;
}

.vehicle-card-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.vehicle-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.vehicle-img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.spec-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.spec-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.spec-item strong {
  font-size: 0.95rem;
  color: var(--gold-light);
}

/* Reviews & FAQ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.reviewer-info h4 {
  font-size: 0.9rem;
  color: #fff;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-mid);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

/* Footer */
.footer {
  background: #050608;
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 7rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* Sticky Mobile Action Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 11, 16, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold-bright);
  padding: 0.65rem 1rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge-container {
    justify-content: center;
  }
  .hero-cta-buttons {
    justify-content: center;
  }
  .hero-trust-bar {
    max-width: 600px;
    margin: 0 auto;
  }
  .guarantee-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dispatch-box, .vehicle-card-detailed {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-status-bar {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .hero {
    padding: 2rem 0 3rem;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-image-wrapper img {
    height: 300px;
  }
  .district-quick-chips {
    justify-content: center;
  }
  .district-chips-label {
    justify-content: center;
  }
  .guarantee-ribbon {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.85rem;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-mobile-bar {
    display: block;
  }
}
