/* ==========================================================================
   Almira Taksi (almirataksi.com.tr) - Luxury Dark Modern Taxi Theme
   Pure Code Aesthetic - Zero Image Dependencies
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #07090e;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(26, 35, 54, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(245, 158, 11, 0.35);

  --taxi-gold: #f59e0b;
  --taxi-gold-light: #fbbf24;
  --taxi-gold-dark: #b45309;
  --taxi-glow: rgba(245, 158, 11, 0.4);

  --wa-green: #25d366;
  --wa-green-dark: #128c7e;
  --wa-glow: rgba(37, 211, 102, 0.4);

  --call-blue: #3b82f6;
  --call-glow: rgba(59, 130, 246, 0.4);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --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);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: 75px; /* Spacing for mobile fixed bar */
}

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

/* Ambient Background Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: 20%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%);
}

.glow-orb-2 {
  width: 600px;
  height: 600px;
  top: 40%;
  right: -200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header & Brand
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.85rem 0;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-taxi-badge {
  width: 44px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.45));
  transition: transform 0.2s ease;
}

.brand-logo:hover .logo-taxi-badge {
  transform: scale(1.08);
}

.mini-taxi-svg {
  width: 100%;
  height: 100%;
}

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

.brand-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.highlight {
  color: var(--taxi-gold-light);
  text-shadow: 0 0 12px var(--taxi-glow);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Live Status Badge */
.live-status-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #34d399;
}

@media (min-width: 768px) {
  .live-status-pill {
    display: inline-flex;
  }
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Header Buttons */
.header-action-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-header-call {
  background: rgba(245, 158, 11, 0.12);
  color: var(--taxi-gold-light);
  border: 1px solid var(--border-highlight);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-header-call:hover {
  background: var(--taxi-gold);
  color: #07090e;
  box-shadow: 0 0 20px var(--taxi-glow);
  transform: translateY(-2px);
}

.btn-header-wa {
  background: #25d366;
  color: #07090e;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px var(--wa-glow);
}

.btn-header-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--wa-glow);
}

@media (max-width: 576px) {
  .btn-header-call .phone-label {
    display: none;
  }
  .btn-header-call {
    padding: 0.55rem;
  }
  .btn-header-wa .btn-text {
    display: none;
  }
  .btn-header-wa {
    padding: 0.55rem;
  }
}

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

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

@media (min-width: 992px) {
  .hero-layout {
    grid-template-columns: 1.05fr 1.15fr;
    gap: 2.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--taxi-gold-light);
  width: fit-content;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.1rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 520px) {
  .hero-cta-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-4px);
}

.cta-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-box svg {
  width: 24px;
  height: 24px;
}

.cta-text-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-micro {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.cta-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Call Button Styling */
.cta-call {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #07090e;
  box-shadow: 0 8px 24px var(--taxi-glow);
}

.cta-call .cta-icon-box {
  background: rgba(0, 0, 0, 0.18);
  color: #07090e;
}

.pulse-call {
  animation: callGlowPulse 2.5s infinite;
}

@keyframes callGlowPulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7), 0 8px 24px var(--taxi-glow); }
  70% { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0), 0 8px 24px var(--taxi-glow); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0), 0 8px 24px var(--taxi-glow); }
}

/* WhatsApp Button Styling */
.cta-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--wa-glow);
}

.cta-whatsapp .cta-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.pulse-wa {
  animation: waGlowPulse 2.5s infinite 0.6s;
}

@keyframes waGlowPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 24px var(--wa-glow); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 24px var(--wa-glow); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px var(--wa-glow); }
}

.phone-ring {
  animation: phoneRingWiggle 3s infinite;
}

@keyframes phoneRingWiggle {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(14deg); }
  10% { transform: rotate(-12deg); }
  15% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  25% { transform: rotate(0deg); }
}

/* Stats Row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--taxi-gold-light);
}

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

/* ==========================================================================
   CODE-BASED TAXI VISUAL SHOWCASE (Pure Canvas & SVG & CSS)
   ========================================================================== */
.hero-visual-showcase {
  position: relative;
  width: 100%;
}

.visual-show-card {
  position: relative;
  background: radial-gradient(circle at 50% 20%, #172033 0%, #0b0f19 80%);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.15);
  display: flex;
  flex-direction: column;
}

.canvas-header-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(11, 15, 25, 0.8);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.hud-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
}

.hud-indicator.active {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: liveBlink 1s infinite;
}

.hud-item strong {
  color: var(--taxi-gold-light);
}

/* Canvas Area */
.road-canvas {
  width: 100%;
  height: 220px;
  display: block;
  background: #080c14;
}

