/* ==========================================================================
   MERSİN YENİŞEHİR TAKSİ (mersinyenisehirtaksi.org)
   Lüks, Kurumsal, Dönüşüm Odaklı ve Mobil Öncelikli Stil Sayfası
   ========================================================================== */

:root {
  /* Renk Paleti - Lüks Koyu Antrasit & Altın */
  --bg-deep: #07080b;
  --bg-dark: #0d0f15;
  --bg-card: #131620;
  --bg-card-hover: #191d2a;
  --bg-surface: #1d2130;
  
  /* Lüks Altın & Sarı Vurgular */
  --gold-primary: #d4af37;
  --gold-light: #f5d77f;
  --gold-dark: #aa841e;
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa841e 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-border: rgba(212, 175, 55, 0.25);

  /* Kontrollü Taksi Sarısı */
  --taxi-yellow: #ffc400;
  --taxi-yellow-hover: #e0ac00;
  --taxi-glow: rgba(255, 196, 0, 0.35);

  /* WhatsApp Yeşili */
  --wa-green: #25d366;
  --wa-green-hover: #1eb956;
  --wa-glow: rgba(37, 211, 102, 0.3);

  /* Metin Renkleri */
  --text-white: #ffffff;
  --text-main: #f0f2f5;
  --text-muted: #9ba3af;
  --text-dim: #6b7280;

  /* Cam & Gölge Efektleri */
  --glass-bg: rgba(13, 15, 21, 0.88);
  --glass-border: rgba(212, 175, 55, 0.18);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.5);

  /* Font & Tipografi */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sıfırlama & Temel Ayarlar */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(255, 196, 0, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 74px;
  }
}

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

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

ul, ol {
  list-style: none;
}

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

/* Konteyner & Grid Düzeni */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografi & Başlıklar */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP BAR & NAVBAR
   ========================================================================== */
.top-bar {
  background: rgba(7, 8, 11, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  padding: 8px 0;
  color: var(--text-muted);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-primary);
}

.live-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 10px #10b981;
  animation: pulseLive 2s infinite;
}

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

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7, 8, 11, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

/* Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px var(--gold-glow);
  font-weight: 900;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 2px;
}

/* Nav Linkleri */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: var(--transition);
}

.btn-nav-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* Hamburger Menü (Mobil) */
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobil Menü Çekmecesi */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--gold-border);
  z-index: 1050;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.drawer-close {
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.8rem;
  padding: 4px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* ==========================================================================
   HERO / İLK EKRAN (PREMİUM & SİNEMATİK)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(255, 196, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

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

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

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge-pill span {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.4;
}

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

/* Hero CTA Butonları */
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--taxi-yellow);
  color: #000;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px var(--taxi-glow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-call::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.btn-primary-call:hover {
  background: var(--taxi-yellow-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.5);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #191d28;
  color: var(--text-white);
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  color: var(--wa-green);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--wa-green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--wa-glow);
}

/* Hero Güven Rozetleri */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.trust-badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Hero Görsel Alanı */
.hero-visual {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 175, 55, 0.15);
}

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

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

/* Floating Info Cards */
.hero-float-card {
  position: absolute;
  background: rgba(13, 15, 21, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  z-index: 3;
  animation: floatUpDown 6s ease-in-out infinite;
}

.hero-float-card.top-right {
  top: 30px;
  right: -20px;
}

.hero-float-card.bottom-left {
  bottom: 30px;
  left: -20px;
  animation-delay: -3s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.float-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.float-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

/* ==========================================================================
   İSTATİSTİK BÖLÜMÜ (GÜVEN VEREN METRİKLER)
   ========================================================================== */
.stats-section {
  padding: 50px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px auto;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   HİZMETLERİMİZ
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 8px 30px rgba(212, 175, 55, 0.12);
}

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

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
}

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

.service-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text-white);
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.service-feature-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-service-action {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-service-action:hover {
  color: #fff;
  gap: 10px;
}

.service-highlight-badge {
  font-size: 0.75rem;
  background: rgba(255, 196, 0, 0.15);
  color: var(--taxi-yellow);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ==========================================================================
   NEDEN BİZ? (AVANTAJLAR)
   ========================================================================== */
.why-us-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

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

.why-image-wrapper {
  position: relative;
}

.why-img-main {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.why-badge-title {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-badge-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
}

.why-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.why-item-title {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.why-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   POZCU VE YENİŞEHİR VURGU BÖLÜMÜ
   ========================================================================== */
.pozcu-spotlight-section {
  padding: 80px 0;
  position: relative;
}

.spotlight-card {
  background: linear-gradient(135deg, rgba(19, 22, 32, 0.95) 0%, rgba(29, 33, 48, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.spotlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.spotlight-title {
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.spotlight-text {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 26px;
}

.spotlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.spotlight-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
}

.spotlight-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   MAHALLELER / LOCAL SEO HUB BÖLÜMÜ
   ========================================================================== */
.neighborhoods-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.priority-hoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.priority-hood-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.priority-hood-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}

.priority-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  background: var(--gold-gradient);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  align-self: flex-start;
}

.hood-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

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

.hood-landmarks {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hood-landmarks span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
}

.hood-landmarks svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.btn-hood-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-hood-link:hover {
  color: #fff;
  gap: 10px;
}

/* Tüm Yenişehir Mahalleleri Listesi */
.all-hoods-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.all-hoods-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.all-hoods-title {
  font-size: 1.3rem;
}

.hood-search-box {
  position: relative;
  min-width: 260px;
}

.hood-search-box input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px 10px 38px;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.9rem;
}

.hood-search-box input:focus {
  border-color: var(--gold-primary);
}

.hood-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}

.all-hoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hood-pill-link {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition);
}

.hood-pill-link:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateX(4px);
}

.hood-pill-link svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
  opacity: 0.7;
}

