:root {
  interpolate-size: allow-keywords;
  --bg: #1A1A1A;
  --surface: #2A2A28;
  --surface-2: #353533;
  --ink: #F5F0E8;
  --ink-soft: rgba(245,240,232,0.6);
  --accent: #D4A84B;
  --accent-2: #8B7355;
  --line: rgba(212,168,75,0.18);
  --line-strong: rgba(212,168,75,0.35);
  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(1rem,4vw,2rem);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

html, body { margin: 0; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Palatino Linotype', Palatino, Georgia, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

main { padding-top: var(--header-h); }

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: 0 0 8px 8px;
  font-weight: 600; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(26,26,26,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto; width: 100%;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: 1.35rem; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.logo span { color: var(--accent); }

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-desktop a {
  color: var(--ink-soft); font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  position: relative; padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-desktop .nav-cta {
  background: var(--accent); color: var(--bg);
  padding: 10px 22px; border-radius: 6px;
  font-weight: 700; letter-spacing: 0.02em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* Nav Toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
@media (max-width: 1024px) {
  .nav-toggle {
    background: rgba(212,168,75,0.15);
    border-radius: 8px;
    border: 1.5px solid rgba(212,168,75,0.5);
    box-shadow: 0 0 0 3px rgba(212,168,75,0.12);
  }
  .nav-toggle:active {
    background: rgba(212,168,75,0.3);
    border-color: var(--accent);
  }
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) { .nav-toggle { display: flex; } }

/* ===================== DRAWER ===================== */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink); font-size: 1.1rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-cta {
  display: inline-block; margin-top: 16px;
  background: var(--accent); color: var(--bg);
  padding: 14px 28px; border-radius: 6px;
  text-align: center; font-weight: 700;
  border-bottom: none;
}
.drawer .drawer-cta:hover { background: var(--ink); color: var(--bg); padding-left: 28px; }

/* ===================== GOLD DIVIDER ===================== */
.gold-divider {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0; opacity: 0.45;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh; height: 100dvh;
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: clamp(48px, 8vh, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-saha.jpg') center/cover no-repeat;
  background-color: #0d0d0d;
  will-change: transform;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.25) 35%, rgba(26,26,26,0.4) 65%, rgba(26,26,26,0.68) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 780px;
  padding: 0 var(--pad);
}
.hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-style: normal;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.82rem; color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  color: var(--ink); margin-bottom: 22px;
  text-shadow: 0 4px 48px rgba(0,0,0,0.5), 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ink-soft); max-width: 560px;
  margin: 0 auto 32px; line-height: 1.65;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  padding: 16px 36px; border-radius: 6px;
  font-weight: 700; font-size: 1.05rem;
  transition: background 240ms, transform 180ms, box-shadow 240ms, color 240ms;
  text-decoration: none;
}
.hero-cta:hover {
  background: var(--ink); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,75,0.25);
}
.hero-cta svg { transition: transform 240ms; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,240,232,0.07);
  border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.8rem; color: var(--ink-soft);
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--ink-soft); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.55;
  animation: scrollBounce 2.4s cubic-bezier(.4,0,.2,1) infinite;
}
.hero-scroll svg {
  width: 20px; height: 20px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.85; }
}
@media (max-width: 640px) {
  .hero-scroll { bottom: 12px; font-size: 0; gap: 0; }
}

/* ===================== SECTION COMMON ===================== */
section { padding: clamp(56px, 8vw, 100px) 0; }
.section-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-style: normal;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px; color: var(--ink);
}
.section-sub {
  color: var(--ink-soft); max-width: 620px;
  font-size: 1.05rem; line-height: 1.7;
}

/* ===================== HIKAYE ===================== */
.hikaye { position: relative; }
.hikaye-body {
  max-width: 720px;
  margin: 0 auto;
}
.hikaye-body p {
  font-size: 1.1rem; line-height: 1.85;
  color: var(--ink-soft); margin-bottom: 24px;
}
.hikaye-body p:first-of-type::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6em; float: left;
  line-height: 0.8; margin-right: 10px; margin-top: 6px;
  color: var(--accent);
}
.signature-svg {
  display: block; margin: 32px auto 0;
  width: clamp(180px, 28vw, 260px); height: auto;
  opacity: 0.7;
}

