/* ═══════════════════════════════════════════
   Sürpriz Kutlama — styles.css
   ═══════════════════════════════════════════ */

/* ── interpolate-size for details animation ── */
:root {
  interpolate-size: allow-keywords;

  --bg: #EEF0F5;
  --surface: #D8DCE6;
  --surface-2: #CDD2DE;
  --ink: #2C2C3A;
  --accent: #D4637A;
  --accent-2: #5B7BA5;
  --line: rgba(44,44,58,0.12);
  --header-h: 72px;
  --container-max: 1180px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --radius: 10px;
  --radius-lg: 16px;
}

/* ── Reset ── */
*, *::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: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  z-index: 9999; font-size: 0.875rem; font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

.cursive-sub {
  font-family: 'Segoe Script', 'Apple Chancery', cursive;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

p { max-width: 68ch; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--ink); color: var(--bg);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
  position: relative; overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -8px rgba(212,99,122,0.45), 0 0 0 3px rgba(212,99,122,0.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(212,99,122,0.05); color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(212,99,122,0.15);
}
.btn-ghost:active { transform: translateY(0); box-shadow: none; }

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(238,240,245,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: #EEF0F5;
  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;
  width: 100%; max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Logo */
.logo {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  z-index: 1100;
}
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }

/* Desktop nav */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  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 {
  padding: 8px 20px;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative; z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: rgba(44,44,58,0.10);
  border-radius: 8px;
  border: 1.5px solid rgba(44,44,58,0.18);
  transition: background 240ms, border-color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(212,99,122,0.08);
  border-color: rgba(212,99,122,0.18);
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle span {
  display: block;
  width: 22px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, width 240ms;
  transform-origin: center;
}
.nav-toggle:hover span:nth-child(2) { width: 16px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Drawer close button ── */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1;
  color: var(--ink);
  background: rgba(44,44,58,0.08);
  border-radius: 8px;
  border: 1.5px solid rgba(44,44,58,0.12);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1);
  z-index: 10;
}
.drawer-close:hover { background: rgba(212,99,122,0.10); color: var(--accent); }
.drawer-close:active { transform: scale(0.92); }

/* ── Scroll progress bar ── */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  z-index: 1;
  pointer-events: none;
}

/* ── Mobile drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 24px) 32px 32px;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer a {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, transform 240ms;
}
.mobile-drawer a:hover { color: var(--accent); transform: translateX(6px); }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  background: var(--accent); color: #fff;
  border-radius: var(--radius); font-weight: 600;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  transition: background 240ms, color 240ms;
}
.mobile-drawer .drawer-cta:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-drawer, .drawer-backdrop { display: none !important; }
}

/* ══════════════════════════════════════════
   MAIN
   ══════════════════════════════════════════ */
main { padding-top: var(--header-h); }

/* ── Section spacing ── */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.section--alt { background: var(--surface); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

/* ── Ribbon SVG divider ── */
.ribbon-divider {
  display: flex; align-items: center; justify-content: center;
  margin: clamp(2.5rem, 5vw, 4rem) auto;
  max-width: 320px;
}
.ribbon-divider svg { width: 100%; height: auto; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 60fr 40fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

/* Gift box lid animation */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.hero__img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(.2,.7,.2,1);
}
.hero.is-revealed .hero__img-wrap img { transform: scale(1); }

/* Gift box lid — clip-path */
.hero__lid {
  position: absolute; top: 0; left: 0; right: 0;
  height: 35%;
  background: var(--accent);
  z-index: 2;
  transform-origin: bottom center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), opacity 0.8s 0.6s;
  display: flex; align-items: center; justify-content: center;
}
.hero__lid::before {
  content: '';
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
}
.hero__lid-ribbon {
  width: 32px; background: rgba(255,255,255,0.35);
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
}
.hero__lid-bow {
  position: relative; z-index: 1;
}
.hero__lid-bow svg { width: 72px; height: 48px; }

.hero.is-revealed .hero__lid {
  transform: perspective(600px) rotateX(-85deg) translateY(-60px);
  opacity: 0;
}

.hero__content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 500px;
}
.hero__h1 {
  margin-bottom: 20px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 800ms 400ms cubic-bezier(.2,.7,.2,1), transform 800ms 400ms cubic-bezier(.2,.7,.2,1);
}
.hero.is-revealed .hero__h1 { opacity: 1; transform: none; }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(44,44,58,0.72);
  margin-bottom: 32px;
  max-width: 42ch;
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms 600ms cubic-bezier(.2,.7,.2,1), transform 700ms 600ms cubic-bezier(.2,.7,.2,1);
}
.hero.is-revealed .hero__sub { opacity: 1; transform: none; }

