/* ============================================================
   Dumansaha — Karadeniz Futbol Kampı
   Design DNA: Lora 600 + Nunito 400 | #FAF5ED / #2D5F3A / #B8860B
   ============================================================ */

:root {
  interpolate-size: allow-keywords;
  --bg: #FAF5ED;
  --surface: #FFFFFF;
  --surface-2: #F3EDE3;
  --ink: #2C2C2C;
  --ink-soft: #6B6560;
  --accent: #2D5F3A;
  --accent-2: #B8860B;
  --line: rgba(44,44,44,0.12);
  --line-strong: rgba(44,44,44,0.25);
  --radius: 12px;
  --header-h: 72px;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  --max-w: 1180px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { max-width: 68ch; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
}
.skip-link:focus { left: 16px; }

/* ============================================================
   HEADER — sticky-with-morph
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(250, 245, 237, 0.92);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(250,245,237,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 62px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  z-index: 1090;
}
.logo__icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo:hover { color: var(--accent); }

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: var(--surface); transform: translateY(-2px); }
.nav-desktop .nav-cta.is-active { background: var(--accent); color: #fff; }

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  z-index: 1100;
  padding: 8px;
  border-radius: 8px;
  transition: background 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { background: rgba(44,44,44,0.06); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============================================================
   DRAWER — mobile menu (outside header!)
   ============================================================ */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  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);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
  padding: calc(var(--header-h) + 24px) 32px 40px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer__nav a:hover { color: var(--accent); padding-left: 8px; }
.drawer__nav a.is-active { color: var(--accent); }
.drawer__cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border-bottom: none !important;
  transition: background 240ms, color 240ms;
}
.drawer__cta:hover { background: var(--ink); color: var(--surface) !important; padding-left: 28px !important; }

/* ============================================================
   MAIN — offset for fixed header
   ============================================================ */
main { padding-top: var(--header-h); }

/* ============================================================
   HERO — full-bleed fog effect
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero-yayla.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero__fog {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,245,237,0.5) 0%, rgba(250,245,237,0.15) 25%, transparent 50%, rgba(0,0,0,0.15) 80%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 48px clamp(16px, 4vw, 40px);
  max-width: 780px;
}
.hero__content::before {
  content: '';
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 60%, transparent 80%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}
.hero__content .eyebrow { color: var(--accent-2); }
.hero__content h1 {
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  margin-bottom: 32px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.hero__trust {
  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(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero__badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Stats row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 740px;
  margin: -48px auto 0;
  position: relative; z-index: 3;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.12);
}
.stat {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.1;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ============================================================
   SECTIONS — common spacing
   ============================================================ */
section {
  padding: clamp(64px, 10vw, 120px) 0;
}
.section-divider {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--line-strong);
  margin: 0 auto 48px;
  border: none;
}
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { color: var(--ink-soft); margin: 0 auto; }

/* ============================================================
   #hikaye — Founder story
   ============================================================ */
.story {
  background: var(--surface);
}
.story__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .story__grid { grid-template-columns: 1fr 1.3fr; gap: 64px; }
}
.story__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.story__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(45,95,58,0.18), transparent);
  pointer-events: none;
}
.story__img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story__text h2 { margin-bottom: 24px; }
.story__text p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* Signature SVG */
.signature-svg {
  display: block;
  width: 180px;
  height: auto;
  margin-top: 24px;
  opacity: 0.7;
}

/* ============================================================
   #felsefe — Manifesto / pull-quote
   ============================================================ */
.felsefe {
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.felsefe h2 { color: #fff; }
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  max-width: 52ch;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.95);
}
.pull-quote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.manifesto {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
}
.manifesto p { margin-bottom: 16px; max-width: 62ch; }

/* ============================================================
   #yasam — Kampta Bir Gün — editorial alternating flow
   ============================================================ */
.yasam-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.yasam-item {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.yasam-item:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .yasam-item { grid-template-columns: 1fr 1fr; gap: 64px; }
  .yasam-item:nth-child(even) .yasam-item__img { order: 2; }
  .yasam-item:nth-child(even) .yasam-item__text { order: 1; }
}
.yasam-item__time {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.yasam-item__text h3 { margin-bottom: 12px; }
.yasam-item__text p { color: var(--ink-soft); font-size: 0.98rem; }
.yasam-item__img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.yasam-item__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16,1,.3,1);
}
.yasam-item__img:hover img { transform: scale(1.05); }
.yasam-item__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,95,58,0.1), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
}
.yasam-item__img:hover::after { opacity: 1; }

/* ============================================================
   #surec — Kayıt Süreci (timeline)
   ============================================================ */