/* ===================== FELSEFE ===================== */
.felsefe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
@media (max-width: 768px) { .felsefe-grid { grid-template-columns: 1fr; gap: 24px; } }
.felsefe-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.felsefe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212,168,75,0.12);
}
.felsefe-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,168,75,0.1);
  border-radius: 50%;
  color: var(--accent);
}
.felsefe-icon svg { width: 28px; height: 28px; }
.felsefe-card h3 {
  font-size: 1.35rem; margin-bottom: 14px; color: var(--ink);
}
.felsefe-card p {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7;
}

/* ===================== DONUSUM ===================== */
.donusum { background: var(--surface); }
.donusum-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) { .donusum-grid { grid-template-columns: 1fr; gap: 24px; } }
.donusum-col h3 {
  font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent-2);
  margin-bottom: 24px; text-align: center;
  font-family: 'Source Sans 3', sans-serif; font-style: normal;
}
.stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.stat-label { color: var(--ink-soft); font-size: 0.9rem; }
.stat-value {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-value.improved { color: var(--accent); }
.donusum-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 2rem;
}
@media (max-width: 768px) { .donusum-arrow { transform: rotate(90deg); } }

/* Heatmap SVG */
.heatmap-wrap {
  margin-top: 48px;
  display: flex; justify-content: center;
}
.heatmap-svg {
  width: 100%; max-width: 600px; height: auto;
}
.heatmap-svg .heat-zone {
  opacity: 0; transform-origin: center;
  transition: opacity 1200ms cubic-bezier(.2,.7,.2,1), transform 1200ms cubic-bezier(.2,.7,.2,1);
  transform: scale(0.3);
}
.heatmap-svg.is-active .heat-zone {
  opacity: 0.7; transform: scale(1);
}
.heatmap-svg .heat-zone:nth-child(2) { transition-delay: 200ms; }
.heatmap-svg .heat-zone:nth-child(3) { transition-delay: 400ms; }
.heatmap-svg .heat-zone:nth-child(4) { transition-delay: 600ms; }
.heatmap-svg .heat-zone:nth-child(5) { transition-delay: 800ms; }

/* ===================== SUREC (PROCESS) ===================== */
.surec-timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}
.surec-timeline::before {
  content: ''; position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
.surec-step {
  position: relative;
  padding: 0 0 40px 28px;
}
.surec-step:last-child { padding-bottom: 0; }
.surec-dot {
  position: absolute; left: -33px; top: 4px;
  width: 14px; height: 14px;
  background: var(--accent);
  border: 3px solid var(--bg);
  border-radius: 50%;
}
.surec-time {
  font-size: 0.78rem; color: var(--accent-2);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; margin-bottom: 6px;
}
.surec-step h3 {
  font-size: 1.15rem; color: var(--ink); margin-bottom: 8px;
}
.surec-step p {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7;
  max-width: 560px;
}

/* ===================== PAKETLER (PRICING) ===================== */
.paketler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
@media (max-width: 900px) { .paketler-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.paket-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  position: relative;
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212,168,75,0.12);
}
.paket-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.paket-card.featured::before {
  content: 'Popüler'; position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.paket-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: 1.3rem; color: var(--ink);
  margin-bottom: 8px;
}
.paket-price {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: 2rem;
  color: var(--accent); margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.paket-period {
  font-size: 0.82rem; color: var(--ink-soft);
  margin-bottom: 20px;
}
.paket-features { list-style: none; margin-bottom: 20px; flex: 1; }
.paket-features li {
  padding: 7px 0; font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.paket-features li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.paket-features .excluded {
  text-decoration: line-through; opacity: 0.45;
}
.paket-features .excluded::before { background: var(--accent-2); }
.paket-disclaimer {
  font-size: 0.75rem; color: var(--ink-soft);
  margin-top: 8px; opacity: 0.65;
  font-style: italic;
}
.paket-cta {
  display: block; text-align: center;
  padding: 14px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 240ms, color 240ms, transform 180ms;
  text-decoration: none; margin-top: auto;
}
.paket-cta.primary { background: var(--accent); color: var(--bg); }
.paket-cta.primary:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.paket-cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.paket-cta.ghost:hover { background: var(--surface-2); color: var(--ink); transform: translateY(-2px); }

/* ===================== REFERANSLAR ===================== */
.referanslar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 48px;
}
@media (max-width: 768px) { .referanslar-grid { grid-template-columns: 1fr; } }
.referans-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.referans-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212,168,75,0.1);
}
.referans-card::before {
  content: '\201C'; position: absolute;
  top: 16px; left: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem; color: var(--accent);
  opacity: 0.25; line-height: 1;
}
.referans-text {
  font-size: 0.95rem; color: var(--ink-soft);
  line-height: 1.75; margin-bottom: 18px;
  position: relative;
}
.referans-meta {
  font-size: 0.82rem; color: var(--accent);
  font-weight: 600;
}
.referans-meta span { color: var(--ink-soft); font-weight: 400; }

