/* ===================================================================
   Mega Avrupa Ağız ve Diş Sağlığı Polikliniği
   Modern & güven verici tasarım sistemi
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Renk paleti — açık mavi / teal, sağlıkta güven */
  --c-primary: #0891b2;        /* teal/cyan-700 */
  --c-primary-dark: #0e7490;
  --c-primary-light: #22d3ee;
  --c-accent: #2563eb;         /* mavi vurgu */
  --c-mint: #ecfeff;           /* açık zemin */
  --c-ink: #0f172a;            /* koyu metin */
  --c-body: #475569;           /* gövde metni */
  --c-muted: #94a3b8;
  --c-line: #e2e8f0;
  --c-bg: #ffffff;
  --c-bg-soft: #f8fafc;
  --c-white: #ffffff;
  --c-success: #16a34a;
  --c-danger: #e11d48;

  /* Gradyanlar */
  --grad-primary: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  --grad-soft: linear-gradient(135deg, #ecfeff 0%, #eff6ff 100%);

  /* Tipografi */
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Yapı */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 10px 30px -12px rgba(8, 145, 178, .25);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, .25);
  --container: 1200px;
  --header-h: 76px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--c-ink);
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 88px 0; }
.section--soft { background: var(--c-bg-soft); }
.section--mint { background: var(--grad-soft); }
.text-center { text-align: center; }
.grid { display: grid; gap: 28px; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-mint);
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; letter-spacing: -.02em; }
.section-lead { font-size: 1.08rem; max-width: 640px; color: var(--c-body); }
.section-head { margin-bottom: 56px; }
.section-head.text-center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(8, 145, 178, .5); }
.btn-light { background: #fff; color: var(--c-primary); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-line); }
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-ghost-white { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.25); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.topbar {
  background: var(--c-ink); color: #cbd5e1;
  font-size: .85rem;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--c-primary-light); }
.topbar-badge { color: #5eead4; font-weight: 600; }
.topbar-social { display: flex; gap: 14px; }
/* Klinik yalnızca Instagram kullanıyor — Facebook linklerini gizle.
   (Facebook hesabı açılırsa bu kuralı silip href'leri güncelleyin.) */
[aria-label="Facebook"] { display: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad-primary); display: grid; place-items: center;
  box-shadow: var(--shadow); flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.18rem; color: var(--c-ink); font-weight: 700; letter-spacing: -.01em; }
.brand-text small { font-size: .68rem; color: var(--c-muted); letter-spacing: .03em; text-transform: uppercase; }

/* ---- Logo görseli (tüm sayfalarda inline mark + metni değiştirir) ---- */
.brand { gap: 0; }
.brand .brand-mark { display: none; }
.brand .brand-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.brand::before {
  content: ""; display: block; width: 168px; height: 56px;
  background: url("../images/logo.png") left center / contain no-repeat;
  transition: var(--transition);
}
@media (max-width: 560px) { .brand::before { width: 140px; height: 47px; } }

/* ---- Gerçek fotoğraflar (görsel kutularını doldurur) ---- */
.hero-card .photo img,
.split-visual img,
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Ödüllerimiz ---- */
.awards {
  max-width: 480px; margin: 32px auto 0; aspect-ratio: 490 / 200;
  background: url("../images/odullerimiz.png") center / contain no-repeat;
  display: grid; place-items: center;
}
.awards-inner { text-align: center; padding: 0 19%; }
.awards-top { font-family: var(--font-head); font-weight: 600; color: var(--c-ink); margin-bottom: 8px; font-size: .95rem; }
.awards-line { color: var(--c-body); font-size: 1rem; line-height: 1.7; }
.awards-line strong { color: var(--c-primary); font-family: var(--font-head); }
@media (max-width: 480px) { .awards-inner { padding: 0 15%; } .awards-top { font-size: .76rem; } .awards-line { font-size: .82rem; } }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--c-ink);
  padding: 9px 16px; border-radius: 999px; transition: var(--transition);
}
.main-nav a:hover { color: var(--c-primary); background: var(--c-mint); }
.main-nav a.active { color: var(--c-primary); background: var(--c-mint); font-weight: 600; }
.main-nav a.nav-acil { color: var(--c-danger); font-weight: 600; }
.main-nav a.nav-acil::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-danger); margin-right: 7px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(225, 29, 72, .5); animation: pulse-dot 1.8s infinite;
}
.main-nav a.nav-acil:hover { color: var(--c-danger); background: #fee2e2; }
.main-nav a.nav-acil.active { color: var(--c-danger); background: #fee2e2; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, .5); }
  70% { box-shadow: 0 0 0 7px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--c-mint); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); margin: 5px auto; border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; overflow: hidden; background: var(--grad-soft); }
