/* ==========================================================================
   Ankara Dijital Ajans — style.css
   Marka: Ankara Dijital Ajans | Tema: Gradient-mesh + full-service bento
   Font: Başlık Sora, Gövde Inter | Renk: kırmızı #B91C1C / lacivert #1E3A8A
   ========================================================================== */

/* === Reset / Base === */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { overflow-x: hidden;
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; margin: 0; color: var(--color-text); }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* === Tokens === */
:root {
  /* ham marka renkleri */
  --brand-primary: #B91C1C;
  --brand-primary-dark: #991B1B;
  --brand-secondary: #1E3A8A;
  --brand-secondary-light: #3B5BC7;

  /* semantik katman */
  --color-text: #0F172A;
  --color-text-muted: #475569;
  --color-text-faint: #94A3B8;
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-border: #E2E8F0;
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* spacing — 8px ritmi */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-6: 1.5rem; --space-8: 2rem; --space-12: 3rem; --space-16: 4rem; --space-24: 6rem;

  /* tipografi skalası */
  --text-xs: .75rem; --text-sm: .875rem; --text-base: 1rem; --text-lg: 1.125rem;
  --text-xl: 1.25rem; --text-2xl: 1.5rem; --text-3xl: 1.875rem; --text-4xl: 2.25rem; --text-6xl: 3.75rem;

  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 4px 16px -8px rgba(15, 23, 42, .12);
  --shadow-md: 0 16px 32px -16px rgba(185, 28, 28, .22);
  --shadow-lg: 0 28px 56px -20px rgba(30, 58, 138, .28);

  --ease-standard: cubic-bezier(.16, 1, .3, 1);
  --header-h: 76px;
}

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--space-6); }
section { padding-block: var(--space-24); }
.section-head { max-width: 640px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 700; letter-spacing: .04em;
  color: var(--brand-primary); margin-bottom: var(--space-3);
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--brand-primary); display: inline-block; }
.section-head h2 { font-size: clamp(var(--text-2xl), 3.4vw, var(--text-3xl)); margin-bottom: var(--space-3); }
.section-head p { color: var(--color-text-muted); font-size: var(--text-lg); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--brand-primary); color: #fff;
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: .875rem var(--space-8); border-radius: var(--radius-sm); font-weight: 700; font-size: var(--text-base);
  border: 2px solid transparent; cursor: pointer; text-decoration: none; touch-action: manipulation;
  transition: transform .18s var(--ease-standard), box-shadow .18s var(--ease-standard), background-color .18s var(--ease-standard);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--brand-primary-dark); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--color-surface); color: var(--color-text); border-color: var(--color-border); }
.btn-secondary:hover { border-color: var(--brand-secondary); color: var(--brand-secondary); }
.btn-sm { padding: .625rem var(--space-6); font-size: var(--text-sm); }
.btn-block { width: 100%; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; background: rgba(248, 250, 252, .86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border); transition: box-shadow .3s var(--ease-standard);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.logo {
  display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-heading); font-weight: 700;
  font-size: var(--text-lg); text-decoration: none; color: var(--color-text); white-space: nowrap;
  transition: opacity .2s;
}
.logo:hover { opacity: .8; }
.logo .logo-mark {
  display: inline-flex; width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: var(--space-6); }
.main-nav a { text-decoration: none; font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); transition: color .2s; }
.main-nav a:hover, .main-nav a.is-active { color: var(--brand-primary); }
.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-phone { display: none; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 600; text-decoration: none; color: var(--color-text); }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer;
  color: var(--color-text); transition: border-color .2s, color .2s;
}
.menu-toggle:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.menu-toggle svg { width: 22px; height: 22px; }
@media (min-width: 960px) { .header-phone { display: inline-flex; } .nav-cta { display: none; } }
@media (max-width: 959px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--color-surface);
    transform: translateX(100%); transition: transform .3s var(--ease-standard); overflow-y: auto;
  }
  .main-nav[data-open="true"] { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-6); }
  .main-nav li { border-bottom: 1px solid var(--color-border); }
  .main-nav a { display: block; padding: var(--space-4) 0; font-size: var(--text-lg); }
  .nav-cta { padding-top: var(--space-6); }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn-primary.header-cta { display: none; }
}

