:root {
  interpolate-size: allow-keywords;
  --bg: #FDF8F3;
  --surface: #FFFFFF;
  --ink: #2D2D2D;
  --accent: #E8456B;
  --accent-2: #6EC5B8;
  --accent-soft: rgba(232,69,107,0.08);
  --accent2-soft: rgba(110,197,184,0.08);
  --line: rgba(45,45,45,0.10);
  --line-strong: rgba(45,45,45,0.18);
  --shadow-sm: 0 2px 8px rgba(45,45,45,0.06);
  --shadow-md: 0 8px 24px rgba(45,45,45,0.08);
  --shadow-lg: 0 16px 48px rgba(45,45,45,0.12);
  --shadow-accent: 0 12px 32px rgba(232,69,107,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --header-h: 72px;
  --container-max: 1320px;
  --container-pad: clamp(16px, 4vw, 32px);
  --font-heading: 'Cambria', Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --transition-base: 240ms cubic-bezier(.4,0,.2,1);
  --transition-spring: 320ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@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;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--surface);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Focus Ring */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(232,69,107,0.12);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(253,248,243,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0;
  z-index: 1;
  border-radius: 0 1px 1px 0;
}
.site-header.scrolled {
  background: rgba(253,248,243,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1100;
}
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  transition: color var(--transition-base);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 360ms cubic-bezier(.16,.73,.23,1), left 360ms cubic-bezier(.16,.73,.23,1);
  border-radius: 1px;
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; left: 0; }
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  transition: background 300ms cubic-bezier(.16,.73,.23,1), color 200ms, transform 300ms cubic-bezier(.16,.73,.23,1), box-shadow 300ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,69,107,0.2);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  position: relative;
  border-radius: 10px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.nav-toggle:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(232,69,107,0.12);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  position: absolute;
}
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] { border-color: var(--accent); background: var(--accent-soft); }
.nav-toggle[aria-expanded="true"] span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile Drawer */
.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; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.16,.73,.23,1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ink);
  background: var(--bg);
  border-radius: 12px;
  border: 1.5px solid var(--line);
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  z-index: 1;
}
.drawer-close:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}
.mobile-drawer a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color var(--transition-base), transform var(--transition-base);
}
.mobile-drawer a:hover { color: var(--accent); transform: translateX(4px); }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta-mobile {
  margin-top: 24px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  border-radius: 100px;
  padding: 16px;
  font-weight: 600;
  border: none;
}
.mobile-drawer .nav-cta-mobile:hover { background: var(--ink); color: var(--surface); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }

