/* =========================================================
   ARNAVUTKÖY KORSAN TAKSİ – Premium Dark Theme CSS
   arnavutkoykorsan.com.tr
   ========================================================= */

/* ─── GOOGLE FONTS (Inter + Outfit) ─── */
/* Loaded via HTML <link> */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand Colors */
  --brand:        #FFC107;
  --brand-2:      #FFD54F;
  --brand-dark:   #E6A800;
  --brand-glow:   rgba(255, 193, 7, 0.25);
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;

  /* Dark Palette */
  --bg:           #080C12;
  --bg-card:      #0D1420;
  --bg-card-2:    #101828;
  --bg-soft:      #141D2B;
  --bg-dark:      #050810;
  --border:       rgba(255, 255, 255, 0.07);
  --border-brand: rgba(255, 193, 7, 0.3);

  /* Text */
  --text:         #E8F0F8;
  --text-muted:   #8899AA;
  --text-subtle:  #5E718A;

  /* Sizes */
  --container:    1180px;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.3);
  --shadow:       0 8px 24px rgba(0,0,0,.35);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.4);
  --shadow-brand: 0 8px 32px rgba(255,193,7,.2);

  /* Transitions */
  --ease:         cubic-bezier(.16,1,.3,1);
  --transition:   .3s var(--ease);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--brand-2); }

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #0D0D0D;
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,193,7,.35);
  color: #0D0D0D;
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 18, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.3px;
}
.brand-text strong {
  color: var(--brand);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #0D0D0D;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-call:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
  color: #0D0D0D;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.hero-glow-1 {
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,.15) 0%, transparent 70%);
  bottom: 0;
  left: -50px;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid var(--border-brand);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.hero-title-top {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text); }

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

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-icon { font-size: 1.1rem; }

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 240px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.stat-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
}
.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.section-dark {
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid var(--border-brand);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,193,7,.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-brand);
}

.service-card.featured {
  border-color: var(--border-brand);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255,193,7,.04) 100%);
  box-shadow: var(--shadow-brand);
}

.service-badge {
  display: inline-block;
  background: var(--brand);
  color: #0D0D0D;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  position: absolute;
  top: 16px;
  right: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-list {
  padding: 0;
  margin-bottom: 20px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
  gap: 4px;
}
.service-btn:hover {
  color: var(--brand-2);
  gap: 8px;
}

/* ─── WHY GRID ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-item:hover::before { transform: scaleX(1); }
.why-item:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.why-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── NEIGHBORHOODS ─── */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.neighborhood-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.neighborhood-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.neighborhood-card:hover::before { transform: scaleY(1); }
.neighborhood-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
}

.neighborhood-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.neighborhood-card:hover h3 { color: var(--brand); }
.neighborhood-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.neighborhood-card-all {
  border-color: var(--border-brand);
  background: rgba(255, 193, 7, 0.04);
}
.neighborhood-card-all h3 { color: var(--brand); }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-5px);
  box-shadow: var(--shadow-brand);
}

.price-card-featured {
  border-color: var(--brand);
  background: linear-gradient(145deg, var(--bg-card-2) 0%, rgba(255,193,7,.06) 100%);
  box-shadow: var(--shadow-brand);
}
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #0D0D0D;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.price-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.price-range {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.price-list {
  text-align: left;
  margin-bottom: 24px;
  padding: 0;
}
.price-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 7px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.price-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
}

.pricing-note {
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}
.pricing-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-note strong { color: var(--text); }

