/* ==========================================================================
   Çanakkale Kepçe Kiralama — Tema CSS (build gerektirmez)
   Tailwind CDN ile birlikte kullanılır
   ========================================================================== */

:root {
  --cf-orange: #F38020;
  --cf-orange-light: #FF9F43;
  --cf-orange-dark: #E55D00;
  --cf-navy: #0B0D1A;
  --cf-slate: #1E2139;
  --cf-blue: #3B82F6;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #475569;
  background: #fff;
}

::selection {
  background: rgba(243, 128, 32, 0.2);
  color: var(--cf-navy);
}

/* ── Layout ── */
.container-cf {
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container-cf { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-cf { padding: 0 2rem; } }

/* ── Gradient text ── */
.text-gradient {
  background: linear-gradient(90deg, var(--cf-orange), var(--cf-orange-light), #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: var(--cf-orange);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 60px -12px rgba(243, 128, 32, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--cf-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 128, 32, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: #25D366;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ── Cards ── */
.card-cf {
  border-radius: 1rem;
  border: 1px solid rgba(226,232,240,0.8);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.card-cf:hover {
  border-color: rgba(243,128,32,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.card-cf-dark {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}
.card-cf-dark:hover {
  border-color: rgba(243,128,32,0.3);
  background: rgba(255,255,255,0.1);
}

/* ── Section label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(243,128,32,0.2);
  background: rgba(243,128,32,0.05);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cf-orange);
}

/* ── Hero mesh ── */
.hero-mesh {
  position: relative;
  overflow: hidden;
  background: var(--cf-navy);
}
.hero-mesh::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-orb {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb:nth-child(2) { animation-delay: -3s; }
.hero-orb:nth-child(3) { animation-delay: -5s; }

/* ── Hero slider ── */
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease-in-out, transform 7s ease-out;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 0.48;
  transform: scale(1);
}
.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .hero-slider-dots {
    bottom: 2.5rem;
    left: auto;
    right: 2rem;
    transform: none;
  }
}
.hero-dot {
  width: 2rem;
  height: 0.25rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hero-dot.is-active {
  width: 2.5rem;
  background: var(--cf-orange);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }
  .hero-slide:not(.is-active) {
    display: none;
  }
  .hero-slide.is-active {
    opacity: 0.48;
  }
}

/* ── Nav ── */
.nav-link {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.nav-link-active {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

/* ── Icon box ── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(243,128,32,0.1);
  color: var(--cf-orange);
  transition: all 0.3s ease;
}
.icon-box i { font-size: 1.35rem; line-height: 1; }
.card-cf-dark:hover .icon-box,
.card-cf:hover .icon-box {
  background: var(--cf-orange);
  color: #fff;
  transform: scale(1.08);
}

/* ── Forms ── */
.form-input-cf {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--cf-navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input-cf:focus {
  outline: none;
  border-color: var(--cf-orange);
  box-shadow: 0 0 0 3px rgba(243,128,32,0.15);
}
.form-label-cf {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cf-navy);
}

/* ── Prose ── */
.prose-cf h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; font-weight: 700; color: var(--cf-navy); }
.prose-cf h2:first-child { margin-top: 0; }
.prose-cf h3 { margin: 2rem 0 0.75rem; font-size: 1.25rem; font-weight: 600; color: var(--cf-navy); }
.prose-cf p { margin-bottom: 1rem; line-height: 1.75; color: #475569; }
.prose-cf ul, .prose-cf ol { margin: 0 0 1rem 1.25rem; color: #475569; }
.prose-cf ul { list-style: disc; }
.prose-cf ol { list-style: decimal; }
.prose-cf li { margin-bottom: 0.35rem; }
.prose-cf a { color: var(--cf-orange); font-weight: 500; }
.prose-cf img { margin: 2rem 0; width: 100%; border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.skip-link:focus {
  position: fixed;
  left: 1rem; top: 1rem;
  z-index: 9999;
  width: auto; height: auto;
  margin: 0; padding: 0.75rem 1.25rem;
  clip: auto;
  border-radius: 0.5rem;
  background: var(--cf-orange);
  color: #fff;
  overflow: visible;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float i { font-size: 1.5rem; }

/* ==========================================================================
   ANİMASYONLAR
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 10px) scale(0.95); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 48px rgba(37,211,102,0.65); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.9; }
}

/* Hero giriş animasyonları */
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease-out forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.35s; }
.anim-delay-4 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(7) { transition-delay: 480ms; }
.stagger-children .reveal:nth-child(8) { transition-delay: 560ms; }
.stagger-children .reveal:nth-child(9) { transition-delay: 640ms; }

/* Kart görsel zoom */
.card-img-wrap { overflow: hidden; }
.card-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-cf:hover .card-img-wrap img { transform: scale(1.06); }

/* Header scroll */
#site-header.is-scrolled {
  background: rgba(11, 13, 26, 0.97) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* Stat counter glow */
.stat-num {
  background: linear-gradient(90deg, var(--cf-orange), var(--cf-orange-light), #fcd34d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ── Glass card ── */
.glass-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Trust marquee ── */
.trust-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
}
.trust-pill i { color: var(--cf-orange); font-size: 1rem; }

/* ── Bento ── */
.bento-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.bento-card:hover {
  border-color: rgba(243,128,32,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.bento-card--accent {
  background: linear-gradient(135deg, rgba(243,128,32,0.06), rgba(59,130,246,0.04));
  border-color: rgba(243,128,32,0.15);
}
.bento-mini {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1rem;
  transition: border-color 0.2s;
}
.bento-mini:hover { border-color: rgba(243,128,32,0.3); }
.bento-mini > i {
  font-size: 1.25rem;
  color: var(--cf-orange);
  margin-top: 0.125rem;
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.process-step:hover {
  border-color: rgba(243,128,32,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.process-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(243,128,32,0.12);
}

/* ── Area chips ── */
.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cf-navy);
  transition: all 0.25s ease;
}
.area-chip i { color: var(--cf-orange); }
.area-chip:hover {
  border-color: var(--cf-orange);
  background: rgba(243,128,32,0.04);
  transform: translateY(-2px);
}

/* ── Testimonials ── */
.testimonial-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ── FAQ ── */
.faq-item {
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open { border-color: rgba(243,128,32,0.3); }
.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cf-navy);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-trigger:hover { color: var(--cf-orange); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--cf-orange);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > p {
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  transition: padding 0.3s ease;
}
.faq-item.is-open .faq-panel > p { padding: 0 1.25rem 1rem; }

.shadow-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── KVKK / Çerez banner (ekran altı, kaydırma serbest) ── */
body.cookie-banner-open .float-actions { bottom: 7.5rem; }
body.cookie-banner-open .wa-float { bottom: 7.5rem; }

#ck-privacy-banner,
#cookie-consent {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9999 !important;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  margin: 0 !important;
  pointer-events: none;
  animation: ck-privacy-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ck-privacy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent__panel {
  margin: 0 auto;
  max-width: 56rem;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  pointer-events: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(11, 13, 26, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.45), 0 16px 48px rgba(0,0,0,0.3);
  color: #cbd5e1;
}
.cookie-consent__main {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cookie-consent__icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(243,128,32,0.15);
  color: var(--cf-orange);
  font-size: 1.25rem;
}
.cookie-consent__title {
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
}
.cookie-consent__text {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #94a3b8;
}
.cookie-consent__text a { color: var(--cf-orange); font-weight: 500; }
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-end;
}
.cookie-btn {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cookie-btn--primary {
  background: var(--cf-orange);
  color: #fff;
}
.cookie-btn--primary:hover { background: var(--cf-orange-dark); }
.cookie-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.cookie-btn--outline:hover { background: rgba(255,255,255,0.08); }
.cookie-btn--ghost {
  background: transparent;
  color: #94a3b8;
}
.cookie-btn--ghost:hover { color: #fff; }
.cookie-consent__settings {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-consent__settings.hidden { display: none; }
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8125rem;
}
.cookie-toggle strong { display: block; color: #fff; }
.cookie-toggle span { display: block; color: #64748b; margin-top: 0.125rem; }
.cookie-consent__save { width: 100%; margin-top: 0.75rem; }

/* ── Footer legal ── */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding-bottom: 1rem;
  font-size: 0.8125rem;
}
.footer-legal a, .footer-legal__manage {
  color: #94a3b8;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}
.footer-legal a:hover, .footer-legal__manage:hover { color: var(--cf-orange); }

/* ── KVKK form consent ── */
.kvkk-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  cursor: pointer;
}
.kvkk-consent input { margin-top: 0.2rem; accent-color: var(--cf-orange); flex-shrink: 0; }
.kvkk-consent a { color: var(--cf-orange); font-weight: 500; }
.kvkk-consent.is-error { color: #dc2626; }

/* ── Legal pages ── */
.legal-prose h1 { font-size: 2rem; font-weight: 800; color: var(--cf-navy); }
.legal-prose h2 { margin-top: 2rem; font-size: 1.25rem; font-weight: 700; color: var(--cf-navy); }
.legal-prose h3 { margin-top: 1.25rem; font-size: 1rem; font-weight: 600; color: var(--cf-navy); }
.legal-prose p, .legal-prose li { font-size: 0.9375rem; line-height: 1.75; color: #475569; }
.legal-prose ul { margin: 0.75rem 0 1rem 1.25rem; list-style: disc; }
.legal-prose a { color: var(--cf-orange); font-weight: 500; }
.legal-updated { font-size: 0.875rem; color: #94a3b8; margin-bottom: 1.5rem; }
.legal-table { width: 100%; margin: 1rem 0; border-collapse: collapse; font-size: 0.875rem; }
.legal-table th, .legal-table td { border: 1px solid #e2e8f0; padding: 0.625rem 0.75rem; text-align: left; }
.legal-table th { background: #f8fafc; font-weight: 600; color: var(--cf-navy); }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; }

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  aspect-ratio: 16/10;
  border-radius: 1rem;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
}
html[data-cookie-functional="1"] .map-placeholder { display: none; }
html:not([data-cookie-functional="1"]) iframe[data-cookie-src] { display: none; }

/* ==========================================================================
   FOOTER V2 — Referans tasarım
   ========================================================================== */
.site-footer-v2 {
  position: relative;
  z-index: 10;
  margin-top: 0;
  background: var(--cf-navy);
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
}
.site-footer-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(243,128,32,0.1), transparent 60%);
  pointer-events: none;
}

/* CTA banner — hafifçe yukarı taşar, içeriğin üstüne binmez */
.footer-cta {
  position: relative;
  z-index: 20;
  margin-top: calc(-3.5rem - 50px);
  margin-bottom: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--cf-orange-dark) 0%, var(--cf-orange) 48%, var(--cf-orange-light) 100%);
  box-shadow: 0 24px 64px rgba(243, 128, 32, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) {
  .footer-cta { margin-top: calc(-3.5rem - 50px); }
}
.footer-cta__glow {
  position: absolute;
  right: -10%;
  top: -50%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  pointer-events: none;
}
.footer-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
}
@media (min-width: 768px) {
  .footer-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
  }
}
.footer-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
@media (min-width: 640px) { .footer-cta__title { font-size: 1.75rem; } }
.footer-cta__desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  shrink: 0;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.footer-cta-btn:hover { transform: translateY(-2px); }
.footer-cta-btn--phone {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.footer-cta-btn--phone i { color: var(--cf-orange); }
.footer-cta-btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.footer-cta-btn--wa:hover { background: #1fb855; }

/* Trust row */
.footer-trust {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-trust { grid-template-columns: repeat(3, 1fr); } }
.footer-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  padding: 1.125rem 1.25rem;
  transition: border-color 0.25s, background 0.25s;
}
.footer-trust__item:hover {
  border-color: rgba(243,128,32,0.2);
  background: rgba(255,255,255,0.05);
}
.footer-trust__icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(243,128,32,0.15);
  color: var(--cf-orange-light);
  font-size: 1.25rem;
}
.footer-trust__item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f1f5f9;
}
.footer-trust__item span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

/* Main grid */
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; } }

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}
.footer-brand__mark {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--cf-orange), var(--cf-orange-dark));
  color: #fff;
  font-size: 1.125rem;
}
.footer-brand__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 22rem;
}
.footer-contact {
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.footer-contact i { color: var(--cf-orange); margin-top: 0.15rem; }
.footer-contact a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--cf-orange); }
.footer-contact span { color: #cbd5e1; }

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cf-orange); }
.footer-links__more { color: var(--cf-orange-light) !important; font-weight: 500; }
.footer-links__more:hover { color: var(--cf-orange) !important; }

/* Regions */
.footer-regions {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-regions__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.875rem;
}
.footer-regions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.footer-regions__tags a {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-regions__tags a:hover { color: #fff; }

.footer-regions__more {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cf-orange-light);
  text-decoration: none;
}
.footer-regions__more:hover { color: var(--cf-orange); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #475569;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom__seo {
  color: #334155;
  font-size: 0.6875rem;
}
.footer-bottom__credit {
  color: #475569;
  font-size: 0.75rem;
}
.footer-bottom__credit a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom__credit a:hover {
  color: var(--cf-orange);
}

/* Footer legal override */
.site-footer-v2 .footer-legal {
  padding-bottom: 0;
  gap: 0.5rem 1rem;
}
.site-footer-v2 .footer-legal a,
.site-footer-v2 .footer-legal__manage {
  color: #64748b;
  font-size: 0.75rem;
}
.site-footer-v2 .footer-legal a:hover,
.site-footer-v2 .footer-legal__manage:hover { color: var(--cf-orange); }

/* Float actions */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-actions__btn {
  display: flex;
  height: 3.25rem;
  width: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.25s ease;
}
.float-actions__btn:hover { transform: scale(1.08); }
.float-actions__btn--wa {
  background: #25D366;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}
.float-actions__btn--phone {
  background: linear-gradient(135deg, var(--cf-orange-dark), var(--cf-orange));
  box-shadow: 0 8px 32px rgba(243, 128, 32, 0.45);
}

/* Son bölüm ile footer arası boşluk — CTA bu alana taşar, forma binmez */
.section-before-footer,
main:has(+ .site-footer-v2) > section:last-child {
  padding-bottom: calc(70px + 3.5rem);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .trust-marquee { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}
