/* =========================================================================
   Referans Evlilik — Public Site Stili
   Mobile-first, kadına hitap eden, sıcak ve güven veren tasarım.
   ========================================================================= */

:root {
  --primary: #8E2C4A;
  --primary-dark: #73213B;
  --primary-light: #B84874;
  --secondary: #F8E1E7;
  --secondary-soft: #FCEEF2;
  --accent: #D4AF37;
  --accent-soft: #F2E5B5;
  --text: #2C1810;
  --text-soft: #6B4F45;
  --text-muted: #8a6c5f;
  --bg: #FFF8F5;
  --bg-card: #ffffff;
  --success: #5B8C5A;
  --danger: #C0392B;
  --border: #EAD2D9;
  --shadow-sm: 0 2px 8px rgba(142,44,74,.08);
  --shadow-md: 0 8px 24px rgba(142,44,74,.12);
  --shadow-lg: 0 18px 48px rgba(142,44,74,.18);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1180px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(1.9rem, 5.5vw, 3.2rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); letter-spacing: -.3px; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto;
  padding: 10px 16px; background: var(--primary); color: #fff; border-radius: 8px; z-index: 9999;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); padding-top: 12px; padding-bottom: 12px;
}
.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); }
.logo__mark { color: var(--primary); font-size: 1.6rem; line-height: 1; }
.logo__text { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.logo--light .logo__text { color: var(--text); }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; align-items: center; }
.main-nav a { padding: 10px 14px; border-radius: 8px; color: var(--text); font-weight: 500; }
.main-nav a:hover { background: var(--secondary); color: var(--primary); }
.main-nav a.btn--primary,
.main-nav a.btn--primary:hover { color: #fff; background: var(--primary); }
.main-nav a.btn--primary:hover { background: var(--primary-dark); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 10px;
  width: 44px; height: 44px; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--bg); padding: 24px 20px;
    transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .main-nav .btn { margin-top: 12px; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; min-height: 48px;
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(142,44,74,.25); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 10px 26px rgba(142,44,74,.35); }
.btn--gold { background: linear-gradient(135deg, #C8932D 0%, #D4AF37 100%); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.btn--gold:hover { background: linear-gradient(135deg, #A87820 0%, #B89530 100%); color: #fff; }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; min-height: 56px; }
.btn--sm { padding: 10px 18px; min-height: 40px; font-size: .95rem; }
.btn--block { display: flex; width: 100%; }

@media (max-width: 600px) {
  .btn--responsive { width: 100%; }
}

/* ---------------- Hero (iki sütunlu, illüstrasyonlu) ---------------- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--bg) 0%, var(--secondary-soft) 60%, var(--secondary) 100%);
  color: var(--text);
  overflow: hidden;
}
.hero__layout {
  display: grid; gap: 36px; align-items: center;
  grid-template-columns: 1fr;
  max-width: var(--container);
  margin: 0 auto; padding: 0 20px;
}
@media (min-width: 880px) {
  .hero__layout { grid-template-columns: 1.2fr 1fr; gap: 48px; }
}
.hero__text { position: relative; z-index: 1; }
.hero h1 { color: var(--text); margin-bottom: .35em; }
.hero h1 em { color: var(--primary); font-style: normal; font-family: inherit; }
.hero p.lead { font-size: clamp(1rem, 2.2vw, 1.18rem); max-width: 580px; margin: 0 0 22px; color: var(--text-soft); }
.hero__trust-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 24px;
  font-size: .98rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  display: flex; gap: 12px; align-items: flex-start;
}
.hero__trust-card .ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.hero__trust-card strong { color: var(--primary); }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--primary);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: .88rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(142,44,74,.08);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__cta .btn { font-size: 1.05rem; }

.hero__visual {
  position: relative; z-index: 1; text-align: center;
}
.hero__visual img, .hero__visual svg {
  width: 100%; max-width: 520px;
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  filter: drop-shadow(0 14px 36px rgba(142,44,74,.22));
  display: block;
}
@media (max-width: 879px) {
  .hero__visual { order: -1; }
  .hero__visual img, .hero__visual svg { max-width: 380px; border-radius: 22px; }
}
@media (max-width: 600px) {
  .hero__cta .btn { width: 100%; max-width: 360px; }
}

/* ---------------- Sections ---------------- */
.section { padding: clamp(56px, 9vw, 96px) 0; }
.section--soft { background: var(--secondary-soft); }
.section--gold { background: linear-gradient(135deg, var(--bg) 0%, #FCF5E5 100%); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__head h2 { margin-bottom: .35em; }
.section__head p { color: var(--text-soft); font-size: 1.05rem; }

.eyebrow {
  display: inline-block; padding: 5px 14px;
  background: var(--secondary); color: var(--primary);
  border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 14px;
}

/* ---------------- Empati bloğu ---------------- */
.empati {
  background: linear-gradient(135deg, #fff 0%, var(--secondary-soft) 100%);
  border-left: 4px solid var(--primary);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--text-soft);
}
.empati strong { color: var(--primary); }

/* ---------------- Cards Grid ---------------- */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--secondary); color: var(--primary);
  border-radius: 14px; font-size: 1.7rem; margin-bottom: 14px;
}
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--text-soft); margin-bottom: 0; font-size: .98rem; }

/* ---------------- Steps (Nasıl çalışır) ---------------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative; background: #fff; padding: 32px 26px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.step-card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -22px; left: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  box-shadow: 0 8px 22px rgba(142,44,74,.3);
}
.step-card h3 { margin-top: 12px; }

/* ---------------- Mutlu çiftler grid ---------------- */
.gallery { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------------- Yorumlar / Testimonials ---------------- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 8px;
}
.testimonials-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}
.testimonial-page {
  flex: 0 0 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 4px 4px;
}
@media (min-width: 680px) { .testimonial-page { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonial-page { grid-template-columns: repeat(3, 1fr); } }

.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); cursor: pointer;
  font-size: 1.6rem; color: var(--primary); line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 5;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.testimonial-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.05); }