/* === Hero (gradient-mesh + bento önizleme) === */
.hero { position: relative; overflow: hidden; padding-top: var(--space-24); padding-bottom: var(--space-16); }
.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 8% 15%, rgba(185,28,28,.16), transparent 60%),
    radial-gradient(55% 60% at 95% 10%, rgba(30,58,138,.18), transparent 60%),
    radial-gradient(40% 45% at 60% 100%, rgba(185,28,28,.10), transparent 60%);
  background-size: 160% 160%;
  animation: mesh-drift 22s ease-in-out infinite;
}
@keyframes mesh-drift {
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 100%; }
  50% { background-position: 12% 8%, 88% 14%, 42% 92%; }
}
@media (prefers-reduced-motion: reduce) { .hero-mesh { animation: none; } }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: var(--space-12); align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { font-size: clamp(var(--text-4xl), 5.6vw, var(--text-6xl)); letter-spacing: -.01em; margin-bottom: var(--space-6); }
.hero h1 .mask { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .word { display: inline-block; will-change: transform; }
.hero h1 .accent { color: var(--brand-primary); }
.hero-sub { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 52ch; margin-bottom: var(--space-8); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* hero bento önizleme (mini 4 hizmet kutusu) */
.hero-bento { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); max-width: 420px; margin-inline: auto; }
.hero-bento .mini-cell {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); box-shadow: var(--shadow-sm);
}
.hero-bento .mini-cell:nth-child(1) { transform: translateY(-8px); }
.hero-bento .mini-cell:nth-child(4) { transform: translateY(8px); }
.hero-bento .mini-cell .icon { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; }
.hero-bento .mini-cell:nth-child(1) .icon { background: var(--brand-primary); }
.hero-bento .mini-cell:nth-child(2) .icon { background: var(--brand-secondary); }
.hero-bento .mini-cell:nth-child(3) .icon { background: var(--brand-secondary); }
.hero-bento .mini-cell:nth-child(4) .icon { background: var(--brand-primary); }
.hero-bento .mini-cell span.label { font-size: var(--text-sm); font-weight: 700; }

/* === Güven Şeridi / Sayaçlar === */
.trust-strip { padding-block: var(--space-16); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); text-align: center; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item .count {
  display: block; font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: 700;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums;
}
.trust-item .label { color: var(--color-text-muted); font-size: var(--text-sm); margin-top: var(--space-1); }

/* === Bento (hizmetler) === */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-6); }
@media (max-width: 860px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }
.cell {
  grid-column: span 6;
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4);
  transition: transform .3s var(--ease-standard), box-shadow .3s var(--ease-standard), border-color .3s var(--ease-standard);
}
.cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-primary); }
.cell.lg-w2 { grid-column: span 2; }
.cell.lg-w3 { grid-column: span 3; }
.cell.lg-w4 { grid-column: span 4; }
@media (max-width: 860px) { .cell, .cell.lg-w2, .cell.lg-w3, .cell.lg-w4 { grid-column: span 2; } }
@media (max-width: 560px) { .cell, .cell.lg-w2, .cell.lg-w3, .cell.lg-w4 { grid-column: span 1; } }
.cell--tint { background: linear-gradient(145deg, rgba(185,28,28,.05), rgba(30,58,138,.06)); }
.cell--accent { background: linear-gradient(145deg, var(--brand-secondary), #14235C); color: #fff; border-color: var(--brand-secondary); }
.cell--accent h3, .cell--accent .cell-icon { color: #fff; }
.cell--accent p { color: rgba(255,255,255,.82); }
.cell--accent .card-link { color: #fff; }
.cell-icon, .service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(185,28,28,.12), rgba(30,58,138,.14));
  display: flex; align-items: center; justify-content: center; color: var(--brand-primary); flex-shrink: 0;
}
.cell--accent .cell-icon { background: rgba(255,255,255,.16); color: #fff; }
.cell-icon svg, .service-icon svg { width: 24px; height: 24px; }
.cell h3 { font-size: var(--text-xl); }
.cell p { color: var(--color-text-muted); font-size: var(--text-sm); flex-grow: 1; }
.cell .card-link { font-size: var(--text-sm); font-weight: 700; color: var(--brand-primary); text-decoration: none; }
a.cell { text-decoration: none; color: inherit; }

/* === Süreç === */
.process-list { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 860px) { .process-list { grid-template-columns: repeat(4, 1fr); position: relative; } }
.process-item { position: relative; padding-top: var(--space-16); }
.process-item .step-num {
  position: absolute; top: 0; left: 0; width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: var(--text-lg);
  display: flex; align-items: center; justify-content: center;
}
.process-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.process-item p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* === Paketler === */
.packages-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: stretch; }
@media (min-width: 860px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
.package-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-6);
}
.package-card.featured { border-color: var(--brand-primary); box-shadow: var(--shadow-lg); position: relative; transform: scale(1.02); }
.package-featured-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand-primary); color: #fff;
  font-size: var(--text-xs); font-weight: 700; padding: var(--space-1) var(--space-4); border-radius: var(--radius-full); white-space: nowrap;
}
.package-card h3 { font-size: var(--text-xl); }
.package-card .package-tagline { color: var(--color-text-muted); font-size: var(--text-sm); }
.package-features { display: flex; flex-direction: column; gap: var(--space-3); flex-grow: 1; }
.package-features li { display: flex; gap: var(--space-2); font-size: var(--text-sm); }
.package-features svg { width: 18px; height: 18px; color: var(--brand-secondary); flex-shrink: 0; margin-top: 2px; }