/* ===== HERO ===== */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-text .eyebrow { margin-bottom: 16px; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 span { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(45,45,45,0.72);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 8px;
}
.hero-stat {
  text-align: left;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(45,45,45,0.6);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-img-wrap {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Confetti Particles */
.confetti-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: confetti-float 12s infinite ease-in-out;
}
.confetti-particle:nth-child(1) { width: 10px; height: 10px; background: var(--accent); top: 10%; left: 5%; animation-delay: 0s; }
.confetti-particle:nth-child(2) { width: 8px; height: 8px; background: var(--accent-2); top: 20%; right: 10%; animation-delay: -2s; }
.confetti-particle:nth-child(3) { width: 12px; height: 12px; background: #F7C948; top: 60%; left: 8%; animation-delay: -4s; }
.confetti-particle:nth-child(4) { width: 6px; height: 6px; background: var(--accent); top: 80%; right: 20%; animation-delay: -6s; }
.confetti-particle:nth-child(5) { width: 9px; height: 9px; background: var(--accent-2); top: 40%; left: 50%; animation-delay: -8s; }
.confetti-particle:nth-child(6) { width: 7px; height: 7px; background: #F2A4B5; top: 70%; right: 5%; animation-delay: -3s; }
.confetti-particle:nth-child(7) { width: 11px; height: 11px; background: #B8E6DF; top: 15%; left: 70%; animation-delay: -5s; }
.confetti-particle:nth-child(8) { width: 5px; height: 5px; background: var(--accent); top: 90%; left: 30%; animation-delay: -7s; }

@keyframes confetti-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  25% { transform: translate(12px, -18px) rotate(90deg); opacity: 0.7; }
  50% { transform: translate(-8px, -30px) rotate(180deg); opacity: 0.4; }
  75% { transform: translate(15px, -12px) rotate(270deg); opacity: 0.6; }
}

/* Ice Cream Blob */
.ice-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: blob-drift 15s infinite ease-in-out;
  z-index: 0;
}
.ice-blob--1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 20%; right: 5%;
  animation-delay: 0s;
}
.ice-blob--2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  bottom: 10%; left: 40%;
  animation-delay: -5s;
}
.ice-blob--3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #F7C948 0%, transparent 70%);
  top: 50%; left: 15%;
  animation-delay: -10s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

/* Sprinkle Dots Pattern */
.sprinkle-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sprinkle-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    radial-gradient(circle 2px, rgba(232,69,107,0.15) 1px, transparent 1px),
    radial-gradient(circle 1.5px, rgba(110,197,184,0.12) 1px, transparent 1px),
    radial-gradient(circle 1px, rgba(247,201,72,0.1) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px, 40px 40px;
  background-position: 0 0, 30px 30px, 15px 45px;
  animation: sprinkle-move 30s linear infinite;
}
@keyframes sprinkle-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 300px; margin-top: 32px; }
  .hero-img-wrap { max-width: 280px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: background 300ms cubic-bezier(.16,.73,.23,1), color 200ms, transform 300ms cubic-bezier(.16,.73,.23,1), box-shadow 300ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(232,69,107,0.22);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--line-strong);
  transition: background 300ms cubic-bezier(.16,.73,.23,1), color 200ms, border-color 300ms, transform 300ms cubic-bezier(.16,.73,.23,1);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.btn-ghost:active { transform: translateY(-1px); }

/* ===== SECTIONS ===== */
section {
  padding: clamp(60px, 10vw, 100px) 0;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header p {
  margin-top: 12px;
  color: rgba(45,45,45,0.65);
  font-size: 15px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms cubic-bezier(.16,.73,.23,1);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius) + 1.5px);
  background: linear-gradient(135deg, rgba(232,69,107,0.25), rgba(110,197,184,0.25), rgba(247,201,72,0.15));
  z-index: -1;
  transition: opacity 400ms;
}
.service-card:hover::before { opacity: 1.5; }
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(232,69,107,0.12), 0 8px 24px rgba(45,45,45,0.08);
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 400ms, transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms;
}
.service-card:hover .service-card-icon {
  background: rgba(232,69,107,0.15);
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(232,69,107,0.15);
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 14px; color: rgba(45,45,45,0.65); line-height: 1.6; }

/* Confetti dot overlay on service cards */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background-image:
    radial-gradient(circle 2px, rgba(232,69,107,0.2) 1px, transparent 1px),
    radial-gradient(circle 1.5px, rgba(110,197,184,0.15) 1px, transparent 1px);
  background-size: 12px 12px, 8px 8px;
  background-position: 0 0, 4px 4px;
  border-radius: 0 var(--radius) 0 0;
  opacity: 0.6;
}

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step-counter;
}
.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  counter-increment: step-counter;
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(110,197,184,0.2);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--accent-2);
  color: var(--surface);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms;
}
.step-card:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(110,197,184,0.3);
}
.step-card h3 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 13px; color: rgba(45,45,45,0.6); }

/* Connector line between steps */
@media (min-width: 769px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-2), transparent);
    border-radius: 1px;
  }
}