.testimonial-arrow:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.testimonial-arrow--prev { left: -8px; }
.testimonial-arrow--next { right: -8px; }
@media (max-width: 720px) {
  .testimonial-arrow { display: none; } /* mobilde swipe ile */
}

.testimonial-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 10px; height: 10px; border: none; padding: 0;
  border-radius: 50%; background: var(--border); cursor: pointer;
  transition: background .2s ease, width .25s ease, border-radius .25s ease;
}
.testimonial-dot.is-active { background: var(--primary); width: 28px; border-radius: 5px; }
.testimonial-dot:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.testimonial {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--secondary-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: '"';
  position: absolute; top: 4px; right: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem; color: var(--secondary);
  line-height: 1; pointer-events: none; user-select: none;
}
.testimonial__stars {
  color: var(--accent); font-size: 1rem; letter-spacing: 2px;
  position: relative; z-index: 1;
}
.testimonial__text {
  margin: 0; color: var(--text); font-size: .96rem; line-height: 1.65;
  flex-grow: 1; position: relative; z-index: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--primary); font-size: .92rem;
  border-top: 1px solid var(--border); padding-top: 12px;
  margin-top: 4px;
}
.testimonial__avatar {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
}

/* Başarı kartı (yorumlar 3. sayfa, sağ alt) */
.testimonial--success {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  border-color: transparent;
  overflow: hidden;
}
.testimonial--success:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial--success::before {
  content: "♥"; font-family: inherit;
  position: absolute; top: -30px; right: -20px;
  font-size: 180px; color: rgba(255,255,255,.08); line-height: 1;
}
.testimonial--success__icon {
  font-size: 2.5rem; line-height: 1;
}
.testimonial--success h3 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; line-height: 1.3;
  margin: 0;
  position: relative; z-index: 1;
}
.testimonial--success__stats {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: .92rem;
  position: relative; z-index: 1;
}
.testimonial--success__stats li {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.95);
}
.testimonial--success__stats strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: var(--accent-soft);
  min-width: 50px; text-align: right;
}
.testimonial--success__cta {
  margin: 4px 0 0; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-weight: 600; color: #fff;
  position: relative; z-index: 1;
}

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--primary); font-weight: 400; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary p, .faq details > p { margin-top: 14px; color: var(--text-soft); }

/* ---------------- CTA Banner ---------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; text-align: center; padding: clamp(50px, 8vw, 80px) 24px;
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "♥"; position: absolute; right: -40px; top: -40px; font-size: 220px;
  color: rgba(255,255,255,.07); pointer-events: none;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { font-size: 1.1rem; opacity: .95; max-width: 620px; margin: 0 auto 24px; }

/* CTA Banner — split (görselli) varyant */
.cta-banner--split {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  text-align: center;
  padding: clamp(40px, 6vw, 60px) clamp(20px, 4vw, 40px);
}
.cta-banner--split .cta-banner__text { position: relative; z-index: 1; }
.cta-banner--split .cta-banner__text p { margin-left: auto; margin-right: auto; }
.cta-banner--split .cta-banner__visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.cta-banner--split .cta-banner__visual img {
  width: 100%; max-width: 420px; height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  display: block;
}
@media (min-width: 880px) {
  .cta-banner--split { grid-template-columns: 1.1fr 1fr; gap: 40px; text-align: left; align-items: center; }
  .cta-banner--split .cta-banner__text p { margin-left: 0; margin-right: 0; }
  .cta-banner--split .cta-banner__visual img { max-width: 100%; }
}