/* === SSS Accordion === */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 800px; margin-inline: auto; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-6); background: none; border: none; text-align: left; font-family: var(--font-heading);
  font-size: var(--text-base); font-weight: 600; color: var(--color-text); cursor: pointer;
  transition: background-color .2s;
}
.faq-question:hover { background-color: var(--color-bg); }
.faq-question .chev { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s var(--ease-standard); color: var(--brand-primary); }
.faq-question[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-standard); }
.faq-answer p { padding: 0 var(--space-6) var(--space-6); color: var(--color-text-muted); font-size: var(--text-sm); }
.faq-more { text-align: center; margin-top: var(--space-8); }

/* === CTA Bandı === */
.cta-band {
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-lg); padding: var(--space-16) var(--space-8); text-align: center; color: #fff;
  margin-inline: var(--space-6);
}
.cta-band h2 { font-size: clamp(var(--text-2xl), 3.6vw, var(--text-3xl)); margin-bottom: var(--space-3); color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); margin-bottom: var(--space-8); max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.cta-band .btn-secondary { background: #fff; border-color: #fff; }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,.9); }

/* === Footer === */
.site-footer { background: #0F172A; color: #94A3B8; padding-top: var(--space-24); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-12); padding-bottom: var(--space-16); border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: var(--space-4); font-size: var(--text-sm); max-width: 40ch; }
.footer-col h4 { color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { text-decoration: none; font-size: var(--text-sm); color: #94A3B8; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: var(--text-sm); line-height: 1.7; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; padding-block: var(--space-6); font-size: var(--text-xs); color: #64748B; }

/* === Form === */
.form-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: 700; }
.field .required { color: var(--color-error); }
.field input, .field select, .field textarea {
  padding: var(--space-3) var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font: inherit; font-size: var(--text-base); background: var(--color-bg); color: var(--color-text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand-primary); outline-offset: 1px; border-color: var(--brand-primary); }
.field textarea { resize: vertical; min-height: 110px; }
.field-error { display: none; color: var(--color-error); font-size: var(--text-xs); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--color-error); }
.field.has-error .field-error { display: block; }
.checkbox-field { display: flex; align-items: flex-start; gap: var(--space-3); }
.checkbox-field input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--brand-primary); }
.checkbox-field label { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }
.kvkk-details { margin-top: var(--space-2); font-size: var(--text-xs); color: var(--color-text-faint); }
.kvkk-details summary { cursor: pointer; color: var(--brand-primary); font-weight: 600; }
.form-status { margin-top: var(--space-4); padding: var(--space-4); border-radius: var(--radius-sm); font-size: var(--text-sm); display: none; }
.form-status.is-success { display: block; background: rgba(34,197,94,.1); color: #15803D; }
.form-status.is-error { display: block; background: rgba(239,68,68,.1); color: #B91C1C; }
.form-note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); }
.hp-alan { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* === Sayfa başlığı === */
.page-header { padding-top: var(--space-16); padding-bottom: var(--space-12); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: var(--space-2); font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-6); }
.breadcrumb a { text-decoration: none; color: var(--color-text-faint); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb span[aria-hidden] { color: var(--color-border); }
.page-header h1 { font-size: clamp(var(--text-3xl), 4.6vw, var(--text-4xl)); max-width: 46ch; }
.page-header .lead { margin-top: var(--space-4); font-size: var(--text-lg); color: var(--color-text-muted); max-width: 65ch; }

/* === İçerik sayfaları tipografi === */
.prose { max-width: 760px; }
.prose h2 { font-size: var(--text-2xl); margin-top: var(--space-12); margin-bottom: var(--space-4); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--color-text-muted); margin-bottom: var(--space-4); max-width: 70ch; }
.prose ul { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.prose ul li { display: flex; gap: var(--space-2); color: var(--color-text-muted); }
.prose ul li svg { width: 18px; height: 18px; color: var(--brand-secondary); flex-shrink: 0; margin-top: 3px; }
.two-col-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-16); }
@media (min-width: 960px) { .two-col-layout { grid-template-columns: 2fr 1fr; } }
.aside-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-6); align-self: start; position: sticky; top: calc(var(--header-h) + var(--space-6)); }
.aside-card h3 { font-size: var(--text-base); margin-bottom: var(--space-3); }
.aside-card ul { display: flex; flex-direction: column; gap: var(--space-2); }
.aside-card a { font-size: var(--text-sm); text-decoration: none; color: var(--color-text-muted); }
.aside-card a:hover { color: var(--brand-primary); }