@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.package-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid var(--line);
  text-align: center;
  position: relative;
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms, border-color 400ms;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(45,45,45,0.1);
  border-color: var(--accent-2);
}
.package-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.package-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.package-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.package-card .package-desc { font-size: 13px; color: rgba(45,45,45,0.6); margin-bottom: 20px; }
.package-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.package-price small { font-size: 14px; font-weight: 400; color: rgba(45,45,45,0.5); }
.package-note { font-size: 11px; color: rgba(45,45,45,0.45); margin-bottom: 20px; }
.package-features {
  text-align: left;
  margin-bottom: 24px;
}
.package-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  flex-shrink: 0;
}
.package-card .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

@media (max-width: 768px) { .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ===== GALLERY ===== */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms;
}
.gallery-item img {
  width: 100%; height: auto;
  display: block;
}
.gallery-placeholder {
  background: linear-gradient(135deg, rgba(232,69,107,0.08), rgba(110,197,184,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45,45,45,0.3);
  font-size: 13px;
}

@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

/* ===== CTA / TEKLIF SECTION ===== */
.teklif-section {
  background: linear-gradient(135deg, rgba(232,69,107,0.06), rgba(110,197,184,0.04), rgba(247,201,72,0.03));
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.teklif-section .container { position: relative; z-index: 1; }
.teklif-inner {
  max-width: 560px;
  margin: 0 auto;
}
.teklif-inner h2 { margin-bottom: 16px; }
.teklif-inner p { color: rgba(45,45,45,0.65); margin-bottom: 28px; }
.teklif-keys {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.teklif-key {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.teklif-key::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
}

/* ===== FORM (iletisim.html) ===== */
.form-section { padding: clamp(60px, 10vw, 100px) 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: rgba(45,45,45,0.65); margin-bottom: 32px; }
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-channel {
  display: contents;
}
.contact-channel-icon {
  width: 22px; height: 22px;
  color: var(--ink);
  transition: color var(--transition-base), transform var(--transition-base);
}
.contact-channel-content {
  transition: transform var(--transition-base);
}
.contact-channel:hover .contact-channel-icon { color: var(--accent); transform: scale(1.08); }
.contact-channel:hover .contact-channel-content { transform: translateX(4px); }
.contact-channel-content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-channel-content span,
.contact-channel-content a {
  font-size: 14px;
  color: rgba(45,45,45,0.7);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel-content a:hover { color: var(--accent); }

.form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
}
.form-wrap h3 { margin-bottom: 24px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xs);
  font: inherit;
  font-size: 14px;
  background: var(--bg);
  transition: border-color 300ms, box-shadow 300ms, background 300ms;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--line-strong);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,69,107,0.1), 0 4px 12px rgba(232,69,107,0.06);
  background: var(--surface);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: auto; }