/* ===================== SSS (FAQ) ===================== */
.sss-list { margin-top: 40px; max-width: 780px; margin-left: auto; margin-right: auto; }
.sss-item {
  border-bottom: 1px solid var(--line);
}
.sss-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.sss-item summary::-webkit-details-marker { display: none; }
.sss-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0; margin-left: 16px;
}
.sss-item[open] summary::after { content: '\2212'; }
.sss-item > .sss-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.sss-item[open] > .sss-body {
  height: auto;
  padding-block-end: 22px;
}
.sss-body p {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.75;
}
@media (prefers-reduced-motion: reduce) {
  .sss-item > .sss-body { transition: none; }
}

/* ===================== RANDEVU ===================== */
.randevu { background: var(--surface); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 36px;
  max-width: 680px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,75,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A84B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-check {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: 10px;
}
.field-check label {
  font-size: 0.85rem; text-transform: none;
  letter-spacing: 0; color: var(--ink-soft);
  line-height: 1.5; cursor: pointer;
}
.btn-submit {
  grid-column: 1 / -1;
  background: var(--accent); color: var(--bg);
  border: none; padding: 16px 36px;
  border-radius: 6px; font-weight: 700;
  font-size: 1.05rem; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 240ms, transform 180ms, color 240ms;
}
.btn-submit:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
@media (max-width: 640px) { .btn-submit { width: 100%; } }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

.btn--primary {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: 16px 36px; border-radius: 6px;
  font-weight: 700; font-size: 1.05rem;
  text-decoration: none;
  transition: background 240ms, transform 180ms, color 240ms;
}
.btn--primary:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

a[href*="mailto:"], a[href*="tel:"] { word-break: break-word; overflow-wrap: anywhere; }

/* ===================== NOTLAR (NEWS/ACTIVITY) ===================== */
.notlar-list { margin-top: 32px; }
.notlar-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.notlar-date {
  font-size: 0.78rem; color: var(--accent);
  font-weight: 600; white-space: nowrap;
  min-width: 110px;
}
.notlar-text { font-size: 0.93rem; color: var(--ink-soft); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink);
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-size: 0.88rem; color: var(--ink-soft);
  line-height: 1.7;
}
.footer-col a { display: block; padding: 4px 0; transition: color 240ms, padding-left 240ms; }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-brand { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.footer-brand strong { color: var(--ink); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink-soft); padding: 0;
  transition: color 240ms, border-color 240ms, background 240ms, transform 240ms;
}
.footer-socials a:hover {
  color: var(--accent); border-color: var(--accent);
  background: rgba(212,168,75,0.08); transform: translateY(-2px);
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px; font-size: 0.78rem; color: var(--ink-soft);
}
.footer-bottom a { display: inline; padding: 0; font-size: 0.78rem; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===================== COUNTER-UP ===================== */
.counter-num {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-variant-numeric: tabular-nums;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--ink); margin-bottom: 10px;
  font-style: normal;
}
.cookie-text {
  font-size: 0.85rem; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 18px;
}
.cookie-text a { text-decoration: underline; }
.cookie-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-btn {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 18px; border-radius: 6px;
  font-weight: 700; font-size: 0.88rem;
  cursor: pointer; border: none;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 240ms, color 240ms, transform 180ms;
}
.cookie-btn[data-consent="accept"] {
  background: var(--accent); color: var(--bg);
}
.cookie-btn[data-consent="accept"]:hover {
  background: var(--ink); color: var(--bg); transform: translateY(-1px);
}
.cookie-btn[data-consent="reject"] {
  background: rgba(245,240,232,0.08); color: var(--ink);
  border: 1px solid var(--line-strong);
  font-weight: 700;
}
.cookie-btn[data-consent="reject"]:hover {
  background: var(--surface-2); color: var(--ink); transform: translateY(-1px);
  border-color: var(--ink-soft);
}
.cookie-btn[data-consent="settings"] {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-btn[data-consent="settings"]:hover {
  background: var(--surface-2); color: var(--ink); transform: translateY(-1px);
}
.cookie-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
  min-height: 240px; display: flex; align-items: center;
  background: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px; align-items: start;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,168,75,0.1);
}
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,168,75,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background 240ms, transform 240ms;
}
.channel-card:hover .channel-icon { background: rgba(212,168,75,0.18); transform: scale(1.08); }
.channel-icon svg { width: 22px; height: 22px; }
.channel-label {
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); margin-bottom: 6px;
}
.channel-value {
  font-size: 1rem; color: var(--ink);
  word-break: break-all;
}
.channel-value a { color: var(--ink); }
.channel-value a:hover { color: var(--accent); }
.channel-note {
  font-size: 0.78rem; color: var(--ink-soft);
  margin-top: 4px; opacity: 0.7;
}
.hours-mini-grid {
  display: grid; gap: 4px; margin-top: 4px;
}
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; padding: 2px 0;
  font-variant-numeric: tabular-nums;
}
.hours-row .day { color: var(--ink-soft); }
.hours-row .time { color: var(--ink); font-weight: 600; }