.hero::before {
  content: ''; position: absolute; top: -180px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.22), transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 80px 0 90px; position: relative;
}
.hero-content h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); letter-spacing: -.03em; margin-bottom: 22px; }
.hero-content h1 .grad { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.15rem; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust-item { display: flex; align-items: center; gap: 11px; }
.hero-trust-item .ic { width: 42px; height: 42px; border-radius: 12px; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--c-primary); flex-shrink: 0; }
.hero-trust-item .ic svg { width: 21px; height: 21px; }
.hero-trust-item b { display: block; font-family: var(--font-head); color: var(--c-ink); font-size: 1.02rem; }
.hero-trust-item span { font-size: .85rem; color: var(--c-muted); }

/* Hero görsel kartı */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); padding: 14px;
  box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.hero-card .photo {
  border-radius: 20px; aspect-ratio: 4 / 4.4; overflow: hidden;
  background: var(--grad-primary); position: relative;
  display: grid; place-items: center;
}
.hero-card .photo svg { width: 56%; height: 56%; color: rgba(255,255,255,.92); }
.hero-card .photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 55%);
}
.hero-float {
  position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-float .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-float small { display: block; font-size: .74rem; color: var(--c-muted); }
.hero-float b { font-family: var(--font-head); color: var(--c-ink); font-size: .98rem; }
.hero-float--tl { top: 30px; left: -34px; }
.hero-float--tl .ic { background: var(--c-success); }
.hero-float--br { bottom: 34px; right: -28px; }
.hero-float--br .ic { background: var(--grad-primary); }

/* ===================================================================
   STAT / TRUST STRIP
   =================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 700; color: var(--c-primary); line-height: 1; letter-spacing: -.02em; }
.stat .lbl { margin-top: 8px; font-size: .95rem; color: var(--c-body); }

/* ===================================================================
   SERVICE CARDS
   =================================================================== */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-primary); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ic {
  width: 60px; height: 60px; border-radius: 16px; background: var(--c-mint);
  display: grid; place-items: center; color: var(--c-primary); margin-bottom: 22px;
  transition: var(--transition);
}
.service-ic svg { width: 30px; height: 30px; }
.service-card:hover .service-ic { background: var(--grad-primary); color: #fff; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { font-size: .96rem; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--c-primary); font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.service-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ===================================================================
   FEATURE / WHY US (split)
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual {
  border-radius: var(--radius-lg); aspect-ratio: 5 / 4.4; overflow: hidden;
  background: var(--grad-primary); display: grid; place-items: center; position: relative;
  box-shadow: var(--shadow-lg);
}
.split-visual svg { width: 48%; height: 48%; color: rgba(255,255,255,.9); }
.split-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.22), transparent 55%); }

.feature-list { display: grid; gap: 22px; margin-top: 8px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--c-mint); display: grid; place-items: center; color: var(--c-primary); flex-shrink: 0; }
.feature-item .ic svg { width: 24px; height: 24px; }
.feature-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.feature-item p { font-size: .95rem; }

/* ===================================================================
   TEAM
   =================================================================== */