.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: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.is-visible { display: block; }
.form-success svg { margin: 0 auto 16px; }
.form-success h3 { color: var(--accent-2); margin-bottom: 8px; }
.form-success p { color: rgba(45,45,45,0.65); font-size: 14px; }
.form-error {
  background: rgba(232,69,107,0.08);
  color: var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.form-error.is-visible { display: block; }

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--surface);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition-base);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-bottom a { transition: color var(--transition-base); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .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: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 -4px 32px rgba(45,45,45,0.14), var(--shadow-lg);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 300ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 13px;
  color: rgba(45,45,45,0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept { background: var(--ink); color: var(--surface); }
.cookie-btn--accept:hover { background: var(--accent); color: var(--surface); }
.cookie-btn--reject { background: var(--surface); color: var(--ink); border: 2.5px solid var(--ink); font-weight: 700; box-shadow: inset 0 0 0 1px rgba(45,45,45,0.1); }
.cookie-btn--reject:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-btn--settings { background: transparent; color: rgba(45,45,45,0.6); padding: 10px 16px; }
.cookie-btn--settings:hover { color: var(--ink); background: var(--accent-soft); }

@media (min-width: 769px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
@media (max-width: 480px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 20px 16px; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .cookie-btns { gap: 8px; }
  .cookie-btn { padding: 12px 18px; min-height: 48px; font-size: 14px; }
}


/* ===== REVEAL (base — overridden by enhanced section) ===== */
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: clamp(40px, 8vw, 80px) 0;
}
.page-content h1 { margin-bottom: 32px; }
.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.page-content h2::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.page-content h3 { margin-top: 28px; margin-bottom: 12px; font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(45,45,45,0.85); }
.page-content p { margin-bottom: 16px; color: rgba(45,45,45,0.8); max-width: 720px; line-height: 1.7; }
.page-content ul, .page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.page-content li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(45,45,45,0.75);
  line-height: 1.7;
}
.page-content ol li { list-style: decimal; }
.page-content a { color: var(--accent); text-decoration: underline; transition: color var(--transition-base); }
.page-content a:hover { color: var(--ink); }
.page-content .eyebrow + h1 + h2 { border-top: none; padding-top: 0; }
.page-content .eyebrow + h1 + h2::before { display: none; }

/* ===== TABLE SCROLL ===== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line, rgba(0,0,0,0.12));
  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-scroll table {
  border-collapse: collapse;
}
.table-scroll th,
.table-scroll td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  background: var(--bg);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== FAQ / DETAILS ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 300ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  transition: transform 400ms cubic-bezier(.16,.73,.23,1);
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); background: rgba(232,69,107,0.15); }
.faq-item > .answer {
  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] > .answer {
  height: auto;
  padding-block-end: 26px;
}
.faq-item .answer p { font-size: 14px; color: rgba(45,45,45,0.7); line-height: 1.7; }

/* ===== DRIP DIVIDER (niche animation) ===== */
.drip-divider {
  height: 40px;
  position: relative;
  overflow: hidden;
}
.drip-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,0 C100,0 150,30 200,30 C250,30 300,0 400,0 C500,0 550,25 600,25 C650,25 700,0 800,0 C900,0 950,20 1000,20 C1050,20 1100,0 1200,0 L1200,40 L0,40 Z' fill='%23FDF8F3'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 40px;
}

/* ===== WAFFLE PATTERN (niche hover on cards) ===== */
.service-card:hover::after {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(232,69,107,0.06) 4px, rgba(232,69,107,0.06) 5px),
    repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(110,197,184,0.06) 4px, rgba(110,197,184,0.06) 5px);
  background-size: auto;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0; right: 0;
  border-radius: var(--radius);
}

/* ===== ICE CREAM SCOOP ANIMATION ON CTA ===== */
@keyframes scoop-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(3deg); }
}
.btn-primary svg {
  animation: scoop-bounce 2s ease-in-out infinite;
  animation-play-state: paused;
}
.btn-primary:hover svg { animation-play-state: running; }

/* ===== SITEMAP PAGE ===== */
.sitemap-links {
  columns: 2;
  column-gap: 40px;
}
.sitemap-links li {
  break-inside: avoid;
  margin-bottom: 12px;
  list-style: none;
  padding-left: 0;
}
.sitemap-links a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition-base);
}
.sitemap-links a:hover { color: var(--accent); }

@media (max-width: 480px) { .sitemap-links { columns: 1; } }

/* ===== 404 PAGE ===== */
.page-404 {
  text-align: center;
  padding: clamp(80px, 15vw, 160px) 0;
}
.page-404 h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--accent); margin-bottom: 16px; }
.page-404 p { font-size: 18px; color: rgba(45,45,45,0.6); margin-bottom: 32px; }

/* ===== WARM GLOW ANIMATIONS (ice cream theme) ===== */
@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,69,107,0); }
  50% { box-shadow: 0 0 24px 4px rgba(232,69,107,0.08); }
}
.package-card--featured { animation: warm-pulse 4s ease-in-out infinite; }


/* ===== ENHANCED ANIMATIONS & HOVER ===== */