.surec { background: var(--surface); }
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.timeline__step {
  position: relative;
  padding-bottom: 48px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 30px; height: 30px;
  background: var(--accent);
  border: 3px solid var(--surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(45,95,58,0.25);
}
.timeline__when {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline__step h4 { margin-bottom: 6px; }
.timeline__step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ============================================================
   #aidat — Pricing cards
   ============================================================ */
.pricing-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1), border-color 300ms;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 52px -14px rgba(45,95,58,0.2); border-color: var(--accent); }
.price-card.is-featured {
  border-color: var(--accent);
  border-width: 2px;
}
.price-card.is-featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.price-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 18px;
  color: var(--accent);
}
.price-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.price-card__duration {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.1;
}
.price-card__per {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.price-card__list {
  text-align: left;
  margin-bottom: 24px;
}
.price-card__list li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: start;
  gap: 8px;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.price-card__list .included svg { color: var(--accent); }
.price-card__list .excluded { color: var(--ink-soft); }
.price-card__list .excluded svg { color: #c44; }
.price-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:first-child { grid-column: 1 / -1; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px -10px rgba(0,0,0,0.1); }
.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-2);
}
.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
}
.testimonial-card__info strong { display: block; font-size: 0.92rem; }
.testimonial-card__info span { font-size: 0.8rem; color: var(--ink-soft); }

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-item > .faq-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);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================================
   #davet — Invitation + Form
   ============================================================ */
.davet {
  background: var(--surface);
}
.davet__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .davet__grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}
.davet__left h2 { margin-bottom: 18px; }
.davet__left p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.02rem; }

/* ---- Form styles ---- */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,95,58,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.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 {
  flex-direction: row;
  align-items: start;
  gap: 10px;
}
.field--check label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 280ms cubic-bezier(.16,1,.3,1), color 280ms, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.18);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  overflow: hidden;
  transition: background 280ms cubic-bezier(.16,1,.3,1), color 280ms, border-color 280ms, transform 280ms cubic-bezier(.16,1,.3,1);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   KAMP GÜNLÜĞÜ — news/activity block
   ============================================================ */
.gunluk-list { display: flex; flex-direction: column; gap: 16px; max-width: 680px; margin: 0 auto; }
.gunluk-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.gunluk-date {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 700;
  white-space: nowrap;
}
.gunluk-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 32px; }
}
.footer__brand p { font-size: 0.92rem; margin-top: 12px; line-height: 1.7; }
.footer__logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
}
.footer__est {
  font-size: 0.8rem;
  color: var(--accent-2);
  margin-top: 8px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.site-footer a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  transition: color 240ms, padding-left 240ms;
}
.site-footer a:hover { color: var(--accent-2); padding-left: 4px; }
.footer__contact p { font-size: 0.88rem; line-height: 1.6; word-break: break-word; overflow-wrap: anywhere; }
.site-footer a { word-break: break-word; overflow-wrap: anywhere; }
.footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer__vkn { font-family: 'Courier New', Consolas, monospace; font-size: 0.78rem; }

/* ============================================================
   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);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.cookie-banner p a { text-decoration: underline; color: var(--accent); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cookie-actions .cookie-accept:hover { background: var(--ink); color: var(--surface); }
.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.cookie-actions .cookie-reject:hover { border-color: var(--accent); color: var(--accent); }
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-actions .cookie-settings:hover { border-color: var(--ink-soft); color: var(--ink); }

/* ============================================================
   REVEAL — scroll animations with stagger
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   NICHE ANIMATIONS — football themed
   ============================================================ */

/* Pitch-line draw — horizontal divider animates drawing across */
@keyframes pitch-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.pitch-line {
  display: block;
  width: 80px; height: 2px;
  background: var(--accent);
  margin: 0 auto;
  transform-origin: left center;
}
.pitch-line.is-in { animation: pitch-line-draw 800ms cubic-bezier(.2,.7,.2,1) forwards; }

/* Goal net mesh — subtle background pattern */
.net-pattern {
  background-image:
    linear-gradient(45deg, var(--line) 1px, transparent 1px),
    linear-gradient(-45deg, var(--line) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: center;
}

/* Ball roll on section separator */
@keyframes ball-roll {
  from { transform: translateX(-60px) rotate(0deg); opacity: 0; }
  30% { opacity: 1; }
  to { transform: translateX(60px) rotate(720deg); opacity: 0; }
}
.ball-divider {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto;
  max-width: 200px;
}
.ball-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--line-strong);
}
.ball-divider svg {
  width: 20px; height: 20px;
  position: relative;
  color: var(--accent);
}
.ball-divider.is-in svg {
  animation: ball-roll 1.4s cubic-bezier(.4,0,.2,1) forwards;
}

