/* ==========================================================================
   Ankara Açık Tekel & Gece Market - Stil Dosyası (Vanilla CSS)
   Google Ads 10/10 Kalite Puanı & Mobil Dönüşüm Odaklı Mimari
   ========================================================================== */

:root {
  /* Renk Paleti - Aydınlık Mod (Kırık Beyaz & Güven Veren Tonlar) */
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-tag: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-inverse: #ffffff;
  
  --border-subtle: #e2e8f0;
  --border-focus: #3b82f6;
  
  /* Dönüşüm Renkleri (Conversion Triggers) */
  --accent-call: #1d4ed8;
  --accent-call-hover: #1e40af;
  --accent-whatsapp: #16a34a;
  --accent-whatsapp-hover: #15803d;
  --accent-wa-brand: #25d366;
  
  --status-open: #22c55e;
  --status-open-glow: rgba(34, 197, 94, 0.4);
  --warning-badge: #d97706;
  --danger-badge: #dc2626;

  /* Gölgeler & Radius */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1120px;
}

[data-theme="dark"] {
  /* Renk Paleti - Gece / Koyu Mod */
  --bg-primary: #090d16;
  --bg-surface: #0f172a;
  --bg-surface-elevated: #1e293b;
  --bg-muted: #1e293b;
  --bg-tag: #334155;
  
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-subtle: #94a3b8;
  --text-inverse: #0f172a;
  
  --border-subtle: #1e293b;
  --border-focus: #60a5fa;

  --accent-call: #2563eb;
  --accent-call-hover: #3b82f6;
  --accent-whatsapp: #15803d;
  --accent-whatsapp-hover: #16a34a;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

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

html {
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--bg-primary);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 78px; /* Mobilde sticky bar için boşluk */
  transition: background-color 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Konteyner */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

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

@media (min-width: 768px) {
  .header-inner {
    height: 68px;
    gap: 1rem;
  }
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
  flex-shrink: 0;
  min-width: 0;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-call), #4338ca);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.brand-text .brand-title {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-subtle);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-link {
    gap: 0.75rem;
    font-size: 1.15rem;
  }
  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
  }
  .brand-text .brand-title {
    font-size: 1.05rem;
  }
  .brand-text .brand-sub {
    font-size: 0.75rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .header-actions {
    gap: 0.75rem;
  }
}

/* Canlı Durum Rozeti (Pulse) */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-full);
  background-color: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(34, 197, 94, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .live-badge {
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.82rem;
  }
}

[data-theme="dark"] .live-badge {
  background-color: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.live-badge .badge-text-mobile {
  display: inline;
}

.live-badge .badge-text-desktop {
  display: none;
}

@media (min-width: 640px) {
  .live-badge .badge-text-mobile {
    display: none;
  }
  .live-badge .badge-text-desktop {
    display: inline;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--status-open);
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--status-open);
  opacity: 0.75;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Tema Butonu */
.theme-toggle-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-surface-elevated);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .theme-toggle-btn {
    width: 40px;
    height: 40px;
  }
}

.theme-toggle-btn:hover {
  background-color: var(--bg-muted);
}

.header-call-btn {
  display: none;
}

@media (min-width: 840px) {
  .header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    background-color: var(--accent-call);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s ease, transform 0.1s ease;
  }
  .header-call-btn:hover {
    background-color: var(--accent-call-hover);
    transform: translateY(-1px);
  }
}

/* ==========================================================================
   Hero Bölümü (Above-The-Fold - Dönüşüm Odaklı)
   ========================================================================== */
.hero-section {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

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

.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-muted);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.35;
}