@media (min-width: 768px) {
  .road-canvas {
    height: 260px;
  }
}

/* Vector Taxi Wrap (Layered Over the Canvas Road) */
.vector-taxi-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 480px;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

.taxi-master-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Headlight Beams (Pure CSS Radial Conic Glow) */
.taxi-headlight-beams {
  position: absolute;
  top: 52%;
  right: -50px;
  width: 280px;
  height: 80px;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.beam {
  position: absolute;
  width: 260px;
  height: 45px;
  background: linear-gradient(to right, rgba(224, 242, 254, 0.85) 0%, rgba(56, 189, 248, 0.25) 45%, transparent 100%);
  clip-path: polygon(0% 40%, 100% 0%, 100% 100%, 0% 60%);
  filter: blur(4px);
}

.beam-left {
  top: 0;
  transform: rotate(2deg);
}

.beam-right {
  top: 15px;
  transform: rotate(8deg);
  opacity: 0.8;
}

/* Wheel Spokes Rotation Animation */
.spinning-spokes {
  animation: spinWheels 0.35s linear infinite;
}

@keyframes spinWheels {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Roof Sign Pulsing */
.roof-sign-group {
  animation: taxiSignGlow 2s ease-in-out infinite alternate;
}

@keyframes taxiSignGlow {
  0% { filter: drop-shadow(0 0 4px #f59e0b); }
  100% { filter: drop-shadow(0 0 16px #fbbf24); }
}

/* Showcase Bottom Controls */
.canvas-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(11, 15, 25, 0.9);
  border-top: 1px solid var(--border-glass);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ctrl-tag {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ctrl-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

.text-gold {
  color: var(--taxi-gold-light);
}

.pirate-hat-group {
  transform-origin: 260px 70px;
  animation: hatSlightWave 3s ease-in-out infinite alternate;
}

@keyframes hatSlightWave {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-1px); }
  100% { transform: rotate(1.5deg) translateY(0.5px); }
}

/* ==========================================================================
   Interactive Calculator Section
   ========================================================================== */
.calculator-section {
  padding: 2rem 0 4rem;
}

.calc-glass-box {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .calc-glass-box {
    padding: 3rem;
  }
}

.calc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.calc-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--taxi-gold);
  margin-bottom: 0.5rem;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .calc-title {
    font-size: 2.2rem;
  }
}

.calc-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

@media (min-width: 850px) {
  .calc-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.slider-km-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--taxi-gold);
  color: var(--taxi-gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Custom Range Slider */
.custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #1e293b;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--taxi-gold-light);
  box-shadow: 0 0 15px var(--taxi-glow);
  cursor: pointer;
  border: 3px solid #0b0f19;
  transition: transform 0.15s;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.custom-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--taxi-gold-light);
  box-shadow: 0 0 15px var(--taxi-glow);
  cursor: pointer;
  border: 3px solid #0b0f19;
}

.range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Price Display Card */
.price-display-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(17, 24, 39, 0.9) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.price-number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.price-number-row .currency {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--taxi-gold-light);
}

.price-val {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #a7f3d0;
  margin-bottom: 1.25rem;
}

.btn-calc-order {
  width: 100%;
  background: var(--wa-green);
  color: #07090e;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--wa-glow);
}

.btn-calc-order:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* ==========================================================================
   Full SEO Heading Tree & Content Section (H2 -> H6)
   ========================================================================== */
.content-section {
  padding: 3rem 0;
}

.content-article {
  margin-bottom: 4.5rem;
}

.section-heading-wrap {
  margin-bottom: 2rem;
}

.sub-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--taxi-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-h2 {
    font-size: 2.35rem;
  }
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 800px;
}

/* Feature Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
}

.section-h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--taxi-gold-light);
  margin-bottom: 0.75rem;
}

.card-intro {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.sub-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.section-h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.micro-block {
  margin-top: 1rem;
  background: rgba(11, 15, 25, 0.6);
  border-left: 3px solid var(--taxi-gold);
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
}

.section-h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.35rem;
}

.section-h6 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--taxi-gold);
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Process Steps Grid */
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-box {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.35);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Services Dual Grid */
.services-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 850px) {
  .services-dual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-fast);
}

.service-box:hover {
  border-color: var(--border-highlight);
}

/* FAQ Accordion / Cards */
.faq-container {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 1.5rem;
}

/* ==========================================================================
   Bottom CTA Banner
   ========================================================================== */
.bottom-cta-banner {
  margin: 3rem 0 2rem;
}

.banner-inner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e1b4b 100%);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