.team-grid { grid-template-columns: repeat(4, 1fr); }
.team-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-photo {
  aspect-ratio: 1 / 1; display: grid; place-items: center; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: #fff;
}
.team-photo span { position: relative; z-index: 1; }
.team-photo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.22), transparent 60%); }
.tg-1 { background: linear-gradient(135deg,#0891b2,#2563eb); }
.tg-2 { background: linear-gradient(135deg,#0d9488,#0891b2); }
.tg-3 { background: linear-gradient(135deg,#2563eb,#7c3aed); }
.tg-4 { background: linear-gradient(135deg,#0891b2,#14b8a6); }
.tg-5 { background: linear-gradient(135deg,#0ea5e9,#2563eb); }
.team-info { padding: 22px 18px 26px; }
.team-info h3 { font-size: 1.12rem; margin-bottom: 4px; }
.team-info .role { color: var(--c-primary); font-size: .9rem; font-weight: 600; font-family: var(--font-head); }
.team-info p { font-size: .88rem; margin-top: 10px; }

/* ===================================================================
   STEPS / PROCESS
   =================================================================== */
.steps { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: #fff; border: 2px solid var(--c-line); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--c-primary);
}
.step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-grid { grid-template-columns: repeat(3, 1fr); }
.testi-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 30px 28px; }
.testi-stars { color: #f59e0b; display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p { color: var(--c-ink); font-size: 1rem; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; }
.testi-author b { display: block; font-family: var(--font-head); color: var(--c-ink); font-size: .98rem; }
.testi-author small { color: var(--c-muted); }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner { background: var(--grad-primary); border-radius: var(--radius-lg); padding: 60px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.1); }
.cta-banner::after { content: ''; position: absolute; bottom: -140px; left: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.cta-inner p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 540px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================================================
   PAGE HERO (alt sayfalar)
   =================================================================== */
.page-hero { background: var(--grad-soft); padding: 56px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -160px; right: -120px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,.18), transparent 70%); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; margin-bottom: 14px; }
.page-hero p { font-size: 1.12rem; max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: var(--c-muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ===================================================================
   ABOUT / VALUES
   =================================================================== */
.values-grid { grid-template-columns: repeat(3, 1fr); }
.value-card { background: var(--c-bg-soft); border-radius: var(--radius); padding: 32px 28px; transition: var(--transition); border: 1px solid transparent; }
.value-card:hover { background: #fff; border-color: var(--c-line); box-shadow: var(--shadow); }
.value-card .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--grad-primary); display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.value-card .ic svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: .96rem; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-list { display: grid; gap: 18px; margin: 28px 0 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 18px 20px; transition: var(--transition); }
.contact-info-item:hover { box-shadow: var(--shadow); border-color: transparent; }
.contact-info-item .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--c-mint); display: grid; place-items: center; color: var(--c-primary); flex-shrink: 0; }
.contact-info-item .ic svg { width: 23px; height: 23px; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-info-item a, .contact-info-item p { color: var(--c-body); font-size: .96rem; }
.contact-info-item a:hover { color: var(--c-primary); }

.form-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card > p { font-size: .96rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--c-ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  color: var(--c-ink); background: var(--c-bg-soft); transition: var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-primary); background: #fff; box-shadow: 0 0 0 4px rgba(8,145,178,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--c-muted); margin-top: 14px; text-align: center; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px; font-size: .95rem; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--c-ink); }
.faq-q .chev { width: 24px; height: 24px; flex-shrink: 0; color: var(--c-primary); transition: var(--transition); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; font-size: .98rem; }

/* ===================================================================
   ARTICLE / BLOG
   =================================================================== */
.prose { max-width: 760px; margin-inline: auto; }
.prose > p { margin-bottom: 18px; font-size: 1.06rem; color: var(--c-body); }
.prose > p:last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 42px 0 14px; letter-spacing: -.01em; }
.prose h3 { font-size: 1.22rem; margin: 28px 0 10px; }
.prose a { color: var(--c-primary); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose-list { display: grid; gap: 14px; margin: 4px 0 24px; }
.prose-list li { position: relative; padding-left: 34px; font-size: 1.04rem; color: var(--c-body); }
.prose-list li strong { color: var(--c-ink); }
.prose-list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--c-mint); }
.prose-list li::after { content: ''; position: absolute; left: 8px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--c-primary); }
.callout { background: var(--grad-soft); border-left: 4px solid var(--c-primary); border-radius: 14px; padding: 22px 26px; margin: 30px 0; }
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.callout .btn { margin-top: 14px; }

.post-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.post-cat { display: inline-block; background: var(--c-mint); color: var(--c-primary); font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 15px; border-radius: 999px; }
.post-date { color: var(--c-muted); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.post-date svg { width: 15px; height: 15px; }

.post-grid { grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; flex-direction: column; }
.post-card .post-cat { align-self: flex-start; margin-bottom: 16px; }
.post-card h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.35; }
.post-card p { font-size: .96rem; margin-bottom: 18px; flex-grow: 1; }
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--c-ink); color: #94a3b8; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 50px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: #64748b; }
.footer-about { margin: 20px 0 22px; font-size: .94rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cbd5e1; transition: var(--transition); }
.footer-social a:hover { background: var(--grad-primary); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .94rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; font-size: .94rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--c-primary-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom a:hover { color: #fff; }

/* ---- Barikode imzası ---- */
.barikode-signature {
  text-align: center; padding: 16px 0 22px; font-size: .9rem; color: #64748b;
  border-top: 1px solid rgba(255,255,255,.06);
}
.barikode-signature a {
  text-decoration: none; color: #cbd5e1; font-weight: 700;
  transition: all .3s ease; display: inline-block; border-bottom: 2px solid transparent;
}
.barikode-signature a:hover {
  color: var(--c-primary-light); border-bottom: 2px solid var(--c-primary-light); transform: translateY(-1px);
}
.barikode-signature .heart { color: #e74c3c; display: inline-block; margin: 0 3px; }

/* ===================================================================
   FLOATING ACTION BUTTONS
   =================================================================== */
.fab-stack { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: var(--transition); position: relative; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 27px; height: 27px; }
.fab--wa { background: #25d366; }
.fab--call { background: var(--grad-primary); }
.fab--call::after { content: ''; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(8,145,178,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(8,145,178,.5); } 70% { box-shadow: 0 0 0 16px rgba(8,145,178,0); } 100% { box-shadow: 0 0 0 0 rgba(8,145,178,0); } }

/* ===================================================================
   SCROLL REVEAL ANIMATION
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .services-grid, .testi-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-visual { order: -1; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .main-nav {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; background: #fff;
    padding: 16px 20px 24px; border-bottom: 1px solid var(--c-line); box-shadow: var(--shadow);
  }
  .site-header.menu-open .main-nav a { padding: 13px 16px; font-size: 1.05rem; }
  .site-header.menu-open .nav-cta { display: flex; margin-top: 8px; }
  .topbar-left .topbar-addr { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner { padding: 44px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .services-grid, .testi-grid, .values-grid, .team-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content p { font-size: 1.05rem; }
  .hero-float--tl { left: 8px; }
  .hero-float--br { right: 8px; }
  .form-card { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-social { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