/* Grass sway — ambient at section bottoms */
@keyframes grass-sway {
  0%, 100% { transform: skewX(0deg); }
  25% { transform: skewX(2deg); }
  75% { transform: skewX(-2deg); }
}
.grass-accent {
  display: block;
  width: 100%;
  height: 6px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 0 0 4px 4px;
}

/* Stadium glow on stats */
@keyframes stadium-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 24px rgba(45,95,58,0.3); }
}
.stat__number.is-in {
  animation: stadium-glow 3s ease-in-out 1;
}

/* Fog drift — ambient particles in hero */
@keyframes fog-drift {
  0% { transform: translateX(-10%) translateY(0); opacity: 0.3; }
  50% { opacity: 0.5; }
  100% { transform: translateX(10%) translateY(-15px); opacity: 0.2; }
}
.hero__mist {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(250,245,237,0.45), transparent);
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pitch-line.is-in { animation: none; transform: scaleX(1); }
  .ball-divider.is-in svg { animation: none; }
  .stat__number.is-in { animation: none; }
}

/* ============================================================
   CONTACT PAGE — cards layout
   ============================================================ */
.contact-hero {
  background: var(--accent);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 8vw, 80px);
  text-align: center;
}
.contact-hero h1 { color: #fff; margin-bottom: 14px; }
.contact-hero p { color: rgba(255,255,255,0.8); margin: 0 auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid transparent;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, border-color 300ms;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -10px rgba(0,0,0,0.12); border-top-color: var(--accent); }
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(45,95,58,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.contact-card__value {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-card__value a { color: var(--accent); transition: color 240ms; }
.contact-card__value a:hover { color: var(--accent-2); }
.contact-card__sub { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }

/* Hours mini-grid */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.hours-grid .day { font-weight: 600; color: var(--ink); }
.hours-grid .time { color: var(--ink-soft); }
.hours-grid .today .day,
.hours-grid .today .time { color: var(--accent); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--accent);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 8vw, 80px);
  text-align: center;
}
.about-hero h1 { color: #fff; margin-bottom: 14px; }
.about-hero p { color: rgba(255,255,255,0.8); margin: 0 auto; }

.team-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px -10px rgba(0,0,0,0.12); }
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--surface-2);
}
.team-card__info { padding: 20px; }
.team-card__info h4 { margin-bottom: 2px; }
.team-card__info .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.team-card__info p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   POLICY / LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--surface);
  padding: clamp(80px, 10vw, 120px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-hero p { color: var(--ink-soft); }

.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 32px);
}
.legal-body h2 { font-size: 1.3rem; margin: 40px 0 16px; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 12px; }
.legal-body p { margin-bottom: 16px; font-size: 0.95rem; color: var(--ink); line-height: 1.8; }
.legal-body ul { margin-bottom: 16px; padding-left: 20px; }
.legal-body ul li { font-size: 0.95rem; line-height: 1.7; margin-bottom: 6px; list-style: disc; color: var(--ink-soft); }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px clamp(16px, 4vw, 32px);
}
.thankyou h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px; color: var(--accent); }
.thankyou p { color: var(--ink-soft); margin-bottom: 28px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px clamp(16px, 4vw, 32px);
}
.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 600;
  color: var(--line);
  line-height: 1;
}
.error-page h1 { font-size: 1.5rem; margin: 16px 0 12px; }
.error-page p { color: var(--ink-soft); margin-bottom: 28px; }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-list { max-width: 680px; margin: 0 auto; }
.sitemap-list h3 { margin: 32px 0 12px; font-size: 1.1rem; }
.sitemap-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--accent);
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--ink); padding-left: 6px; }
.sitemap-list a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   TABLES — scroll wrapper
   ============================================================ */
.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%;
  border-collapse: collapse;
}
.table-scroll th,
.table-scroll td {
  padding: 10px 14px;
  font-size: 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

/* ============================================================
   FOCUS & A11Y
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; margin-top: -28px; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 16px; }
  .stat:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn-primary { width: 100%; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}
@media (max-width: 480px) {
  .hero__badge { font-size: 0.75rem; padding: 6px 12px; }
  .price-card__amount { font-size: 1.8rem; }
  .stat__number { font-size: 1.6rem; }
}
@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
}

/* ============================================================
   ENHANCED HOVER & MICRO-INTERACTIONS
   ============================================================ */

/* Hero badge hover */
.hero__badge {
  transition: background 280ms cubic-bezier(.16,1,.3,1), transform 280ms cubic-bezier(.16,1,.3,1), border-color 280ms;
}
.hero__badge:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Hero CTA pulse glow */
.hero .btn-primary {
  position: relative;
  overflow: visible;
}
.hero .btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: var(--accent);
  opacity: 0;
  z-index: -1;
  animation: cta-pulse 3s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(1.06); }
}