/* ===================== INNER PAGES ===================== */
.page-hero {
  min-height: 200px; display: flex; align-items: center;
  background: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0;
}
.page-content {
  padding: clamp(40px, 6vw, 72px) 0;
}
.page-content h2 {
  font-size: 1.5rem; margin: 40px 0 16px;
  color: var(--ink);
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.15rem; margin: 28px 0 12px;
  color: var(--ink);
}
.page-content p {
  color: var(--ink-soft); margin-bottom: 16px;
  max-width: 780px; line-height: 1.75;
}
.page-content ul, .page-content ol {
  padding-left: 24px; margin-bottom: 16px;
  color: var(--ink-soft);
}
.page-content li { margin-bottom: 6px; line-height: 1.7; }
.page-content a { text-decoration: underline; }

/* Table scroll */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; width: 100%; }
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
th {
  background: rgba(212,168,75,0.06);
  font-weight: 700; color: var(--ink);
  text-transform: uppercase; font-size: 0.78rem;
  letter-spacing: 0.04em;
}
td { color: var(--ink-soft); }

/* Thank-you page */
.thankyou-wrap {
  min-height: 60vh; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 60px var(--pad);
}
.thankyou-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.thankyou-wrap p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.1rem; }
.thankyou-wrap .btn-primary {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: 14px 32px; border-radius: 6px;
  font-weight: 700; text-decoration: none;
  transition: background 240ms, color 240ms, transform 180ms;
}
.thankyou-wrap .btn-primary:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

/* 404 */
.four04-wrap {
  min-height: 70vh; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 60px var(--pad);
}
.four04-wrap .code { font-size: clamp(5rem, 14vw, 10rem); color: var(--accent); opacity: 0.2; line-height: 1; }
.four04-wrap h1 { font-size: 1.8rem; margin-bottom: 12px; }
.four04-wrap p { color: var(--ink-soft); margin-bottom: 28px; }