.hero__cta {
  opacity: 0; transform: translateY(20px);
  transition: opacity 600ms 800ms cubic-bezier(.2,.7,.2,1), transform 600ms 800ms cubic-bezier(.2,.7,.2,1);
}
.hero.is-revealed .hero__cta { opacity: 1; transform: none; }

.hero__keywords {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 600ms 1000ms;
}
.hero.is-revealed .hero__keywords { opacity: 1; }
.hero__keywords span {
  font-size: 0.8rem; font-weight: 500;
  color: var(--accent-2);
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__visual { min-height: 320px; height: 50vw; max-height: 400px; }
  .hero__content { min-height: auto; padding: clamp(1.5rem, 5vw, 2.5rem); }
}

/* ══════════════════════════════════════════
   #hikaye — Story
   ══════════════════════════════════════════ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.story-block:nth-child(even) { direction: rtl; }
.story-block:nth-child(even) > * { direction: ltr; }
.story-block__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.story-block__img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
}
.story-block__text p {
  margin-bottom: 18px;
  color: rgba(44,44,58,0.78);
  font-size: 1.02rem;
}
.story-block__text p:first-of-type::first-letter {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  margin: 4px 10px 0 0;
  color: var(--accent);
}

@media (max-width: 768px) {
  .story-block,
  .story-block:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* parallax effect (JS applies translateY) */
.parallax-img { transition: transform 100ms linear; will-change: transform; }

/* ══════════════════════════════════════════
   #hizmetler — Services
   ══════════════════════════════════════════ */
.services-flow {
  max-width: 720px;
  margin: 0 auto;
}
.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.5rem, 1.5vw, 1rem);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 280ms cubic-bezier(.16,.73,.24,.97), background 280ms, box-shadow 280ms;
}
.service-item:hover { transform: translateX(4px); }
.service-item:last-child { border-bottom: none; }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--accent);
  flex-shrink: 0;
  transition: background 260ms, transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms;
}
.service-item:hover .service-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 16px -4px rgba(212,99,122,0.35);
}
.service-icon svg { width: 26px; height: 26px; }
.service-item h3 { margin-bottom: 6px; }
.service-item p { color: rgba(44,44,58,0.72); font-size: 0.95rem; }