/* Smoother stagger reveal with scale */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 700ms cubic-bezier(.16,.73,.23,1), transform 700ms cubic-bezier(.16,.73,.23,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger { transition-delay: calc(var(--i, 0) * 120ms); }

/* Service card warm glow on hover */
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 48px rgba(232,69,107,0.12),
    0 8px 24px rgba(45,45,45,0.08),
    0 0 0 1px rgba(232,69,107,0.08);
}
@keyframes icon-wobble {
  0%, 100% { transform: scale(1.1) rotate(-3deg); }
  50% { transform: scale(1.12) rotate(2deg); }
}
.service-card:hover .service-card-icon {
  background: rgba(232,69,107,0.15);
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(232,69,107,0.15);
  animation: icon-wobble 1.5s ease-in-out infinite;
}

/* Step card warm hover */
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(110,197,184,0.2), 0 0 0 1px rgba(110,197,184,0.1);
}
@keyframes step-pulse {
  0%, 100% { transform: scale(1.15); box-shadow: 0 6px 20px rgba(110,197,184,0.3); }
  50% { transform: scale(1.2); box-shadow: 0 8px 28px rgba(110,197,184,0.4); }
}
.step-card:hover .step-num {
  animation: step-pulse 2s ease-in-out infinite;
}

/* Package card hover with warm border glow */
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(45,45,45,0.1), 0 0 0 1px rgba(110,197,184,0.15);
  border-color: var(--accent-2);
}

/* Gallery item hover — warm ice-cream overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,69,107,0.1), rgba(247,201,72,0.08));
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.16,.73,.23,1);
  pointer-events: none;
  border-radius: var(--radius-sm);
}
.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(232,69,107,0.16);
}
.gallery-item:hover::after { opacity: 1; }

/* FAQ item interaction */
.faq-item summary {
  transition: color 300ms, padding-left 300ms cubic-bezier(.16,.73,.23,1);
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 8px;
}
.faq-item summary::after {
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), background 300ms;
}
.faq-item summary:hover::after {
  background: rgba(232,69,107,0.15);
}

/* Teklif section CTA warm pulse */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,69,107,0); }
  50% { box-shadow: 0 0 24px 8px rgba(232,69,107,0.12); }
}
.teklif-section .btn-primary {
  animation: cta-glow 3s ease-in-out infinite;
}
.teklif-section .btn-primary:hover {
  animation: none;
  box-shadow: 0 14px 36px rgba(232,69,107,0.25);
}

/* Footer link hover slide effect */
.footer-col a {
  position: relative;
  padding-left: 0;
  transition: color var(--transition-base), padding-left 300ms cubic-bezier(.16,.73,.23,1);
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Contact channel hover glow */
.contact-channel:hover .contact-channel-icon {
  color: var(--accent);
  transform: scale(1.08);
  filter: drop-shadow(0 2px 8px rgba(232,69,107,0.2));
}

/* Hero image floating effect */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-img-wrap {
  animation: hero-float 6s ease-in-out infinite;
}
.hero-img-wrap:hover {
  animation-play-state: paused;
  box-shadow: 0 24px 64px rgba(232,69,107,0.16), var(--shadow-lg);
}

/* Hero stats counter feel */
.hero-stat strong {
  transition: color 300ms, transform 300ms cubic-bezier(.16,.73,.23,1);
}
.hero-stat:hover strong {
  color: var(--accent);
  transform: scale(1.05);
}

/* ===== ABOUT PAGE CARDS ===== */
.about-section-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 24px;
  border: 1.5px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(.16,.73,.23,1), box-shadow 400ms, border-color 400ms;
}
.about-section-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 400ms;
}
.about-section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,69,107,0.08), 0 4px 16px rgba(45,45,45,0.06);
  border-color: rgba(232,69,107,0.2);
}
.about-section-card:hover::before { opacity: 1; }
.about-section-card h2 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}
.about-section-card h2::before { display: none !important; }
.about-section-card p:last-child { margin-bottom: 0; }