/* Sitemap page */
.sitemap-links { list-style: none; margin-top: 24px; }
.sitemap-links li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-links a { font-size: 1rem; }

/* ===================== NICHE ANIMATIONS ===================== */

/* Football pitch lines draw */
@keyframes pitchDraw {
  from { stroke-dashoffset: 800; }
  to { stroke-dashoffset: 0; }
}

/* Ball trajectory arc */
@keyframes ballArc {
  0% { transform: translate(0, 0) scale(0.8); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(40px, -60px) scale(1); opacity: 0.7; }
}

/* Boot kick pulse on CTA */
@keyframes kickPulse {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  50% { transform: rotate(12deg); }
  75% { transform: rotate(-3deg); }
}

/* Goal net ripple */
@keyframes netRipple {
  0% { transform: scaleY(1); }
  25% { transform: scaleY(1.02); }
  50% { transform: scaleY(0.98); }
  75% { transform: scaleY(1.01); }
  100% { transform: scaleY(1); }
}

/* Breathing glow for accent elements */
@keyframes accentGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(212,168,75,0); }
  50% { box-shadow: 0 0 24px rgba(212,168,75,0.15); }
}

/* Stadium floodlight sweep */
@keyframes floodlightSweep {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.felsefe-card { animation: accentGlow 10s ease-in-out infinite; }
.felsefe-card:nth-child(2) { animation-delay: 3.3s; }
.felsefe-card:nth-child(3) { animation-delay: 6.6s; }

/* Hero CTA kick effect */
.hero-cta:hover svg {
  animation: kickPulse 0.5s cubic-bezier(.22,.61,.36,1);
}

/* Paket card featured: net ripple glow on hover */
.paket-card.featured:hover {
  animation: netRipple 0.6s ease-out;
}

/* Felsefe cards stagger entrance with stadium glow */
.felsefe-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,75,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms;
}
.felsefe-card { position: relative; overflow: hidden; }
.felsefe-card:hover::after {
  opacity: 1;
  animation: floodlightSweep 1.2s ease-out forwards;
}

/* Referans cards: subtle pitch-line border on hover */
.referans-card::after {
  content: '';
  position: absolute; bottom: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.22,.61,.36,1);
}
.referans-card:hover::after { transform: scaleX(1); }

/* Surec timeline line pulse */
.surec-timeline::before {
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
  background-size: 100% 200%;
  animation: timelinePulse 4s ease-in-out infinite alternate;
}
@keyframes timelinePulse {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .felsefe-card { animation: none; }
  .felsefe-card::after { display: none; }
  .referans-card::after { display: none; }
  .hero-cta:hover svg { animation: none; }
  .paket-card.featured:hover { animation: none; }
  .surec-timeline::before { animation: none; }
  .hero-scroll { animation: none; opacity: 0.55; }
  @keyframes heroZoom { from { transform: none; } to { transform: none; } }
  .heatmap-svg .heat-zone { opacity: 0.7; transform: scale(1); transition: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
  .donusum-grid { gap: 16px; }
  .stat-value { font-size: 1.2rem; }
  .paket-card { padding: 28px 20px; }
  .paket-price { font-size: 1.6rem; }
  .referans-card { padding: 24px 20px; }
  .surec-timeline { padding-left: 32px; }
  .surec-step { padding-left: 20px; }
  .surec-dot { left: -27px; }
  .felsefe-icon { width: 48px; height: 48px; }
  .felsefe-icon svg { width: 24px; height: 24px; }
  .channel-card { padding: 20px 16px; }
  .channel-icon { width: 40px; height: 40px; }
  .channel-icon svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  section { padding: clamp(40px, 6vw, 64px) 0; }
  .footer-grid { gap: 20px; }
  .hero-sub { font-size: 0.95rem; }
}

/* ===================== REVEAL SAFETY FALLBACK ===================== */
@keyframes revealSafety {
  to { opacity: 1; transform: translateY(0); }
}
html:not(.no-js) .reveal:not(.is-in) {
  animation: revealSafety 400ms cubic-bezier(.2,.7,.2,1) 0.12s forwards;
}

/* ===================== ENHANCED HOVER / FOOTBALL THEME ===================== */
.hero-cta {
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.22,.61,.36,1);
}
.hero-cta:hover::before { opacity: 1; }

