/* Kayseri Havalimanı Rent A Car - Premium Stylesheet */

:root {
  /* Color Palette - Premium Gold & Obsidian */
  --color-primary: #d4af37; /* Metallic Gold */
  --color-primary-rgb: 212, 175, 55;
  --color-primary-hover: #f3d060;
  --color-bg-deep: #0a0b0d; /* Deep Dark Obsidian */
  --color-bg-surface: #12141a; /* Dark Surface Card */
  --color-bg-surface-hover: #191c25;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(214, 175, 55, 0.15);
  --color-text-main: #f3f4f6; /* Off-White */
  --color-text-muted: #9ca3af; /* Cool Gray */
  --color-success: #10b981; /* Emerald Green */
  --color-whatsapp: #25d366; /* WhatsApp Green */
  --color-whatsapp-hover: #20ba5a;

  /* Typography */
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(18, 20, 26, 0.65);
  --glass-blur: blur(16px);
  --box-shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Global Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-deep);
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #222530;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --- Global Utilities --- */
.highlight {
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 30%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--color-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.section-header-centered .section-tag::before {
  display: none;
}

.section-header-centered .section-tag {
  padding-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-deep);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.25);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-primary) 0%, #e6be4e 100%);
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e6be4e 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.4);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-whatsapp-modal {
  background-color: var(--color-whatsapp);
  color: #fff;
  width: 100%;
  font-size: 1.1rem;
}

.btn-whatsapp-modal:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* --- Top Statistics Strip --- */
.top-stats-strip {
  background-color: rgba(10, 11, 13, 0.95);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

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

.stats-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-separator {
  color: rgba(255, 255, 255, 0.1);
  font-weight: 300;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-icon {
  font-size: 1rem;
}

.stat-text {
  color: var(--color-text-main);
}

/* Live Ticker Styling */
.stats-right.live-ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 4px 12px;
  border-radius: 4px;
}

.ticker-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: tickerPulse 1.6s infinite;
}

@keyframes tickerPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.ticker-label {
  color: var(--color-success);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.ticker-text {
  color: var(--color-text-main);
  font-weight: 600;
  transition: opacity 0.4s ease;
}

.ticker-text.fade-out {
  opacity: 0;
}

/* --- Main Header / Nav --- */
.main-header {
  height: var(--header-height);
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-text-main);
}

.logo-accent {
  color: var(--color-primary);
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

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

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

.phone-link {
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-link:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  transition: var(--transition-smooth);
}

/* --- Hero Section & Form --- */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--color-bg-deep);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(10, 11, 13, 0.8), rgba(10, 11, 13, 0.92)), url('/uploads/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-tagline {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-usp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.usp-tag {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* --- Booking Card --- */
.booking-card {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--border-radius-md);
  padding: 36px;
  box-shadow: var(--box-shadow-premium);
  position: relative;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #ffd866);
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 750;
  margin-bottom: 8px;
}

.card-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  color: var(--color-text-main);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-group select option {
  background-color: #12141a;
  color: #f3f4f6;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.15);
  background-color: rgba(255, 255, 255, 0.05);
}

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

.col {
  flex: 1;
}

.form-submit-btn {
  margin-top: 10px;
  font-size: 1.05rem;
  padding: 14px 28px;
}

/* --- Social Proof Live Cars Grid --- */
.marquee-section {
  padding: 52px 0;
  background-color: #0b0c10;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.live-cars-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.car-card {
  width: 100%;
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-smooth);
  position: relative;
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.car-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  padding: 2px 8px;
  border-radius: 30px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  z-index: 10;
}

.car-card.live-card {
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}

.car-card.live-card.fade-out-card {
  opacity: 0;
  transform: scale(0.95);
}

.car-live-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-success);
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: tickerPulse 1.6s infinite;
}