/* ===== LEGAL PAGE CARD WRAPPER ===== */
.page-content:not(:has(.about-section-card)) > .container {
  background: var(--surface);
  padding-top: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.page-content:not(:has(.about-section-card)) > .container > h2 {
  border-top-color: var(--line);
}
.page-content:not(:has(.about-section-card)) > .container > h2::before {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* ===== TOUCH ACTIVE STATES ===== */
@media (hover: none) and (pointer: coarse) {
  .service-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(232,69,107,0.1);
  }
  .step-card:active { transform: scale(0.97); }
  .package-card:active { transform: scale(0.98); }
  .gallery-item:active { transform: scale(0.97); }
  .btn-primary:active { transform: scale(0.96); }
  .btn-ghost:active { transform: scale(0.96); }
  .faq-item summary:active { color: var(--accent); }
  .about-section-card:active { transform: scale(0.98); }
}

/* Cream shimmer on service card icon hover */
@keyframes cream-shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.service-card:hover::before {
  background: linear-gradient(
    135deg,
    rgba(232,69,107,0.15),
    rgba(253,248,243,0.3),
    rgba(110,197,184,0.15),
    rgba(247,201,72,0.1)
  );
  background-size: 200% 200%;
  animation: cream-shimmer 3s ease infinite;
}

/* Warm vapor on gallery hover */
@keyframes warm-vapor {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20px); }
}
.gallery-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 40px;
  background: linear-gradient(to top, rgba(253,248,243,0.6), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: opacity 500ms;
}
.gallery-item:hover::before {
  opacity: 1;
  animation: warm-vapor 2.5s ease-in-out infinite;
}

/* Scoop drop on package card CTA */
.package-card .btn-primary {
  position: relative;
  overflow: hidden;
}
.package-card .btn-primary::before {
  content: '';
  position: absolute;
  top: -100%; left: 50%;
  width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: top 500ms cubic-bezier(.16,.73,.23,1), opacity 300ms;
}
.package-card .btn-primary:hover::before {
  top: 20%;
  opacity: 1;
}

/* Sprinkle trail on step card hover */
.step-card::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 40px; height: 40px;
  background-image:
    radial-gradient(circle 2px, rgba(110,197,184,0.2) 1px, transparent 1px),
    radial-gradient(circle 1.5px, rgba(232,69,107,0.15) 1px, transparent 1px);
  background-size: 10px 10px, 7px 7px;
  background-position: 0 0, 3px 3px;
  opacity: 0;
  transition: opacity 400ms;
  border-radius: 0 var(--radius) 0 0;
  pointer-events: none;
}
.step-card:hover::before { opacity: 1; }

/* Teklif section warm particles */
.teklif-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 3px, rgba(232,69,107,0.08) 1px, transparent 1px),
    radial-gradient(circle 2px, rgba(110,197,184,0.06) 1px, transparent 1px),
    radial-gradient(circle 1.5px, rgba(247,201,72,0.05) 1px, transparent 1px);
  background-size: 60px 60px, 45px 45px, 30px 30px;
  background-position: 0 0, 20px 20px, 10px 30px;
  pointer-events: none;
  z-index: 0;
}

/* FAQ warm open state */
.faq-item[open] {
  background: linear-gradient(135deg, rgba(232,69,107,0.02), rgba(110,197,184,0.02));
  border-radius: var(--radius-xs);
  padding: 0 16px;
  margin: 0 -16px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .confetti-particle, .ice-blob, .sprinkle-bg::before { animation: none !important; }
  .btn-primary svg { animation: none !important; }
  .service-card, .step-card, .package-card, .gallery-item,
  .about-section-card, .faq-item summary { transition: none !important; }
  .service-card:hover .service-card-icon { animation: none !important; }
  .service-card:hover::before { animation: none !important; }
  .step-card:hover .step-num { animation: none !important; }
  .package-card--featured { animation: none !important; }
  .teklif-section .btn-primary { animation: none !important; }
  .hero-img-wrap { animation: none !important; }
  .faq-item > .answer { transition: none !important; }
  .gallery-item:hover::before { animation: none !important; }
  .gallery-item::before, .gallery-item::after { transition: none !important; }
  .step-card::before { transition: none !important; }
  .package-card .btn-primary::before { transition: none !important; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