.felsefe-card {
  transition: transform 380ms cubic-bezier(.22,.61,.36,1), box-shadow 380ms cubic-bezier(.22,.61,.36,1), border-color 380ms;
}
.felsefe-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(212,168,75,0.12), 0 0 0 1px rgba(212,168,75,0.1);
}
.felsefe-icon {
  transition: background 320ms, transform 320ms cubic-bezier(.22,.61,.36,1);
}
.felsefe-card:hover .felsefe-icon {
  background: rgba(212,168,75,0.18);
  transform: scale(1.1) rotate(-4deg);
}

.paket-card {
  transition: transform 380ms cubic-bezier(.22,.61,.36,1), box-shadow 380ms cubic-bezier(.22,.61,.36,1), border-color 380ms;
}
.paket-card:hover {
  border-color: rgba(212,168,75,0.4);
}

.referans-card {
  transition: transform 380ms cubic-bezier(.22,.61,.36,1), box-shadow 380ms cubic-bezier(.22,.61,.36,1), border-color 380ms;
}
.referans-card:hover {
  border-color: rgba(212,168,75,0.3);
}

.channel-card {
  transition: transform 380ms cubic-bezier(.22,.61,.36,1), box-shadow 380ms cubic-bezier(.22,.61,.36,1), border-color 380ms;
}
.channel-card:hover {
  border-color: rgba(212,168,75,0.35);
}

.sss-item summary:hover { color: var(--accent); }

.surec-dot {
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 320ms;
}
.surec-step:hover .surec-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(212,168,75,0.2);
}

.btn--primary {
  position: relative; overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 320ms;
}
.btn--primary:hover::before { opacity: 1; }

.btn-submit {
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 320ms;
}
.btn-submit:hover::before { opacity: 1; }

.paket-cta.primary {
  position: relative; overflow: hidden;
}
.paket-cta.primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 320ms;
}
.paket-cta.primary:hover::before { opacity: 1; }

/* Focus-visible improvements */
.felsefe-card:focus-within,
.paket-card:focus-within,
.referans-card:focus-within,
.channel-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero-cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(212,168,75,0.25);
}

.btn--primary:focus-visible,
.btn-submit:focus-visible,
.paket-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(212,168,75,0.2);
}

/* Signature draw animation */
.signature-svg path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2.4s cubic-bezier(.22,.61,.36,1);
}
.signature-svg.is-in path,
.reveal.is-in .signature-svg path {
  stroke-dashoffset: 0;
}

/* Gold divider shimmer */
@keyframes shimmerLine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-divider {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  animation: shimmerLine 6s ease-in-out infinite;
}

/* Stat improved pulse */
.stat-value.improved {
  position: relative;
}
@keyframes statPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(212,168,75,0); }
  50% { text-shadow: 0 0 12px rgba(212,168,75,0.3); }
}
.stat-value.improved {
  animation: statPulse 3s ease-in-out infinite;
}

/* ===================== COOKIE BANNER MOBILE ===================== */
@media (max-width: 480px) {
  .cookie-banner {
    padding: 18px;
    bottom: 8px; left: 8px; right: 8px;
    border-radius: 10px;
  }
  .cookie-title { font-size: 0.95rem; margin-bottom: 8px; }
  .cookie-text { font-size: 0.8rem; margin-bottom: 14px; }
  .cookie-btns { gap: 8px; }
  .cookie-btn { min-height: 48px; font-size: 0.85rem; }
}

/* ===================== FOOTER COOKIE CLEARANCE ===================== */
@media (min-width: 641px) {
  .site-footer { padding-bottom: 28px; }
}

/* ===================== PAGE CONTENT ENHANCEMENTS ===================== */
.page-content h2 {
  padding-top: 12px;
  margin-top: 48px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.page-content h2:first-child {
  padding-top: 0;
  margin-top: 0;
}
.page-content h3 {
  color: var(--accent-2);
}
.page-content ul {
  padding-left: 28px;
}
.page-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}
.page-content li::marker {
  color: var(--accent);
}