/* ══════════════════════════════════════════
   #surec — Process
   ══════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.process-card {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  background: #fff;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 280ms cubic-bezier(.16,.73,.24,.97), box-shadow 280ms, border-color 280ms;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(212,99,122,0.22), 0 0 0 1px rgba(212,99,122,0.06);
}
.process-num {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.process-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-card p { font-size: 0.9rem; color: rgba(44,44,58,0.68); margin: 0 auto; }

/* Arrow between cards */
.process-card:not(:last-child)::after {
  content: '';
  position: absolute; top: 50%; right: -1rem;
  width: 14px; height: 14px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   #fiyatlar — Pricing
   ══════════════════════════════════════════ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border: 1.5px solid var(--line);
  transition: transform 280ms cubic-bezier(.16,.73,.24,.97), box-shadow 280ms, border-color 280ms;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(212,99,122,0.25), 0 0 0 1px rgba(212,99,122,0.08);
  border-color: var(--accent);
}
.pricing-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(212,99,122,0.04) 0%, #fff 40%);
}
.pricing-card.is-featured::before {
  content: 'Popüler';
  position: absolute; top: 16px; right: -28px;
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.04em;
}
.pricing-label {
  font-weight: 600; font-size: 0.85rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-amount small {
  font-size: 0.45em; font-weight: 400;
  vertical-align: middle;
}
.pricing-desc {
  font-size: 0.88rem;
  color: rgba(44,44,58,0.65);
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none; text-align: left;
  margin-bottom: 24px;
}
.pricing-features li {
  padding: 6px 0;
  font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 8px;
  border-bottom: 1px solid rgba(44,44,58,0.06);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* Pricing table fallback */
.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 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-weight: 700;
  background: var(--surface);
  font-size: 0.85rem;
}
td { color: rgba(44,44,58,0.8); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(212,99,122,0.04); }

/* ══════════════════════════════════════════
   #iletisim — Contact (home)
   ══════════════════════════════════════════ */
.contact-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-home__text p {
  color: rgba(44,44,58,0.72);
  margin-bottom: 20px;
}
.contact-home__info { list-style: none; }
.contact-home__info li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: 10px 0;
  font-size: 0.95rem;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-home__info li:hover { transform: translateX(4px); }
.contact-home__info li svg {
  width: 20px; height: 20px;
  color: var(--accent-2);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.contact-home__info li:hover svg { color: var(--accent); transform: scale(1.08); }

@media (max-width: 768px) {
  .contact-home { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE FORM
   ══════════════════════════════════════════ */
.form-section { max-width: 680px; margin: 0 auto; }

.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,99,122,0.12);
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: auto; 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-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
}
.field-checkbox label {
  font-size: 0.85rem; font-weight: 400;
  color: rgba(44,44,58,0.78);
  margin-bottom: 0;
  cursor: pointer;
}

.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: #c0392b; }
.field.has-error .field-error { display: block; }

.form-success, .form-error-msg {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  display: none;
}
.form-success {
  background: rgba(46,204,113,0.1);
  color: #1e8449;
  border: 1px solid rgba(46,204,113,0.3);
}
.form-error-msg {
  background: rgba(192,57,43,0.08);
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.2);
}

.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Contact page channels */
.contact-channels {
  display: grid;
  gap: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms, box-shadow 240ms;
}
.contact-channel:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-channel svg {
  width: 20px; height: 20px;
  color: var(--accent-2);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 240ms, transform 240ms;
}
.contact-channel:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-channel strong {
  display: block;
  font-size: 0.82rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-channel span,
.contact-channel a {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 36ch; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  color: rgba(255,255,255,0.65);
  transition: color 240ms, transform 240ms;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }

.footer-bottom {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

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

/* ══════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.22);
  z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: rgba(44,44,58,0.68); margin-bottom: 16px; line-height: 1.55; }
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.82rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-accept {
  background: var(--ink); color: var(--bg);
  border: 1.5px solid var(--ink);
}
.cookie-accept:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-reject {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(44,44,58,0.35);
  font-weight: 600;
}
.cookie-reject:hover { background: var(--surface); color: var(--ink); border-color: var(--accent-2); }
.cookie-settings {
  background: transparent; color: rgba(44,44,58,0.55);
  border: 1.5px solid rgba(44,44,58,0.10);
  font-weight: 500;
}
.cookie-settings:hover { background: var(--surface); color: var(--ink); border-color: var(--accent-2); }

@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ══════════════════════════════════════════
   REVEAL ON SCROLL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,.73,.24,.97), transform 700ms cubic-bezier(.16,.73,.24,.97);
}
.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; }

/* Stagger — celebration-style cascading entrance */
.reveal[data-delay="1"] { transition-delay: 130ms; }
.reveal[data-delay="2"] { transition-delay: 260ms; }
.reveal[data-delay="3"] { transition-delay: 400ms; }
.reveal[data-delay="4"] { transition-delay: 540ms; }

/* ══════════════════════════════════════════
   THEME ANIMATIONS — niche-specific
   ══════════════════════════════════════════ */

/* 1. Confetti burst on CTA hover */
@keyframes confetti-pop {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  40% { opacity: 1; }
  100% { transform: scale(1.2) rotate(var(--r, 45deg)) translate(var(--tx, 20px), var(--ty, -30px)); opacity: 0; }
}
.btn-primary { position: relative; overflow: visible; }
.btn-primary .confetti {
  position: absolute; inset: 0;
  pointer-events: none;
}
.btn-primary .confetti i {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 1px;
  opacity: 0;
}
.btn-primary .confetti i:nth-child(odd) { border-radius: 50%; }
.btn-primary:hover .confetti i {
  animation: confetti-pop 700ms cubic-bezier(.16,.73,.24,.97) forwards;
}
.btn-primary .confetti i:nth-child(1) { left: 10%; top: 50%; background: var(--accent); --r: 120deg; --tx: -22px; --ty: -32px; animation-delay: 0ms; }
.btn-primary .confetti i:nth-child(2) { left: 30%; top: 30%; background: var(--accent-2); --r: -60deg; --tx: -10px; --ty: -40px; animation-delay: 50ms; }
.btn-primary .confetti i:nth-child(3) { left: 50%; top: 20%; background: #f0c040; --r: 200deg; --tx: 6px; --ty: -38px; animation-delay: 100ms; }
.btn-primary .confetti i:nth-child(4) { left: 70%; top: 30%; background: var(--accent); --r: -140deg; --tx: 20px; --ty: -34px; animation-delay: 60ms; }
.btn-primary .confetti i:nth-child(5) { left: 90%; top: 50%; background: var(--accent-2); --r: 90deg; --tx: 26px; --ty: -28px; animation-delay: 30ms; }
.btn-primary .confetti i:nth-child(6) { left: 20%; top: 80%; background: #f0c040; --r: 260deg; --tx: -14px; --ty: 28px; animation-delay: 80ms; }

/* 2. Gift-box jiggle on card hover */
@keyframes gift-jiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15% { transform: rotate(-6deg) scale(1.05); }
  30% { transform: rotate(5deg) scale(1.08); }
  45% { transform: rotate(-4deg) scale(1.05); }
  60% { transform: rotate(3deg) scale(1.02); }
  75% { transform: rotate(-1deg); }
}
.service-item:hover .service-icon svg { animation: gift-jiggle 500ms cubic-bezier(.2,.7,.2,1); }

/* 3. Sparkle float ambient in hero */
@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.8; }
  50% { transform: translateY(-24px) scale(1.4); opacity: 1; }
  80% { opacity: 0.6; }
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  25% { opacity: 1; transform: scale(1.2) rotate(45deg); }
  50% { opacity: 0.5; transform: scale(1) rotate(90deg); }
  75% { opacity: 0.9; transform: scale(1.3) rotate(135deg); }
}
.hero__sparkles {
  position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden;
}
.hero__sparkles i {
  position: absolute;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px 3px rgba(255,255,255,0.6), 0 0 2px 1px rgba(212,99,122,0.3);
  animation: sparkle-float var(--d, 3s) ease-in-out infinite, sparkle-twinkle calc(var(--d, 3s) * 0.7) linear infinite;
  animation-delay: var(--del, 0s);
  opacity: 0;
}
.hero__sparkles i:nth-child(even) {
  background: rgba(212,99,122,0.7);
  box-shadow: 0 0 8px 3px rgba(212,99,122,0.4), 0 0 2px 1px rgba(255,255,255,0.3);
}

/* 4. Ribbon wave on divider */
@keyframes ribbon-wave {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-3px) scaleX(1.02); }
}
.ribbon-divider svg {
  animation: ribbon-wave 8s ease-in-out infinite;
}

