:root {
  --bg: #F7F9F8;
  --surface: #FFFFFF;
  --surface-2: #EEF2F0;
  --ink: #1A2B2A;
  --ink-soft: #4A5F5E;
  --accent: #2A7D6B;
  --accent-2: #D4A853;
  --line: rgba(26,43,42,0.12);
  --line-strong: rgba(26,43,42,0.24);
  --header-h: 72px;
  --ff-heading: 'DM Sans', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --ff-body: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  --radius-sm: 3px;
  --radius-md: 6px;
  interpolate-size: allow-keywords;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -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(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; z-index: 10000;
}
.skip-link:focus { top: 8px; }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

p { max-width: 68ch; }
.text-soft { color: var(--ink-soft); }

/* ===== CONTAINER / LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

section {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head p { margin-top: 12px; color: var(--ink-soft); }

/* ===== DOT-GRID DECORATION ===== */
.dot-grid {
  position: relative;
}
.dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent-2) 0.7px, transparent 0.7px);
  background-size: 26px 26px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.dot-grid > * { position: relative; z-index: 1; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(247, 249, 248, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(247,249,248,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  --header-h: 56px;
}
@media (max-width: 768px) {
  .site-header.scrolled { --header-h: 50px; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  z-index: 1100;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ===== DESKTOP NAV ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--surface);
}

/* ===== NAV TOGGLE ===== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  z-index: 1100;
  padding: 10px;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none !important; }
}

.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 180ms;
  transform-origin: center;
}
.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;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== DRAWER (outside header) ===== */
.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; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 28px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  display: block;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background 200ms, color 200ms;
}
.drawer nav a:hover,
.drawer nav a.is-active {
  background: var(--surface-2);
  color: var(--accent);
}
.drawer nav .nav-cta {
  margin-top: 12px;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--accent);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(26,43,42,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ===== MAIN CONTENT ===== */
main { padding-top: var(--header-h); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(48px, 10vw, 120px) 0 clamp(32px, 6vw, 72px);
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
}

.hero-h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-reveal 700ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-word:nth-child(1) { animation-delay: 200ms; }
.hero-word:nth-child(2) { animation-delay: 340ms; }
.hero-word:nth-child(3) { animation-delay: 480ms; }

@keyframes word-reveal {
  to { opacity: 1; transform: none; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--accent-2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0;
  transform: translateY(16px);
  animation: pill-in 500ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-pill:nth-child(1) { animation-delay: 600ms; }
.hero-pill:nth-child(2) { animation-delay: 680ms; }
.hero-pill:nth-child(3) { animation-delay: 760ms; }
.hero-pill:nth-child(4) { animation-delay: 840ms; }
.hero-pill:nth-child(5) { animation-delay: 920ms; }
.hero-pill:nth-child(6) { animation-delay: 1000ms; }
.hero-pill:nth-child(7) { animation-delay: 1080ms; }
.hero-pill:nth-child(8) { animation-delay: 1160ms; }

@keyframes pill-in {
  to { opacity: 1; transform: none; }
}

/* hero chain decoration */
.hero-deco {
  position: absolute;
  top: 15%; right: -5%;
  width: clamp(180px, 30vw, 400px);
  height: clamp(180px, 30vw, 400px);
  pointer-events: none;
  opacity: 0.06;
}
.hero-deco svg { width: 100%; height: 100%; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(24px, 4vw, 40px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 22px 22px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -60%; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(212,168,83,0.08) 50%, transparent 60%);
  pointer-events: none;
  opacity: 0;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(42,125,107,0.15);
  border-color: var(--accent);
}
.service-card:hover::before {
  animation: polish-sweep 600ms ease-out;
  opacity: 1;
}

@keyframes polish-sweep {
  0% { left: -60%; }
  100% { left: 120%; }
}

.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
  color: var(--accent);
  position: relative;
}
.service-icon svg {
  width: 100%; height: 100%;
}
.service-card:hover .service-icon { color: var(--accent-2); }

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-price-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
}

/* sparkle on hover */
.service-card .sparkle {
  position: absolute;
  top: 12px; right: 12px;
  width: 16px; height: 16px;
  opacity: 0;
  pointer-events: none;
}
.service-card:hover .sparkle { animation: gem-sparkle 700ms ease forwards; }

@keyframes gem-sparkle {
  0% { opacity: 0; transform: scale(0) rotate(0deg); }
  40% { opacity: 1; transform: scale(1.2) rotate(90deg); }
  100% { opacity: 0; transform: scale(0.8) rotate(180deg); }
}

/* ===== BEFORE/AFTER ===== */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}

.ba-item {}
.ba-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: col-resize;
  background: var(--surface-2);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-before { z-index: 2; }
.ba-after { z-index: 1; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px; z-index: 5;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--surface);
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.ba-handle-circle {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 2px solid var(--accent-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.ba-handle-circle svg { width: 18px; height: 18px; color: var(--accent-2); }

.ba-loupe {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid var(--accent-2);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 8px 24px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 200ms;
  overflow: hidden;
  background: var(--surface-2);
}
.ba-container:hover .ba-loupe { opacity: 1; }

@keyframes loupe-glow {
  0%, 100% { box-shadow: 0 0 0 2px var(--accent-2), 0 0 12px rgba(212,168,83,0.15); }
  50% { box-shadow: 0 0 0 3px var(--accent-2), 0 0 24px rgba(212,168,83,0.35); }
}
.ba-container:hover .ba-loupe {
  animation: loupe-glow 2s ease-in-out infinite;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.ba-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ba-caption {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ===== PRICING ===== */

/* price table */
.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: var(--radius-md);
}
.table-scroll > table { margin: 0 !important; min-width: 420px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.price-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9375rem;
}
.price-table thead { background: var(--ink); color: var(--surface); }
.price-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-family: var(--ff-heading);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.price-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: rgba(42,125,107,0.03); }
.price-table tbody tr:hover { background: rgba(42,125,107,0.06); }
.price-table .price-cell {
  font-family: 'Consolas', 'Courier New', monospace;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.price-disclaimer {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 14px;
  font-style: italic;
}

/* pricing packages */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: clamp(32px, 5vw, 56px);
}
@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(42,125,107,0.15);
}
.package-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}
.package-card.featured::after {
  content: 'En Çok Tercih Edilen';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.package-name {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.package-price {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}
.package-price small {
  font-size: 0.7em;
  color: var(--ink-soft);
  font-weight: 400;
}

.package-includes,
.package-excludes {
  font-size: 0.875rem;
  margin-bottom: 14px;
}
.package-includes strong,
.package-excludes strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.package-includes li,
.package-excludes li {
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.package-includes li::after {
  content: '';
  position: absolute;
  left: 3px; top: 13px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.package-excludes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-soft);
}
.package-excludes { color: var(--ink-soft); }

/* ===== PROCESS / TESLIM ===== */
.process-section { background: var(--surface); }

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }

.process-step::after {
  content: '';
  position: absolute;
  left: 27px; top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step:last-child::after { display: none; }

.step-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  animation: ring-pulse 3s ease-in-out infinite;
  animation-play-state: paused;
}
.process-step.is-in .step-num {
  animation-play-state: running;
}

@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,125,107,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(42,125,107,0); }
}