/* ---------------- Form ---------------- */
.form-shell { max-width: 820px; margin: 0 auto; }
.form-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  background: var(--secondary-soft); padding: 14px 18px; border-radius: var(--radius);
  margin-bottom: 28px; font-size: .92rem; color: var(--primary);
}
.form-trust span { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

fieldset {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 22px; margin: 0 0 22px; background: #fff; box-shadow: var(--shadow-sm);
}
legend {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--primary);
  padding: 0 10px;
}
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row--2 { grid-template-columns: 1fr 1fr; } .field-row--3 { grid-template-columns: repeat(3, 1fr); } }

label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; color: var(--text); }
label .req { color: var(--danger); }
.field-help { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="date"], input[type="password"], input[type="url"], select, textarea {
  width: 100%; padding: 13px 14px; min-height: 48px;
  font-family: inherit; font-size: 16px; /* iOS auto-zoom önleme */
  color: var(--text); background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(142,44,74,.12);
}
textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.textarea-lg { min-height: 200px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238E2C4A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}

.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill {
  position: relative; cursor: pointer;
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; min-height: 48px;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 999px;
  font-weight: 500; transition: all .15s ease; color: var(--text);
}
.radio-pill input:checked + span {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(142,44,74,.25);
}
.radio-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(142,44,74,.2); }

.checkbox-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--secondary-soft); border-radius: var(--radius); }
.checkbox-row input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.checkbox-row label { margin: 0; font-weight: 500; font-size: .94rem; }

/* Highlight kutusu — alanın üstündeki samimi uyarı */
.highlight-box {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-soft) 100%);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 16px;
  font-size: .98rem;
  color: var(--text);
}
.highlight-box p { margin: 0 0 10px; line-height: 1.6; }
.highlight-box p:last-child { margin-bottom: 0; }
.highlight-box p:first-child::before { content: "💡 "; }

/* Onay/güven kartı — formun başında gösterilir */
.form-consent-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--secondary-soft) 0%, var(--secondary) 100%);
  border-left: 5px solid var(--primary);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
  font-size: .98rem;
  color: var(--text);
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}
.form-consent-card__icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}
.form-consent-card strong { color: var(--primary); }
.form-consent-card > div > strong:first-child {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

/* Foto upload */
.photo-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 780px) { .photo-grid { grid-template-columns: repeat(5, 1fr); } }

.photo-slot {
  position: relative; aspect-ratio: 1/1;
  background: var(--secondary-soft);
  border: 2px dashed var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  cursor: pointer; overflow: hidden; transition: all .2s ease;
  color: var(--primary); font-weight: 500; font-size: .85rem;
  -webkit-tap-highlight-color: transparent;
}
.photo-slot:hover { background: var(--secondary); }
.photo-slot input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.photo-slot__icon { font-size: 2rem; color: var(--primary); line-height: 1; }
.photo-slot__label { font-size: .8rem; text-align: center; padding: 0 8px; }
.photo-slot.has-image { border-style: solid; background: #fff; }
.photo-slot__preview { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.photo-slot__remove {
  position: absolute; top: 6px; right: 6px; width: 28px; height: 28px;
  background: rgba(192,57,43,.95); color: #fff; border: none; border-radius: 50%;
  cursor: pointer; font-size: 16px; line-height: 28px; padding: 0; z-index: 2;
  display: none;
}
.photo-slot.has-image .photo-slot__remove { display: block; }
.photo-slot.required-mark::after {
  content: "Zorunlu"; position: absolute; bottom: 6px; left: 6px;
  background: var(--primary); color: #fff; padding: 3px 8px;
  border-radius: 6px; font-size: .7rem; font-weight: 600;
}
.photo-slot.has-image.required-mark::after { display: none; }

/* Foto istemci-tarafı işleme göstergesi (resize sırasında) */
.photo-slot.is-processing {
  pointer-events: none;
  opacity: 0.75;
}
.photo-slot.is-processing::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(255, 248, 245, 0.8);
  z-index: 3;
}
.photo-slot.is-processing::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border: 3px solid var(--secondary);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: form-overlay-spin .8s linear infinite;
  z-index: 4;
}