@media (min-width: 640px) {
  .hero-pill {
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

.hero-pill span.highlight {
  color: var(--accent-call);
  font-weight: 700;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

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

.hero-title .text-gradient {
  background: linear-gradient(135deg, #1e40af, #2563eb 50%, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .hero-title .text-gradient {
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-weight: 450;
}

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

/* Çift Dönüşüm Butonları */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 520px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta-phone {
  background-color: var(--accent-call);
}

.btn-cta-phone:hover {
  background-color: var(--accent-call-hover);
  box-shadow: 0 8px 20px -4px rgba(29, 78, 216, 0.4);
}

.btn-cta-whatsapp {
  background-color: var(--accent-whatsapp);
}

.btn-cta-whatsapp:hover {
  background-color: var(--accent-whatsapp-hover);
  box-shadow: 0 8px 20px -4px rgba(22, 163, 74, 0.4);
}

/* Hero Güven Rozetleri (Trust Badges) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.65rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: left;
  min-width: 0;
}

@media (min-width: 640px) {
  .trust-item {
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
  }
}

.trust-icon-box {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-call);
}

[data-theme="dark"] .trust-icon-box {
  color: #60a5fa;
}

.trust-text {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.trust-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-subtle);
  display: block;
}

/* ==========================================================================
   Nasıl Sipariş Verilir? (3 Adım)
   ========================================================================== */
.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-call);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .section-tag {
  color: #60a5fa;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

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

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

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border-subtle);
  opacity: 0.8;
  user-select: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-call);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .step-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Öne Çıkan Kategoriler & Vitrin
   ========================================================================== */
.categories-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.category-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.category-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--accent-call);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .category-icon-wrapper {
  color: #60a5fa;
}

.category-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.category-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.category-badge {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-whatsapp);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   Hizmet Bölgeleri (Ankara Semt Listesi)
   ========================================================================== */
.regions-container {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.regions-block {
  margin-bottom: 1.75rem;
}

.regions-block:last-child {
  margin-bottom: 0;
}

.regions-subtitle {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background-color: var(--bg-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.15s ease;
}

.badge-tag:hover {
  background-color: var(--bg-surface-elevated);
  border-color: var(--accent-call);
  transform: translateY(-1px);
}

.badge-tag.highlight {
  background-color: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--accent-call);
}

[data-theme="dark"] .badge-tag.highlight {
  background-color: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

/* ==========================================================================
   Kapıda Ödeme & Güvence Detayı
   ========================================================================== */
.payment-guarantee-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(22, 163, 74, 0.04));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .payment-guarantee-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
  }
}

.payment-info {
  max-width: 580px;
}

.payment-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

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

.payment-methods-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Sıkça Sorulan Sorular (SSS - Accordion)
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--text-subtle);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-call);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Yasal Uyarı & +18 Rozeti
   ========================================================================== */
.legal-banner {
  background-color: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.legal-badge-18 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--danger-badge);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

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

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

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--accent-call);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   Sticky Mobile Conversion Bar (Başparmak Alanı)
   Mobilde Ekranın En Altına Yapışık & Tam Uyumlu
   ========================================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 1000;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 0.45rem;
  overflow: hidden;
}

@media (min-width: 769px) {
  .sticky-mobile-bar {
    display: none; /* Masaüstünde gizle */
  }
}

.sticky-btn {
  flex: 1 1 0;
  min-width: 0; /* İçeriğin taşmasını engeller ve tam eşit genişlik sağlar */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 0.3rem;
  border-radius: var(--radius-md);
  font-size: clamp(0.78rem, 3.6vw, 0.92rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease;
  user-select: none;
  white-space: nowrap;
}

.sticky-btn:active {
  transform: scale(0.97);
}

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

.sticky-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-btn-call {
  background-color: var(--accent-call);
}

.sticky-btn-whatsapp {
  background-color: var(--accent-whatsapp);
}

/* ==========================================================================
   Statik Alt Sayfalar İçin Ortak Stiller (İletişim, Gizlilik vb.)
   ========================================================================== */
.page-header {
  padding: 3rem 0 2rem;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.page-content {
  padding: 3rem 0;
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--text-muted);
}

.prose h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.contact-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

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

.contact-detail-item:last-child {
  margin-bottom: 0;
}