/* ===================== REDUCED MOTION FOR NEW ANIMATIONS ===================== */
@media (prefers-reduced-motion: reduce) {
  .gold-divider { animation: none; }
  .stat-value.improved { animation: none; }
  .hero-cta::before,
  .btn--primary::before,
  .btn-submit::before,
  .paket-cta.primary::before { display: none; }
  .signature-svg path { stroke-dashoffset: 0; stroke-dasharray: none; transition: none; }
  html:not(.no-js) .reveal:not(.is-in) { animation: none; opacity: 1; transform: none; }
  .felsefe-card,
  .paket-card,
  .referans-card,
  .channel-card,
  .surec-dot { transition: none; }
  .hero-scroll { animation: none; display: none; }
  .surec-timeline::before { animation: none; }
  .referans-card::after,
  .felsefe-card::after { display: none; }
}

/* ===================== HERO BADGE HOVER ===================== */
.hero-badge {
  transition: transform 300ms cubic-bezier(.22,.61,.36,1), border-color 300ms, color 300ms, background 300ms;
}
.hero-badge:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--ink);
  background: rgba(212,168,75,0.12);
}

/* ===================== SUREC DOT PULSE ===================== */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,75,0); }
  50% { box-shadow: 0 0 0 6px rgba(212,168,75,0.15); }
}
.surec-step.reveal.is-in .surec-dot {
  animation: dotPulse 3s ease-in-out infinite;
}
.surec-step:nth-child(2) .surec-dot { animation-delay: 0.4s; }
.surec-step:nth-child(3) .surec-dot { animation-delay: 0.8s; }
.surec-step:nth-child(4) .surec-dot { animation-delay: 1.2s; }
.surec-step:nth-child(5) .surec-dot { animation-delay: 1.6s; }
.surec-step:nth-child(6) .surec-dot { animation-delay: 2.0s; }

/* ===================== HERO CTA GLOW (MOBILE) ===================== */
@media (max-width: 640px) {
  .hero-cta {
    box-shadow: 0 4px 24px rgba(212,168,75,0.3);
  }
}

/* ===================== NOTLAR DATE HOVER ===================== */
.notlar-item {
  transition: background 300ms, padding-left 300ms;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.notlar-item:hover {
  background: rgba(212,168,75,0.04);
  padding-left: 14px;
}

/* ===================== SSS SUMMARY HOVER ACCENT ===================== */
.sss-item summary::after {
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), color 320ms;
}
.sss-item summary:hover::after {
  color: var(--ink);
}
.sss-item[open] summary {
  color: var(--accent);
}

/* ===================== STAT ROW HOVER ===================== */
.stat-row {
  transition: background 280ms, padding-left 280ms;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
}
.stat-row:hover {
  background: rgba(212,168,75,0.04);
  padding-left: 14px;
}

/* ===================== PAKET CARD STADIUM SPOTLIGHT ===================== */
.paket-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,75,0.06) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(.22,.61,.36,1);
}
.paket-card:hover::after { opacity: 1; }

/* ===================== REDUCED MOTION: NEW ADDITIONS ===================== */
@media (prefers-reduced-motion: reduce) {
  .surec-step.reveal.is-in .surec-dot { animation: none; }
  .hero-badge,
  .notlar-item,
  .stat-row { transition: none; }
  .paket-card::after { display: none; }
}

/* ===================== PRINT ===================== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { color: #111; background: #fff; }
  a { color: #111; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* footer-contrast-guard */
.site-footer, footer, .footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.site-footer::before, footer::before, .footer::before {
  content:"";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 2px;
  background: currentColor;
  opacity: 0.35;
  border-radius: 2px;
}

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* honeypot-hide */
.form-honeypot, input[name="web_site"], input[name="honeypot"], input[name="hp_url"], input[name="trap"], input[aria-hidden="true"][tabindex="-1"] {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