/* ─── ABOUT / HAKKIMIZDA ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.about-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  margin-top: 24px;
  margin-bottom: 10px;
}
.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.about-content .section-tag { margin-bottom: 14px; }

.about-checklist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: sticky;
  top: 90px;
}
.about-checklist h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.checklist { padding: 0; }
.checklist li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:focus-within,
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--border-brand);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--brand); }
.faq-question[aria-expanded="true"] { color: var(--brand); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #0D0D0D;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-answer a {
  color: var(--brand);
  font-weight: 600;
}

/* SEO Tags */
.seo-tags {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.seo-tags h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud span {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: default;
}
.tag-cloud span:hover {
  border-color: var(--border-brand);
  color: var(--brand);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}
.contact-card-primary {
  border-color: var(--border-brand);
  background: rgba(255, 193, 7, 0.04);
}

.contact-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--brand-2); }
.contact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,193,7,.08) 0%, rgba(255,193,7,.02) 100%);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.cta-banner-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 0 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .brand {
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 300px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-phone, .footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-phone { color: var(--brand); }
.footer-wa { color: var(--wa-green); }

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-links ul { padding: 0; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links ul li a:hover { color: var(--brand); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-subtle);
}
.footer-note { text-align: right; }

/* ─── STICKY CTA (Mobile) ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  gap: 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}
.sticky-btn-call {
  background: var(--brand);
  color: #0D0D0D;
}
.sticky-btn-call:hover {
  background: var(--brand-2);
  color: #0D0D0D;
}
.sticky-btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.sticky-btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
}

/* ─── SCROLL ANIMATIONS ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ─── RESPONSIVE – TABLET ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); min-width: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card:last-child { grid-column: span 2; max-width: 400px; margin-inline: auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-checklist { position: static; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ─── RESPONSIVE – MOBILE ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 0 48px; min-height: auto; }
  .hero-inner { gap: 32px; }
  .hero-title-main { font-size: clamp(2.2rem, 10vw, 3rem); letter-spacing: -1px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 12px; }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 18, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
  }
  .main-nav a:last-child { border-bottom: none; }

  .menu-toggle { display: flex; }

  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card:last-child { grid-column: auto; max-width: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-note { text-align: center; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .map-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ─── MAP SECTION ─── */
.map-section {
  border-top: 1px solid var(--border);
}

.map-header {
  background: var(--bg-dark);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}

.map-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.map-header-text .section-tag {
  margin-bottom: 12px;
}

.map-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.map-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.65;
}

.map-cta {
  flex-shrink: 0;
}

/* Frame */
.map-frame-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.map-frame-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%) brightness(0.88) contrast(1.05);
  transition: filter .4s ease;
}

.map-frame-wrapper:hover iframe {
  filter: grayscale(0%) brightness(0.95) contrast(1.05);
}

/* Floating badge */
.map-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 2;
}

.map-overlay-badge .mob {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.map-overlay-badge span:not(.mob):not(.map-badge-sub) {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.map-badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
  margin-top: 2px;
}

.map-overlay-badge > span:not(.mob) {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .map-header { padding: 36px 0 28px; }
  .map-frame-wrapper iframe { height: 300px; }
  .map-overlay-badge { bottom: 12px; left: 12px; padding: 10px 14px; }
  .map-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ─── INNER / MAHALLE PAGES ─── */

/* Breadcrumb */
.page-breadcrumb {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb-nav a:hover { color: var(--brand); }
.breadcrumb-nav span[aria-current] { color: var(--text); font-weight: 600; }

/* Section */
.inner-page-section { padding: 60px 0 80px; }

/* Grid: content + sidebar */
.inner-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Hero block */
.inner-page-hero {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.inner-page-hero .section-tag { margin-bottom: 14px; }

.inner-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inner-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
}

.inner-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Body content */
.inner-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.inner-body p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.inner-list {
  padding: 0;
  margin: 16px 0 0;
}
.inner-list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
  line-height: 1.5;
}
.inner-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

/* Sidebar */
.inner-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  transition: border-color var(--transition);
}
.sidebar-card:hover { border-color: var(--border-brand); }

.sidebar-card-primary {
  border-color: var(--border-brand);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255,193,7,.05) 100%);
  text-align: center;
}

.sidebar-icon { font-size: 2rem; margin-bottom: 10px; }

.sidebar-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.sidebar-phone {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 6px;
  text-decoration: none;
}
.sidebar-phone:hover { color: var(--brand-2); }

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

.sidebar-list {
  padding: 0;
}
.sidebar-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  line-height: 1.4;
}
.sidebar-list li:last-child { border-bottom: none; }

.sidebar-links li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.sidebar-links li a:hover { color: var(--brand); }

/* Responsive */
@media (max-width: 960px) {
  .inner-page-grid {
    grid-template-columns: 1fr;
  }
  .inner-page-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sidebar-card-primary { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .inner-page-sidebar { grid-template-columns: 1fr; }
  .inner-h1 { font-size: 1.9rem; }
}

/* ─── ERROR 404 PAGE ─── */
.error-page-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 80px 0;
  text-align: center;
}

.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -4px;
}

.error-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.error-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