/* 5. Balloon rise on pricing "featured" */
@keyframes balloon-rise {
  0% { transform: translateY(8px); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 0.8; }
  100% { transform: translateY(8px); opacity: 0.4; }
}
.pricing-card.is-featured::after {
  content: '';
  position: absolute; top: 8px; left: 20px;
  width: 14px; height: 18px;
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.3;
  animation: balloon-rise 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary .confetti i,
  .service-item:hover .service-icon svg,
  .hero__sparkles i,
  .ribbon-divider svg,
  .pricing-card.is-featured::after {
    animation: none !important;
  }
}

/* ══════════════════════════════════════════
   FAQ (details) — pure CSS
   ══════════════════════════════════════════ */
.faq-item summary {
  cursor: pointer;
  font-family: Georgia, 'Palatino Linotype', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 40px 18px 0;
  position: relative;
  list-style: none;
  border-bottom: 1px solid var(--line);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 300;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ══════════════════════════════════════════
   LEGAL / POLICY PAGES
   ══════════════════════════════════════════ */
.legal-content {
  max-width: 760px; margin: 0 auto;
  line-height: 1.7;
}
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p { margin-bottom: 1rem; color: rgba(44,44,58,0.78); }
.legal-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
  color: rgba(44,44,58,0.78);
}
.legal-content ul li { margin-bottom: 0.5rem; }

/* ══════════════════════════════════════════
   SITE MAP PAGE
   ══════════════════════════════════════════ */
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list li a { font-weight: 500; transition: color 240ms; }
.sitemap-list li a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════ */
.page-404 {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1rem;
}
.page-404 .big-num {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700; color: var(--accent);
  opacity: 0.2; line-height: 1;
}
.page-404 p { margin: 16px 0 28px; color: rgba(44,44,58,0.65); }

/* ══════════════════════════════════════════
   ABOUT PAGE — visual hierarchy
   ══════════════════════════════════════════ */