@media (min-width: 850px) {
  .banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem;
  }
}

.banner-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--taxi-gold-light);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.banner-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 2.2rem;
  }
}

.banner-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-top: 0.5rem;
  max-width: 550px;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

@media (min-width: 500px) {
  .banner-actions {
    flex-direction: row;
    width: auto;
  }
}

.btn-banner-call {
  background: var(--taxi-gold);
  color: #07090e;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px var(--taxi-glow);
}

.btn-banner-call:hover {
  background: var(--taxi-gold-light);
  transform: translateY(-2px);
}

.btn-banner-wa {
  background: var(--wa-green);
  color: #07090e;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px var(--wa-glow);
}

.btn-banner-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #05070a;
  border-top: 1px solid var(--border-glass);
  padding: 3.5rem 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-phone-direct {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #fff;
}

.footer-phone-direct a {
  color: var(--taxi-gold-light);
  text-decoration: none;
  font-weight: 700;
}

.footer-nav-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

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

.footer-links-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--taxi-gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Floating Action Dock (Desktop Right-Bottom)
   ========================================================================== */
.floating-contact-dock {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  flex-direction: column;
  gap: 14px;
  z-index: 99;
}

@media (min-width: 992px) {
  .floating-contact-dock {
    display: flex;
  }
}

.dock-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: var(--transition-bounce);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.dock-btn:hover {
  transform: scale(1.1);
}

.dock-svg-icon {
  width: 32px;
  height: 32px;
  z-index: 2;
}

.dock-wa-btn {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 25px var(--wa-glow);
}

.dock-call-btn {
  background: var(--taxi-gold);
  color: #07090e;
  box-shadow: 0 8px 25px var(--taxi-glow);
}

.dock-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  pointer-events: none;
  animation: dockPulse 2s infinite;
}

.wa-ring {
  border: 2px solid #25d366;
}

.call-ring {
  border: 2px solid var(--taxi-gold);
  animation-delay: 1s;
}

@keyframes dockPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.dock-tooltip {
  position: absolute;
  right: 74px;
  background: rgba(11, 15, 25, 0.95);
  color: #fff;
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.dock-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Mobile Sticky Bottom Bar (Always Fixed on Mobile & Tablets)
   ========================================================================== */
.mobile-sticky-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgba(11, 15, 25, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-highlight);
  z-index: 100;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none;
  padding: 0 0.75rem;
  transition: background 0.2s;
}

.bar-call {
  background: #f59e0b;
  color: #07090e;
}

.bar-call:active {
  background: #d97706;
}

.bar-wa {
  background: #25d366;
  color: #ffffff;
}

.bar-wa:active {
  background: #20bd5a;
}

.bar-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bar-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.bar-content {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.bar-sub {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.bar-main {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

/* ==========================================================================
   404 Error Page Styling
   ========================================================================== */
.error-404-main {
  padding: 4rem 0 5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-404-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .error-404-card {
    padding: 4rem 3rem;
  }
}

.error-visual-wrap {
  margin-bottom: 2rem;
}

.error-code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.error-digit {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--taxi-gold-light);
  line-height: 1;
  text-shadow: 0 0 30px var(--taxi-glow);
}

@media (min-width: 768px) {
  .error-digit {
    font-size: 7.5rem;
  }
}

.error-zero-box {
  width: 110px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-zero-box {
    width: 140px;
    height: 120px;
  }
}

.pirate-compass-svg {
  width: 100%;
  height: 100%;
}

.spinning-needle {
  animation: compassSearch 4s ease-in-out infinite alternate;
}

@keyframes compassSearch {
  0% { transform: rotate(-35deg); }
  30% { transform: rotate(45deg); }
  60% { transform: rotate(-15deg); }
  85% { transform: rotate(60deg); }
  100% { transform: rotate(10deg); }
}

.error-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.error-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .error-title {
    font-size: 2.6rem;
  }
}

.error-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.error-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 650px) {
  .error-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.btn-error-home {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
}

.btn-error-home:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-error-call {
  background: var(--taxi-gold);
  color: #07090e;
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px var(--taxi-glow);
}

.btn-error-call:hover {
  background: var(--taxi-gold-light);
  transform: translateY(-2px);
}

.btn-error-wa {
  background: var(--wa-green);
  color: #07090e;
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px var(--wa-glow);
}

.btn-error-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* ==========================================================================
   Desktop Navigation
   ========================================================================== */
.desktop-nav {
  display: none;
}

@media (min-width: 920px) {
  .desktop-nav {
    display: block;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--taxi-gold-light);
}

.nav-link.active {
  color: var(--taxi-gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--taxi-gold-light);
  box-shadow: 0 0 8px var(--taxi-glow);
  border-radius: 2px;
}

/* ==========================================================================
   Hamburger Menu Button & Responsive Drawer
   ========================================================================== */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.hamburger-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--taxi-gold);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f1f5f9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--taxi-gold-light);
}