/* Stats hover with stadium glow */
.stat {
  transition: background 280ms cubic-bezier(.16,1,.3,1);
}
.stat:hover {
  background: rgba(45,95,58,0.03);
}
.stat:hover .stat__number {
  text-shadow: 0 0 20px rgba(45,95,58,0.25);
}

/* Story image tilt on hover */
.story__img-wrap {
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.story__img-wrap:hover {
  transform: rotate(-1deg) scale(1.01);
}

/* Signature draw animation */
@keyframes signature-draw {
  from { stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}
.signature-svg path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.reveal.is-in .signature-svg path,
.signature-svg.is-in path {
  animation: signature-draw 1.8s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: 0.3s;
}

/* Timeline dot entrance */
@keyframes dot-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.reveal.is-in .timeline__dot {
  animation: dot-pop 500ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(var(--i, 0) * 100ms + 200ms);
}

/* Price card featured shimmer */
@keyframes card-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
.price-card.is-featured::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.price-card.is-featured:hover::after {
  animation: card-shimmer 800ms ease-out;
}

/* Testimonial card enhanced hover */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 400ms cubic-bezier(.16,1,.3,1);
}
.testimonial-card:hover::before { height: 100%; }

/* FAQ accordion enhanced */
.faq-item summary {
  transition: color 240ms, padding-left 280ms cubic-bezier(.16,1,.3,1);
}
.faq-item summary:hover { padding-left: 8px; }
.faq-item[open] summary { color: var(--accent); }

/* Team card photo zoom */
.team-card__photo {
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-card__photo { transform: scale(1.05); }
.team-card { overflow: hidden; }

/* Footer links subtle hover */
.site-footer a {
  transition: color 240ms, padding-left 280ms cubic-bezier(.16,1,.3,1), opacity 200ms;
}

/* Gunluk items */
.gunluk-item {
  transition: transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.gunluk-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.08);
}

/* Drawer links stagger entrance */
.drawer.is-open .drawer__nav a {
  animation: drawer-slide-in 320ms cubic-bezier(.16,1,.3,1) both;
}
.drawer.is-open .drawer__nav a:nth-child(1) { animation-delay: 50ms; }
.drawer.is-open .drawer__nav a:nth-child(2) { animation-delay: 100ms; }
.drawer.is-open .drawer__nav a:nth-child(3) { animation-delay: 150ms; }
.drawer.is-open .drawer__nav a:nth-child(4) { animation-delay: 200ms; }
.drawer.is-open .drawer__nav a:nth-child(5) { animation-delay: 250ms; }
.drawer.is-open .drawer__nav a:nth-child(6) { animation-delay: 300ms; }
@keyframes drawer-slide-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}

/* CTA button hover ripple effect (non-hero buttons) */
section:not(.hero) .btn-primary {
  position: relative;
  overflow: hidden;
}
section:not(.hero) .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 500ms cubic-bezier(.16,1,.3,1), height 500ms cubic-bezier(.16,1,.3,1);
}
section:not(.hero) .btn-primary:hover::before {
  width: 300px; height: 300px;
}

/* Ghost button hover slide */
.btn-ghost::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: rgba(45,95,58,0.05);
  transition: height 300ms cubic-bezier(.16,1,.3,1);
}
.btn-ghost:hover::before { height: 100%; }

/* Cookie banner enhanced — Reddet slightly more visible */
.cookie-actions .cookie-reject {
  border-color: var(--ink-soft);
  color: var(--ink);
}
.cookie-actions .cookie-reject:hover {
  background: rgba(44,44,44,0.06);
  border-color: var(--ink);
}

/* Yasam flow image overlay on hover — green pitch glow */
.yasam-item__img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 30% 70%, rgba(45,95,58,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.yasam-item__img:hover::before { opacity: 1; }

/* ============================================================
   REDUCED MOTION — disable all enhanced animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary::after { animation: none; }
  .signature-svg path { animation: none; stroke-dashoffset: 0; stroke-dasharray: none; }
  .reveal.is-in .timeline__dot { animation: none; }
  .price-card.is-featured:hover::after { animation: none; }
  .drawer.is-open .drawer__nav a { animation: none; }
  .hero__badge,
  .story__img-wrap,
  .stat,
  .testimonial-card::before,
  .contact-card,
  .team-card__photo,
  .gunluk-item,
  .yasam-item__img::before,
  .btn-primary::before,
  .btn-ghost::before { transition: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; padding: 40px 0; }
  .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}

/* 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; }

/* 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);
}


/* 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;
}

/* 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;
}
@media (prefers-color-scheme: light) {
  .site-footer, footer, .footer { border-top: 1px solid rgba(0,0,0,0.10); }
}