.car-image-container {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.car-card:hover .car-image {
  transform: scale(1.06);
}

/* Car Gradient/Silhouettes */
.car-placeholder {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Beautiful custom premium SVG patterns for placeholder cars to make it look outstanding */
.peugeot-placeholder {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" fill="none"><path d="M5 35 L15 18 L45 15 L85 15 L105 22 L115 35 H5 Z" fill="%23ffffff" fill-opacity="0.95"/><circle cx="28" cy="36" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><circle cx="92" cy="36" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><path d="M25 18 L35 25 H55 L55 18 Z" fill="%23111" fill-opacity="0.7"/></svg>');
}
.egea-placeholder {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" fill="none"><path d="M5 34 L18 16 L50 14 L88 14 L108 20 L115 34 H5 Z" fill="%23f9f9f9" fill-opacity="0.95"/><circle cx="28" cy="35" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><circle cx="92" cy="35" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><path d="M25 16 L38 23 H60 L60 16 Z" fill="%23111" fill-opacity="0.7"/></svg>');
}
.fluence-placeholder {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" fill="none"><path d="M5 33 L20 15 L52 14 L86 14 L106 18 L115 33 H5 Z" fill="%23eaeaea" fill-opacity="0.95"/><circle cx="28" cy="34" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><circle cx="92" cy="34" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><path d="M28 15 L40 22 H62 L62 15 Z" fill="%23111" fill-opacity="0.7"/></svg>');
}
.taliant-placeholder {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" fill="none"><path d="M5 33 L22 17 L55 15 L85 15 L105 21 L115 33 H5 Z" fill="%23fefefe" fill-opacity="0.95"/><circle cx="28" cy="34" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><circle cx="92" cy="34" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><path d="M30 17 L42 24 H62 L62 17 Z" fill="%23111" fill-opacity="0.7"/></svg>');
}
.fiorino-placeholder {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" fill="none"><path d="M5 36 L8 12 L75 12 L95 18 L108 24 L114 36 H5 Z" fill="%23ffffff" fill-opacity="0.95"/><circle cx="28" cy="36" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><circle cx="92" cy="36" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><path d="M20 14 L35 24 H75 L75 14 Z" fill="%23111" fill-opacity="0.7"/></svg>');
}
.bmw-placeholder {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" fill="none"><path d="M5 32 L22 14 L56 12 L90 12 L108 17 L116 32 H5 Z" fill="%23ffffff" fill-opacity="0.95"/><circle cx="28" cy="33" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><circle cx="92" cy="33" r="10" fill="%231a1d24" stroke="%23d4af37" stroke-width="2"/><path d="M30 14 L44 20 H68 L68 14 Z" fill="%23111" fill-opacity="0.7"/></svg>');
}

.car-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.car-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.car-location {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* --- Why Us Section (Neden Biz?) --- */
.why-us-section {
  padding: 100px 0;
  background-color: var(--color-bg-deep);
}

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

.why-us-img-box {
  position: relative;
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--box-shadow-premium);
  background-color: var(--color-bg-surface);
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #a8841a 100%);
  color: #000;
  padding: 24px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 850;
  line-height: 1;
}

.badge-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
}

.why-us-content {
  max-width: 600px;
}

.section-desc-large {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-card {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(214, 175, 55, 0.08);
  border: 1px solid rgba(214, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- Professionalism Showcase Section --- */
.showcase-section {
  padding: 100px 0;
  background-color: #0b0c10;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.showcase-item {
  background-color: var(--color-bg-surface);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.showcase-image-wrapper {
  height: 240px;
  overflow: hidden;
  background-color: #1a1d24;
}

.showcase-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.showcase-item:hover .showcase-image-wrapper img {
  transform: scale(1.08);
}

.showcase-info {
  padding: 24px;
}

.showcase-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  margin-bottom: 4px;
}

.showcase-info p {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* --- Contact & Location Section --- */
.contact-section {
  padding: 100px 0;
  background-color: var(--color-bg-deep);
}

.contact-info-box {
  max-width: 550px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--color-bg-surface);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
}

.card-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.card-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.card-body a:hover {
  color: var(--color-primary);
}

.card-body .subtext {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 2px;
}

.map-box {
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  background-color: var(--color-bg-surface);
}

.map-title-bar {
  background-color: #12141a;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.map-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-success);
  border-radius: 50%;
}

.pulse-animation {
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* --- Footer --- */
.main-footer {
  background-color: #050608;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px;
  color: var(--color-text-muted);
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h3, 
.footer-seo-links h3 {
  color: var(--color-text-main);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links ul, 
.footer-seo-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links ul a:hover, 
.footer-seo-links ul a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  font-size: 0.8rem;
  text-align: center;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-login-shortcut {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.admin-login-shortcut:hover {
  color: var(--color-primary);
}

/* --- Floating Sticky WhatsApp Widget --- */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  position: relative;
}

.whatsapp-btn:hover {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff3b30;
  border: 2px solid var(--color-whatsapp);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  box-shadow: var(--box-shadow-premium);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.whatsapp-tooltip strong {
  font-size: 0.85rem;
  color: var(--color-text-main);
}

.whatsapp-tooltip span {
  font-size: 0.75rem;
  color: var(--color-whatsapp);
  font-weight: 600;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* --- Modal Overlay (Booking Success) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-box {
  width: 100%;
  max-width: 460px;
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow-premium);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.75rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--color-text-main);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 16px 0;
}

.modal-divider::before, 
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

.modal-sub-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.icon-inline {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-outline-modal {
  margin-top: 14px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  width: 100%;
}

.btn-outline-modal:hover {
  color: var(--color-text-main);
  background-color: rgba(255, 255, 255, 0.03);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-container, 
  .grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-desc {
    max-width: 700px;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content-wrapper {
    grid-template-columns: 1.2fr 0.9fr;
  }
  
  .footer-seo-links {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .top-stats-strip {
    display: block;
    padding: 6px 0;
  }

  .stats-left {
    display: none !important; /* Hide static success stats for ultimate minimalism */
  }

  .stats-container {
    justify-content: center !important;
  }

  .stats-right.live-ticker-wrapper {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.76rem;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    display: none; /* Hamburger mobile menu takes over */
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(10, 11, 13, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .header-actions {
    display: none;
  }
  
  .hero-section {
    padding: 30px 0 60px 0;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-desc {
    font-size: 0.92rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-usp-tags {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .experience-badge {
    right: 10px;
    bottom: -15px;
    padding: 12px 18px;
  }
  
  .badge-num {
    font-size: 1.8rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }
  
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-seo-links {
    grid-column: span 1;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .booking-card {
    padding: 20px;
    border-radius: var(--border-radius-sm);
  }

  .section-header-centered {
    margin-bottom: 20px;
  }

  .live-cars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .live-cars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-us-section, 
  .showcase-section, 
  .contact-section {
    padding: 60px 0; /* reduce padding on small mobile screens for tighter layouts */
  }
  
  .whatsapp-tooltip {
    display: none !important;
  }
  
  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .car-card {
    width: 290px;
    padding: 16px;
  }

  .car-image-container {
    height: 120px;
  }
}

/* SEO Rich Text Footer Wrapper */
.footer-seo-rich-wrapper {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.footer-seo-rich-text {
  max-width: 100%;
}

.seo-title-minimal {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.footer-seo-rich-text p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  text-align: justify;
}