.step-content {}
.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.step-time {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  padding: 2px 8px;
  background: rgba(212,168,83,0.08);
  border-radius: var(--radius-sm);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--ink);
  color: var(--surface);
}
.testimonials-section .eyebrow { color: var(--accent-2); }
.testimonials-section .section-head p { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 3vw, 30px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 2rem;
  font-family: Georgia, 'Palatino Linotype', serif;
  color: var(--accent-2);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.testimonial-author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--surface);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { display: none; content: ''; }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  color: var(--accent);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}

.faq-body p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
}

/* ===== CONTACT SECTION (index) ===== */
.contact-section { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background 240ms, transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-channel svg {
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.contact-channel:hover svg { color: var(--accent-2); transform: scale(1.08); }
.channel-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.channel-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.channel-value a { color: var(--ink); }
.channel-value a:hover { color: var(--accent); }

/* ===== FORM ===== */
.site-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .site-form { grid-template-columns: 1fr 1fr; }
  .site-form .field--full,
  .site-form .field--textarea,
  .site-form .field--submit,
  .site-form .field--kvkk { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input:not([type="checkbox"]),
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:not([type="checkbox"]):focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,125,107,0.1);
  outline: none;
}

.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}

.field--kvkk label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.field--submit { margin-top: 8px; }
.field--submit .btn-primary { width: 100%; }
@media (min-width: 640px) {
  .field--submit .btn-primary { width: auto; }
}

/* honeypot */
.field--hp { position: absolute; left: -9999px; opacity: 0; }

/* ===== ATOLYE NOTLARI ===== */
.atolye-notes {
  background: var(--surface-2);
  padding: clamp(24px, 4vw, 40px) 0;
}
.notes-list { display: flex; flex-direction: column; gap: 12px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.875rem;
}
.note-date {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  white-space: nowrap;
}
.note-text { color: var(--ink-soft); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 32px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
}

.footer-brand .logo {
  color: var(--surface);
  margin-bottom: 14px;
}
.footer-brand .logo-mark { background: var(--accent-2); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
  transition: color 200ms, transform 200ms;
}
.footer-col a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}