.hamburger-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--taxi-gold-light);
}

/* Drawer Overlay Backdrop */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Nav Drawer Aside */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  background: #080c16;
  border-left: 1px solid var(--border-highlight);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
}

.drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 2rem;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  transition: var(--transition-fast);
  background: transparent;
  border: 1px solid transparent;
}

.drawer-link:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--taxi-gold-light);
  transform: translateX(4px);
}

.drawer-link.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--taxi-gold);
  color: var(--taxi-gold-light);
}

.drawer-icon {
  font-size: 1.15rem;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.btn-drawer-call {
  background: var(--taxi-gold);
  color: #07090e;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--taxi-glow);
}

.btn-drawer-wa {
  background: var(--wa-green);
  color: #07090e;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--wa-glow);
}

/* ==========================================================================
   Subpages Hero & Layout
   ========================================================================== */
.page-main {
  min-height: 70vh;
  padding-bottom: 5rem;
}

.subpage-hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12), transparent 70%);
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

@media (min-width: 768px) {
  .subpage-hero {
    padding: 5rem 0 3.5rem;
  }
}

.subpage-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.subpage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--taxi-gold);
  color: var(--taxi-gold-light);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--taxi-gold);
  box-shadow: 0 0 8px var(--taxi-gold);
}

.subpage-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .subpage-title {
    font-size: 3rem;
  }
}

.subpage-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .subpage-lead {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   About Page Components
   ========================================================================== */
.about-section {
  padding: 3rem 0;
}

.about-lead-box {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .about-lead-box {
    padding: 2.5rem 3rem;
  }
}

.lead-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--taxi-gold-light);
  margin-bottom: 1rem;
}

.lead-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--taxi-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.1);
}

.pillar-icon-box {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 850px) {
  .about-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.astat-card {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.astat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--taxi-gold-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.astat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.about-banner-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid var(--border-highlight);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 768px) {
  .about-banner-box {
    flex-direction: row;
    text-align: left;
    padding: 3rem 2.5rem;
  }
}

.about-banner-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-banner-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================================
   Legal & Policy Pages
   ========================================================================== */
.legal-page-section {
  padding: 3rem 0 4rem;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .legal-card {
    padding: 3.5rem 3rem;
  }
}

.legal-badge-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.legal-pill {
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.legal-pill.pill-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--taxi-gold);
  color: var(--taxi-gold-light);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-content ul {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.legal-content strong {
  color: var(--text-primary);
}

.legal-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.callout-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.callout-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Page Components
   ========================================================================== */
.contact-page-section {
  padding: 3rem 0 4rem;
}

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

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.card-glow-gold {
  border-color: rgba(245, 158, 11, 0.3);
}

.card-glow-gold:hover {
  border-color: var(--taxi-gold);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.card-glow-green {
  border-color: rgba(37, 211, 102, 0.3);
}

.card-glow-green:hover {
  border-color: var(--wa-green);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.phone-icon-bg {
  background: rgba(245, 158, 11, 0.15);
  color: var(--taxi-gold-light);
  border: 1px solid var(--taxi-gold);
}

.wa-icon-bg {
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
  border: 1px solid var(--wa-green);
}

.card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.contact-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-contact-call {
  background: var(--taxi-gold);
  color: #07090e;
  width: 100%;
  padding: 0.9rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px var(--taxi-glow);
}

.btn-contact-call:hover {
  background: var(--taxi-gold-light);
  transform: translateY(-2px);
}

.btn-contact-wa {
  background: var(--wa-green);
  color: #07090e;
  width: 100%;
  padding: 0.9rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px var(--wa-glow);
}

.btn-contact-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.contact-details-box {
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.detail-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.detail-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Fast Dispatch Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.75rem 2.25rem;
  }
}

.form-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--taxi-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.form-card-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quick-dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
  }
}

.col-half {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--taxi-gold);
  box-shadow: 0 0 12px var(--taxi-glow);
  background: rgba(15, 23, 42, 0.95);
}

.btn-submit-wa {
  background: var(--wa-green);
  color: #07090e;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 6px 20px var(--wa-glow);
  margin-top: 0.5rem;
  width: 100%;
}

.btn-submit-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.form-disclaimer {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.25rem;
}