/* === İletişim kartları === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-6); display: flex; gap: var(--space-4); }
.contact-card .icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(185,28,28,.1); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }
.contact-card p, .contact-card a { font-size: var(--text-sm); color: var(--color-text-muted); text-decoration: none; }
.contact-card a:hover { color: var(--brand-primary); }
.map-embed { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; margin-top: var(--space-8); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* === 404 / Teşekkür === */
.error-page, .thanks-page { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.error-page .code {
  font-family: var(--font-heading); font-size: clamp(4rem, 14vw, 8rem); font-weight: 700; line-height: 1;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.thanks-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(34,197,94,.12); color: var(--color-success); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: var(--space-6); }
.thanks-icon svg { width: 36px; height: 36px; }

/* === Yüzen Aksiyonlar === */
.floating-actions { position: fixed; right: var(--space-6); bottom: var(--space-6); z-index: 90; display: flex; flex-direction: column; gap: var(--space-3); }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); border: none; cursor: pointer; text-decoration: none; touch-action: manipulation; transition: transform .2s var(--ease-standard); }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab-whatsapp { background: #25D366; color: #fff; }
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-top { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-top svg { width: 20px; height: 20px; }

/* === Scroll Reveal (yönlü giriş — bento kutuları farklı yönden gelir) === */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity .6s var(--ease-standard), transform .6s var(--ease-standard); }
[data-bento] { opacity: 0; }
[data-bento][data-dir="left"] { transform: translateX(-32px); }
[data-bento][data-dir="right"] { transform: translateX(32px); }
[data-bento][data-dir="up"] { transform: translateY(32px); }
[data-bento][data-dir="down"] { transform: translateY(-32px); }
[data-bento].is-visible { opacity: 1; transform: translate(0,0); transition: opacity .7s var(--ease-standard), transform .7s var(--ease-standard); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-bento] { opacity: 1; transform: none; }
}

/* === Yardımcı === */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === Final denetim: teklif butonu + FAB'lar sol tarafa === */
.floating-actions { right: auto; left: var(--space-6); }
.fab-quote { background: var(--color-text); color: var(--color-bg); width: auto; height: 56px; padding: 0 1.1rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; font-weight: 700; font-size: .875rem; box-shadow: 0 12px 28px -10px rgba(0,0,0,.35); }
.fab-quote svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 480px) { .fab-quote .fab-label { display: none; } .fab-quote { width: 56px; padding: 0; justify-content: center; } }

/* === Kampanya rozeti: paketler üstü hediye bandı === */
.promo-banner { display: flex; align-items: center; justify-content: center; gap: var(--space-3); margin-bottom: var(--space-8); padding: var(--space-4) var(--space-6); border-radius: var(--radius-md); background: var(--color-surface); border: 1px solid var(--color-warning); text-align: center; flex-wrap: wrap; }
.promo-banner .promo-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-warning); }
.promo-banner p { font-size: var(--text-sm); color: var(--color-text); margin: 0; }
.promo-banner strong { font-weight: 700; }