.footer-hours {
  font-size: 0.8125rem;
}
.footer-hours dt {
  display: inline;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-right: 4px;
}
.footer-hours dd {
  display: inline;
  margin: 0;
}
.footer-hours dd::after { content: ''; display: block; margin-bottom: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== 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-md);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.2);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

.cookie-banner h3 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--ff-heading);
  border-radius: var(--radius-sm);
  transition: background 200ms, color 200ms;
  cursor: pointer;
}
.cookie-accept {
  background: var(--accent);
  color: var(--surface);
  border: 2px solid var(--accent);
}
.cookie-accept:hover { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
  font-weight: 700;
}
.cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink); }
.cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 2px solid var(--line);
}
.cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-stagger { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-word, .hero-pill { opacity: 1 !important; transform: none !important; animation: none !important; }
  .step-num { animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== CHAIN SHIMMER (niche animation) ===== */
@keyframes chain-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.chain-underline {
  position: relative;
  display: inline;
}
.chain-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-2) 30%, var(--accent-2) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: chain-shimmer 4s ease-in-out infinite;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .chain-underline::after { animation: none; background-position: center; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: clamp(40px, 8vw, 80px) 0 clamp(32px, 6vw, 56px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 580px;
}

/* ===== CONTACT PAGE ===== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: block;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px -6px rgba(42,125,107,0.18), 0 0 0 1px rgba(42,125,107,0.08);
  border-color: var(--accent);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(42,125,107,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.contact-card .card-value {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 4px;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.contact-card .card-value a { color: var(--ink); }
.contact-card .card-value a:hover { color: var(--accent); }
.contact-card .card-sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.hour-cell {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
}
.hour-cell .day {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.hour-cell .time {
  font-size: 0.875rem;
  font-weight: 500;
}
.hour-cell.today {
  border-color: var(--accent);
  background: rgba(42,125,107,0.04);
}

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(42,125,107,0.12);
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.8125rem;
}
.team-info {
  padding: 20px 22px;
}
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== POLICY / LEGAL PAGES ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 0;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content li {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 6px;
  list-style: disc;
}

/* ===== THANK YOU ===== */
.thankyou-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
  padding: 48px 0;
}
.thankyou-inner { max-width: 480px; }
.thankyou-inner h1 { margin-bottom: 14px; }
.thankyou-inner p { color: var(--ink-soft); margin: 0 auto 28px; }

/* ===== 404 ===== */
.error-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
  padding: 48px 0;
}
.error-inner { max-width: 480px; }
.error-code {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.error-inner p { color: var(--ink-soft); margin: 0 auto 28px; }

/* ===== SITEMAP PAGE ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.sitemap-group h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.sitemap-group a {
  display: block;
  font-size: 0.9375rem;
  padding: 6px 0;
  color: var(--ink-soft);
}
.sitemap-group a:hover { color: var(--accent); transform: translateX(4px); }

/* ===== CAPACITY BADGE ===== */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--accent-2);
  font-weight: 500;
}
.capacity-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: capacity-blink 2s ease-in-out infinite;
}
@keyframes capacity-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .capacity-dot { animation: none; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #666; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { gap: 24px; }
  .packages-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 10px; }
  .service-card { padding: 18px 16px; }
  .service-icon { width: 36px; height: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-pills { gap: 8px; }
  .hero-pill { font-size: 0.6875rem; padding: 5px 12px; }
}

@media (max-width: 360px) {
  .hero-h1 { font-size: 2rem; }
  .trust-badge { font-size: 0.75rem; padding: 5px 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
}

/* ===== HERO ANIMATION FALLBACK ===== */
html.no-js .hero-word,
html.no-js .hero-pill {
  opacity: 1;
  transform: none;
  animation: none;
}

/* ===== MOBILE TABLE OVERFLOW FIX ===== */
@media (max-width: 640px) {
  .table-scroll > table { min-width: 0; width: 100%; }
  .price-table th,
  .price-table td { padding: 10px 12px; font-size: 0.8125rem; }
  .price-table td:first-child { word-break: normal; }
  .price-table .price-cell { font-size: 0.8125rem; }
}

/* ===== HAMBURGER IMPROVED VISIBILITY ===== */
.nav-toggle {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 2px 8px -2px rgba(26,43,42,0.12);
}
.nav-toggle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 200ms;
}
.nav-toggle:hover::before,
.nav-toggle:focus-visible::before {
  background: var(--surface-2);
}

/* ===== JEWELRY-THEMED MICRO-EFFECTS ===== */

/* Golden warm glow on service cards */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 20%; right: 20%;
  height: 0;
  background: radial-gradient(ellipse, rgba(212,168,83,0.25), transparent 70%);
  border-radius: 50%;
  transition: height 400ms cubic-bezier(.22,.68,0,1.2), opacity 400ms;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.service-card:hover::after {
  height: 20px;
  opacity: 1;
}