/* ==========================================================================
   ROTA & MESAFE TAHMİN MODÜLÜ
   ========================================================================== */
.route-estimator-section {
  padding: 90px 0;
  position: relative;
}

.estimator-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-card);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.custom-select {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.custom-select:focus {
  border-color: var(--gold-primary);
}

.custom-select option {
  background: var(--bg-dark);
  color: #fff;
}

.estimator-result-box {
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.result-header {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.result-route-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.metric-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

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

.result-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.btn-book-calculated {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--taxi-yellow);
  color: #000;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px var(--taxi-glow);
  cursor: pointer;
  transition: var(--transition);
}

.btn-book-calculated:hover {
  background: var(--taxi-yellow-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   HİZMET BÖLGELERİ HARİTASI
   ========================================================================== */
.map-section {
  padding: 90px 0;
  background: var(--bg-dark);
}

.map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container-inner {
  height: 440px;
  width: 100%;
  position: relative;
  background: #0f1118;
}

.map-info-bar {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-info-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.map-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
}

/* ==========================================================================
   SIKÇA SORULAN SORULAR (SSS) - AKORDEON
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active {
  border-color: var(--gold-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-white);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(212, 175, 55, 0.2);
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px 28px;
}

/* ==========================================================================
   SEO METİN / YEREL REHBER ALANI
   ========================================================================== */
.seo-article-section {
  padding: 90px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-article-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.seo-article-card h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.seo-article-card h3 {
  font-size: 1.3rem;
  margin: 30px 0 14px 0;
  color: var(--gold-light);
}

.seo-article-card p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.seo-article-card ul {
  margin: 16px 0 24px 20px;
  list-style: disc;
  color: var(--text-muted);
}

.seo-article-card ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 30px 0;
  position: relative;
}

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

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-about-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-contact-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-phone-big {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

.footer-phone-big:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ==========================================================================
   STICKY MOBIL ÇAĞRI BARI (FIXED BOTTOM CTA)
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 17, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--gold-primary);
  padding: 10px 14px;
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
}

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

.btn-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--taxi-yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px var(--taxi-glow);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-mobile-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1f2533;
  color: #fff;
  border: 1px solid var(--wa-green);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.btn-mobile-wa svg {
  width: 20px;
  height: 20px;
  color: var(--wa-green);
}

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

/* ==========================================================================
   BREADCRUMB & ALT SAYFA ŞABLONLARI
   ========================================================================== */
.subpage-hero {
  padding: 70px 0 50px 0;
  background: linear-gradient(180deg, rgba(13, 15, 21, 0.9) 0%, rgba(7, 8, 11, 0.95) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

.breadcrumbs span.separator {
  color: var(--gold-primary);
  opacity: 0.6;
}

.breadcrumbs span.current {
  color: var(--text-white);
  font-weight: 600;
}

.subpage-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.subpage-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.7;
}

.content-page-wrapper {
  padding: 80px 0;
}

.content-grid-sidebar {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

.content-body {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.content-body h2 {
  font-size: 1.7rem;
  margin: 30px 0 16px 0;
  color: var(--text-white);
}

.content-body h3 {
  font-size: 1.25rem;
  margin: 24px 0 12px 0;
  color: var(--gold-light);
}

.content-body p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-body ul {
  list-style: disc;
  margin: 16px 0 24px 24px;
  color: var(--text-muted);
}

.content-body ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--text-white);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .priority-hoods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .all-hoods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 868px) {
  .nav-links, .btn-nav-call {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .estimator-grid {
    grid-template-columns: 1fr;
  }
  .content-grid-sidebar {
    grid-template-columns: 1fr;
  }
  .spotlight-card {
    padding: 36px 24px;
  }
  .priority-hoods-grid {
    grid-template-columns: 1fr;
  }
  .all-hoods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .btn-primary-call, .btn-whatsapp {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .why-items-list {
    grid-template-columns: 1fr;
  }
  .all-hoods-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-img-card img {
    height: 320px;
  }
  .hero-float-card {
    display: none;
  }
  .content-body {
    padding: 24px 18px;
  }
}