/* Form errors / messages */
.alert { padding: 14px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: .95rem; }
.alert--error { background: #FDECEA; border: 1.5px solid var(--danger); color: #7B1F1A; }
.alert--success { background: #E8F5E9; border: 1.5px solid var(--success); color: #2D5A30; }
.alert ul { margin: 6px 0 0 18px; padding: 0; }

/* Client-side validation hata stilleri */
.field--invalid input,
.field--invalid select,
.field--invalid textarea {
  border-color: var(--danger) !important;
  background: #FFF5F5 !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}
.field--invalid .radio-pill span,
.field--invalid .photo-slot {
  border-color: var(--danger) !important;
}
.field--invalid label .req,
.field--invalid > legend {
  color: var(--danger);
}
.field-error {
  display: block;
  margin-top: 6px;
  color: var(--danger);
  font-size: .87rem;
  font-weight: 500;
  line-height: 1.4;
  animation: rv-error-slide-in .25s ease;
}
@keyframes rv-error-slide-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Validation summary alert üstte sticky değil, formun başında */
.form-validation-summary {
  scroll-margin-top: 80px;
}

/* Honeypot */
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Form gönderim overlay'i — submit anında full-screen */
.form-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(44, 24, 16, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 20px;
}
.form-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.form-overlay__card {
  background: linear-gradient(135deg, #fff 0%, var(--secondary-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  max-width: 380px; width: 100%;
  box-shadow: 0 24px 64px rgba(142, 44, 74, 0.4);
  animation: form-overlay-pop .35s ease;
}
@keyframes form-overlay-pop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.form-overlay__heart {
  font-size: 3.4rem; line-height: 1;
  animation: form-overlay-beat 1.2s ease-in-out infinite;
}
@keyframes form-overlay-beat {
  0%, 100% { transform: scale(1); }
  15%      { transform: scale(1.18); }
  30%      { transform: scale(0.96); }
  45%      { transform: scale(1.10); }
  60%      { transform: scale(1); }
}
.form-overlay__spinner {
  width: 36px; height: 36px;
  margin: 18px auto 4px;
  border: 3px solid var(--secondary);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: form-overlay-spin .9s linear infinite;
}
@keyframes form-overlay-spin {
  to { transform: rotate(360deg); }
}
.form-overlay__title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-size: 1.45rem;
  margin: 14px 0 8px;
}
.form-overlay__text {
  color: var(--text-soft);
  font-size: .95rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: linear-gradient(180deg, var(--secondary-soft) 0%, var(--secondary) 100%);
  margin-top: 80px;
}
.site-footer__grid {
  display: grid; gap: 32px; padding: 56px 20px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h4 { color: var(--primary); margin-bottom: 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: var(--text-soft); }
.site-footer a:hover { color: var(--primary); }
.site-footer a.btn--primary { color: #fff; background: var(--primary); }
.site-footer a.btn--primary:hover { color: #fff; background: var(--primary-dark); }
.site-footer a.btn--gold { color: #fff; }
.site-footer__brand p { color: var(--text-soft); font-size: .94rem; margin-bottom: 12px; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge { display: inline-block; background: #fff; color: var(--primary); padding: 4px 10px; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.contact-list li { font-size: .95rem; color: var(--text-soft); }
.site-footer__bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; }
.site-footer__bottom small { color: var(--text-muted); }

/* ---------------- Pages ---------------- */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-soft) 100%);
  padding: 60px 0 50px; text-align: center;
}
.page-hero h1 { margin-bottom: 6px; }
.page-hero p { color: var(--text-soft); max-width: 640px; margin: 0 auto; }

.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.prose h2 { margin-top: 1.6em; color: var(--primary); }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 1em; }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  border-left: 4px solid var(--primary); padding: 4px 0 4px 18px;
  margin: 1.2em 0; color: var(--text-soft); font-style: italic;
}

/* Breadcrumb */
.breadcrumb {
  font-size: .88rem; color: var(--text-muted); padding: 16px 0; border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span.sep { margin: 0 8px; color: var(--border); }

/* Blog list */
.blog-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card h3 { margin: 0; font-size: 1.2rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--text-soft); font-size: .95rem; margin: 0; flex-grow: 1; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: .9rem; margin-top: auto; }

/* Inline CTA in blog */
.inline-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; padding: 28px 24px; border-radius: var(--radius-lg);
  text-align: center; margin: 32px 0; box-shadow: var(--shadow-md);
}
.inline-cta h3 { color: #fff; margin: 0 0 10px; font-size: 1.3rem; }
.inline-cta p { color: rgba(255,255,255,.92); margin: 0 0 16px; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.no-wrap { white-space: nowrap; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