.about-content > .reveal {
  background: rgba(255,255,255,0.45);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(44,44,58,0.05);
  transition: transform 300ms cubic-bezier(.16,.73,.24,.97), box-shadow 300ms, border-color 300ms;
}
.about-content > .reveal:hover {
  transform: translateY(-3px);
}
.about-content h2 {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  margin-top: 0;
  margin-bottom: 1.15rem;
}
.about-content p {
  line-height: 1.78;
}
.about-content p strong {
  color: var(--ink);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   COOKIE BANNER — mobile refinements
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .cookie-banner {
    left: 8px; right: 8px; bottom: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    padding: 16px 18px;
    border-radius: var(--radius);
  }
  .cookie-actions { gap: 6px; }
  .cookie-actions button {
    font-size: 0.84rem;
    padding: 12px 14px;
    min-height: 46px;
  }
  .cookie-accept {
    flex: 1.4;
  }
}

/* ══════════════════════════════════════════
   ENHANCED CELEBRATION MICRO-EFFECTS
   ══════════════════════════════════════════ */

/* Warm glow pulse on featured pricing */
@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,99,122,0), 0 0 0 1px var(--accent); }
  50% { box-shadow: 0 0 28px 4px rgba(212,99,122,0.12), 0 0 0 1px var(--accent); }
}
.pricing-card.is-featured {
  animation: warm-pulse 5s ease-in-out infinite;
}
.pricing-card.is-featured:hover {
  animation: none;
}

/* Celebration sparkle trail on btn-primary focus-visible */
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 8px 28px -8px rgba(212,99,122,0.45), 0 0 0 5px rgba(212,99,122,0.1);
}

/* Contact channel — warm accent line on hover */
.contact-channel:hover {
  box-shadow: inset 3px 0 0 var(--accent), 0 2px 12px -6px rgba(212,99,122,0.10);
}

/* Stagger delays 5–8 for longer lists */
.reveal[data-delay="5"] { transition-delay: 680ms; }
.reveal[data-delay="6"] { transition-delay: 820ms; }
.reveal[data-delay="7"] { transition-delay: 960ms; }

/* Gentle float for process step numbers */
@keyframes num-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.process-card:hover .process-num {
  animation: num-float 1.8s ease-in-out infinite;
  opacity: 0.5;
  color: var(--accent);
}

/* Process card — celebration-themed lift with warm glow */
.process-card {
  border: 1.5px solid transparent;
}
.process-card:hover {
  border-color: rgba(212,99,122,0.15);
  box-shadow: 0 16px 40px -12px rgba(212,99,122,0.22), 0 0 0 1px rgba(212,99,122,0.06), inset 0 -2px 0 rgba(212,99,122,0.10);
}

/* Footer link hover — warm underline */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::after { width: 100%; }

/* Service item — celebration warmth on hover */
.service-item:hover {
  background: rgba(212,99,122,0.03);
  box-shadow: inset 3px 0 0 var(--accent);
}

/* Hero CTA — subtle breathing glow */
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 4px 16px -6px rgba(44,44,58,0.2); }
  50% { box-shadow: 0 6px 24px -4px rgba(212,99,122,0.3); }
}
.hero__cta .btn-primary {
  animation: cta-breathe 4s ease-in-out infinite 2s;
}
.hero__cta .btn-primary:hover {
  animation: none;
}

/* Story image — warm border glow on hover */
.story-block__img {
  transition: box-shadow 400ms cubic-bezier(.2,.7,.2,1);
}
.story-block__img:hover {
  box-shadow: 0 12px 40px -8px rgba(212,99,122,0.20), 0 0 0 2px rgba(212,99,122,0.10);
}

/* Pricing card ghost buttons — celebration hover */
.pricing-card .btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(212,99,122,0.06);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(212,99,122,0.18);
}

/* About page cards — left border glow on hover */
.about-content > .reveal:hover {
  border-color: rgba(212,99,122,0.18);
  box-shadow: 0 8px 32px -12px rgba(212,99,122,0.16), inset 3px 0 0 var(--accent);
}

/* Reduced-motion: disable all celebration animations */
@media (prefers-reduced-motion: reduce) {
  .pricing-card.is-featured,
  .process-card:hover .process-num,
  .hero__cta .btn-primary {
    animation: none !important;
  }
  .about-content > .reveal:hover,
  .btn-ghost:hover,
  .btn-ghost:focus-visible,
  .pricing-card .btn-ghost:hover,
  .btn-primary:hover,
  .process-card:hover,
  .pricing-card:hover,
  .service-item:hover,
  .nav-toggle:active { transform: none !important; }
  .story-block__img:hover { box-shadow: none; }
}

/* ══════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