/* Button golden shimmer on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transition: none;
  pointer-events: none;
}
.btn-primary:hover::after {
  animation: btn-shimmer 500ms ease-out forwards;
}
@keyframes btn-shimmer {
  to { left: 120%; }
}

/* Package card golden border glow */
.package-card.featured {
  box-shadow: 0 0 0 0 rgba(212,168,83,0);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.package-card.featured:hover {
  box-shadow: 0 12px 32px -8px rgba(42,125,107,0.15), 0 0 24px -8px rgba(212,168,83,0.2);
}

/* Testimonial card subtle gold accent on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.22,.68,0,1.2);
}
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* FAQ item hover highlight */
.faq-item > summary {
  transition: color 240ms, padding-left 240ms cubic-bezier(.22,.68,0,1.2);
  border-radius: var(--radius-sm);
}
.faq-item > summary:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* Contact channel improved hover */
.contact-channel {
  border: 1px solid transparent;
  transition: background 240ms, transform 240ms cubic-bezier(.4,0,.2,1), border-color 240ms;
}
.contact-channel:hover {
  border-color: var(--line);
}

/* Contact card icon animation on hover */
.contact-card:hover .contact-card-icon {
  background: rgba(212,168,83,0.12);
}
.contact-card:hover .contact-card-icon svg {
  color: var(--accent-2);
}
.contact-card-icon {
  transition: background 300ms cubic-bezier(.22,.68,0,1.2);
}
.contact-card-icon svg {
  transition: color 300ms, transform 300ms cubic-bezier(.22,.68,0,1.2);
}
.contact-card:hover .contact-card-icon svg {
  transform: scale(1.1);
}

/* Process step number hover glow */
.step-num {
  transition: box-shadow 400ms cubic-bezier(.22,.68,0,1.2);
}
.process-step:hover .step-num {
  box-shadow: 0 0 0 8px rgba(42,125,107,0.12), 0 0 20px -4px rgba(212,168,83,0.15);
}

/* Stats counter glow effect */
.stat-num {
  transition: text-shadow 400ms;
}
.stat-item:hover .stat-num {
  text-shadow: 0 0 24px rgba(212,168,83,0.35);
}

/* Team card photo subtle zoom */
.team-photo img {
  transition: transform 600ms cubic-bezier(.22,.68,0,1.2);
}
.team-card:hover .team-photo img {
  transform: scale(1.04);
}
.team-photo {
  overflow: hidden;
}

/* Smooth reveal stagger with jewelry-like ease */
.reveal {
  transition: opacity 700ms cubic-bezier(.22,.68,0,1.1), transform 700ms cubic-bezier(.22,.68,0,1.1);
}

/* Footer link hover sparkle */
.footer-col a {
  position: relative;
}
.footer-col a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 4px; height: 4px;
  background: var(--accent-2);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 300ms cubic-bezier(.22,.68,0,1.2);
}
.footer-col a:hover::before {
  transform: translateY(-50%) scale(1);
}

/* ===== COOKIE BANNER MOBILE REFINEMENT ===== */
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 18px 16px 24px;
    max-width: none;
  }
  .cookie-actions {
    gap: 6px;
  }
  .cookie-actions button {
    min-height: 48px;
    font-size: 0.875rem;
  }
  .cookie-settings {
    flex-basis: 100%;
  }
}

/* ===== HERO DECORATION IMPROVED ===== */
.hero-deco svg {
  animation: deco-float 8s ease-in-out infinite;
}
@keyframes deco-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deco svg { animation: none; }
}

/* ===== B/A SLIDER IMPROVED HANDLE HOVER ===== */
.ba-handle-circle {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.2), box-shadow 300ms;
}
.ba-container:hover .ba-handle-circle {
  transform: scale(1.1);
  box-shadow: 0 2px 12px rgba(212,168,83,0.3);
}

/* ===== CAPACITY BADGE HOVER ===== */
.capacity-badge {
  transition: background 300ms, border-color 300ms, transform 200ms;
}
.capacity-badge:hover {
  background: rgba(212,168,83,0.14);
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-1px);
}

/* ===== REDUCED MOTION FALLBACKS FOR NEW ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  .service-card::after,
  .testimonial-card::before,
  .btn-primary::after { display: none; }
  .service-card:hover { transform: none; }
  .package-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .team-card:hover .team-photo img { transform: none; }
  .ba-container:hover .ba-handle-circle { transform: none; }
  .contact-card:hover { transform: none; }
  .contact-channel:hover { transform: none; }
  .footer-col a:hover { transform: none; }
  .capacity-badge:hover { transform: none; }
  .faq-item > summary:hover { padding-left: 0; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

