/* ============================================================
   İzmir İlaçlama Firmaları — Aegis Shield Tasarım Sistemi
   Farklı kimlik: Koyu lacivert + teal + terracotta + krem
   ============================================================ */

:root {
  --ink:          #0B1220;
  --ink-soft:     #151D2E;
  --brand:        #0E7490;
  --brand-deep:   #0C4A6E;
  --brand-glow:   #22D3EE;
  --accent:       #E07A5F;
  --accent-deep:  #C45C42;
  --cream:        #FDF8F3;
  --sand:         #F3EDE4;
  --white:        #FFFFFF;
  --muted:        #64748B;
  --line:         #E7DDD2;
  --wa:           #25D366;
  --wa-dark:      #1DA851;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow:       0 18px 50px rgba(11, 18, 32, .12);
  --shadow-soft:  0 8px 30px rgba(11, 18, 32, .08);
  --font:         'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --container:    1180px;
  --header-h:     78px;
  --ease:         cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: .25s var(--ease); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  min-width: 0;
}
.logo:hover .logo-icon { transform: translateY(-1px); }
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(14, 116, 144, .35);
  transition: transform .25s var(--ease);
}
.logo-icon--sm { width: 40px; height: 40px; box-shadow: 0 4px 16px rgba(14, 116, 144, .2); }
.logo-text { display: flex; flex-direction: column; line-height: 1.12; min-width: 0; }
.logo-main {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.logo-geo {
  color: var(--brand-glow);
  font-weight: 800;
}
.logo-keyword {
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #fde8e2 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.52);
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.nav-links a,
.nav-links .nav-dropdown-toggle {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.nav-links .nav-dropdown-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
.nav-links a:hover,
.dropdown:hover .nav-dropdown-toggle { background: rgba(255,255,255,.08); color: var(--white); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
}
.nav-tel:hover { background: rgba(255,255,255,.08); }
.nav-wa, .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: .9rem;
}
.nav-wa:hover, .btn-wa:hover {
  background: var(--wa-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin-top: 4px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 1100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.dropdown-menu-wide { min-width: 300px; columns: 2; }
.dropdown-menu-all {
  break-inside: avoid;
  column-span: all;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.dropdown-menu-all a {
  color: var(--brand-deep) !important;
  font-weight: 800 !important;
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 600;
}
.dropdown-menu a:hover { background: var(--sand); color: var(--brand-deep); }
.dropdown:hover .dropdown-menu,
.dropdown.is-open .dropdown-menu { display: block; }
.dropdown.is-open .nav-dropdown-toggle { background: rgba(255,255,255,.08); color: var(--white); }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, .55);
  z-index: 1090;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.mobile-nav-backdrop.open {
  display: block;
  opacity: 1;
}
#mobile-nav {
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: min(100%, 360px);
  background: var(--ink);
  padding: 0;
  overflow: hidden;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .3s var(--ease), visibility .3s;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .25);
}
#mobile-nav.open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-nav-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px 32px;
}
.mobile-nav-list > li > a,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.mobile-nav-list > li > a:hover,
.mobile-nav-toggle:hover { color: var(--brand-glow); }
.mobile-nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  margin-left: 12px;
}
.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(-135deg);
}
.mobile-nav-submenu {
  padding: 4px 0 8px 12px;
}
.mobile-nav-submenu a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 500;
}
.mobile-nav-submenu a:hover { color: var(--brand-glow); }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
body.nav-open { overflow: hidden; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 580px;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 72px 0;
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  min-height: 420px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 42%);
  z-index: 1;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, .12);
  border: 1px solid rgba(34, 211, 238, .28);
  color: #A5F3FC;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-glow);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  max-width: 520px;
}
.hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px;
}
.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand-glow);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: .78rem; color: rgba(255,255,255,.6); }

.hero-inner { padding: 0; }
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,.35) 0%, rgba(11,18,32,.88) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 48px;
  width: 100%;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.page-banner p {
  color: rgba(255,255,255,.78);
  max-width: 640px;
  font-size: 1.02rem;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 12px 30px rgba(224, 122, 95, .35);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-weight: 700;
  background: transparent;
}
.btn-secondary:hover { background: rgba(255,255,255,.08); color: var(--white); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  color: var(--brand-deep);
  font-weight: 700;
  background: transparent;
}
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── TRUST ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-top: -1px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--sand);
  border-radius: var(--radius);
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section.bg-light { background: var(--white); }
.section.bg-sand { background: var(--sand); }
.section-header { margin-bottom: 42px; max-width: 720px; }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-kicker {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p { color: var(--muted); font-size: 1.02rem; }

/* ── SERVICE CARDS (PHOTO) ────────────────────────────── */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  min-height: 280px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform .5s var(--ease);
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(11,18,32,.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.photo-card-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, .18);
  color: #A5F3FC;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.photo-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.photo-card h3 a { color: inherit; }
.photo-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
  line-height: 1.5;
}
.photo-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.photo-card-actions a {
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.photo-card-actions a:hover { background: var(--accent); border-color: var(--accent); }
.photo-card.span-6 { grid-column: span 6; min-height: 320px; }
.photo-card.span-4 { grid-column: span 4; }
.photo-card.span-3 { grid-column: span 3; min-height: 240px; }

/* ── LOCATION CARDS ───────────────────────────────────── */
.locations-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 180px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.location-photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.location-photo-card:hover img { transform: scale(1.06); }
.location-photo-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(11,18,32,.9));
  color: var(--white);
}
.location-photo-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
.location-photo-card span { font-size: .76rem; color: rgba(255,255,255,.7); }

/* ── GALLERY ──────────────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,18,32,.72);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
}

/* ── FEATURES / CTA ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(14, 116, 144, .25);
}
.feature-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-card p { font-size: .9rem; color: var(--muted); }

.cta-panel {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.cta-panel::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  right: -60px;
  top: -80px;
}
.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 12px;
  position: relative;
}
.cta-panel p { color: rgba(255,255,255,.82); position: relative; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; position: relative; }
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-weight: 700;
}
.btn-secondary-light:hover { background: rgba(255,255,255,.22); color: var(--white); }

/* ── CONTENT PAGES ────────────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 14px 0;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb-list a:hover { color: var(--brand); }
.breadcrumb-sep { opacity: .5; }

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.article-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.article-img img { width: 100%; height: 360px; object-fit: cover; }
.article-content { padding: 36px 40px; }
.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sand);
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.1rem; font-weight: 800; margin: 20px 0 8px; color: var(--ink-soft); }
.article-content p, .article-content li { color: var(--muted); margin-bottom: 14px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 16px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.service-list-box, .neighborhoods-box {
  padding: 28px 40px 36px;
  border-top: 1px solid var(--line);
}
.service-list-box h2, .neighborhoods-box h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink);
}
.service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--sand);
  border: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.service-link-item:hover, .service-link-item.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.neighborhoods-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.neighborhood-item {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}
.neighborhood-item:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 18px; }
.sidebar-cta {
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--white);
  text-align: center;
}
.sidebar-cta h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.sidebar-cta p { font-size: .86rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-widget h3 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.sidebar-list a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
}
.sidebar-list a:hover { color: var(--brand); padding-left: 4px; }

.map-embed iframe { border-radius: var(--radius); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  max-width: 100%;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.footer-logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.footer-logo-main .logo-geo { color: var(--brand); }
.footer-logo-main .logo-keyword {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-logo-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .03em;
  margin-top: 2px;
}
.footer-brand p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-trust span {
  font-size: .76rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--brand-deep);
}
.footer-col h3 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  padding: 5px 0;
  font-weight: 600;
}
.footer-col a:hover { color: var(--brand); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
}
.footer-wa-btn:hover { background: var(--wa-dark); color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  background: var(--sand);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--brand); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── CONTACT / MISC ───────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 6px; color: var(--muted); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

/* Legacy class aliases */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, .12);
  border: 1px solid rgba(34, 211, 238, .28);
  color: #A5F3FC;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}
.hero-content, .hero-content-inner { max-width: 720px; }
.hero-highlight { color: var(--brand-glow); font-style: italic; }
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-glow);
  display: inline-block;
}
.services-grid { display: contents; }
.service-card { display: contents; }
.locations-grid { display: contents; }
.location-card { display: contents; }
.cta-section { padding: 80px 0; background: transparent; }
.cta-box { display: contents; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-item, .stat-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-number, .stat-num { font-size: 2rem; font-weight: 800; color: var(--brand); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin: 0 22px 18px;
}
.faq-cta {
  margin-top: 32px;
  text-align: center;
}
.faq-list--wide { max-width: 920px; }
.faq-page-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.faq-toc-chip {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.faq-toc-chip:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
  transform: translateY(-1px);
}
.faq-category-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.faq-kur-notu {
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 12px 16px;
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}
.faq-category-header h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 6px;
}
.faq-category-header p {
  color: var(--muted);
  font-size: .9rem;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; order: -1; }
  .hero-visual::before { background: linear-gradient(180deg, transparent 40%, var(--ink) 100%); }
  .hero-copy { padding: 40px 0 56px; }
  .services-bento .photo-card.span-6,
  .services-bento .photo-card.span-4,
  .services-bento .photo-card.span-3 { grid-column: span 6; }
  .locations-mosaic { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { grid-template-columns: 1fr; text-align: center; }
  .cta-buttons { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .logo-sub { display: none; }
}

@media (max-width: 1100px) {
  .main-nav, .header-wa, .header-search { display: none; }
  .hamburger { display: flex; }
  .logo-sub { display: none; }
}

@media (min-width: 1101px) {
  .sticky-cta-tel { display: none; }
  .sticky-cta.visible { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logo-main { font-size: .92rem; }
  .logo-icon { width: 38px; height: 38px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bento .photo-card { grid-column: span 12 !important; }
  .locations-mosaic { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .content-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .article-content, .service-list-box, .neighborhoods-box { padding-inline: 22px; }
  .service-links { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .dropdown-menu { display: none !important; }
}

@media (max-width: 480px) {
  .locations-mosaic { grid-template-columns: 1fr; }
  .hero-cta, .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary, .btn-xl { justify-content: center; }
}

/* ── v2.5: CRO, arama, fiyat, sticky ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.price-ticker { background: var(--brand-deep); color: rgba(255,255,255,.92); font-size: .78rem; }
.price-ticker-inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 0; }
.price-ticker-text { text-align: center; }

.header-search { position: relative; flex-shrink: 0; }
.header-search-input { width: 130px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: .82rem; }
.header-search-input:focus { outline: none; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); }
.header-search-input::placeholder { color: rgba(255,255,255,.55); }
.header-search-results, .site-search-results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; min-width: 240px; max-height: 280px; overflow: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); z-index: 1200; list-style: none; margin: 0; padding: 6px; }
.header-search-results li a, .site-search-results li a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink); font-size: .86rem; font-weight: 600; }
.header-search-results li a:hover, .site-search-results li a:hover { background: var(--sand); }
.site-search-block { max-width: 520px; margin: 0 auto; position: relative; }
.site-search-input { width: 100%; padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 1rem; }
.site-search-label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--ink-soft); }
.sidebar-price-box { background: linear-gradient(145deg, #fff 0%, var(--sand) 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-bottom: 16px; }
.sidebar-price-kicker { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); }
.sidebar-price-box h3 { font-size: 1rem; margin: 8px 0 6px; }
.sidebar-price-value { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.sidebar-price-note, .sidebar-price-kur { font-size: .78rem; color: var(--ink-muted); margin-top: 6px; }
.sidebar-price-link { display: inline-block; margin-top: 10px; font-size: .82rem; font-weight: 700; color: var(--brand); }
.process-timeline { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.process-timeline h2 { font-size: 1.2rem; margin-bottom: 16px; }
.process-steps { list-style: none; display: grid; gap: 12px; }
.process-step { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.process-num { width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.process-step p { font-size: .88rem; color: var(--ink-muted); margin-top: 4px; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  display: none; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,18,32,.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.sticky-cta.visible { display: grid; grid-template-columns: 1fr 1fr; }
.sticky-cta-tel,
.sticky-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 16px; border-radius: 10px; font-weight: 800; font-size: .9rem;
}
.sticky-cta-tel { background: var(--brand); color: #fff; }
.sticky-cta-wa { background: #25d366; color: #fff; }
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 72px; z-index: 998; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); max-width: 640px; margin: 0 auto; }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { font-size: .82rem; color: var(--ink-soft); margin: 0; }
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--sand); font-weight: 800; }
.teklif-page-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.teklif-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.teklif-form-grid { display: grid; gap: 14px; margin-bottom: 16px; }
.teklif-form label { display: grid; gap: 6px; font-weight: 700; font-size: .88rem; }
.teklif-form select, .teklif-form input, .teklif-form textarea { padding: 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.teklif-form-kvkk { font-size: .76rem; color: var(--ink-muted); margin-top: 10px; text-align: center; }
.season-banner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.season-banner p { font-size: .88rem; color: var(--ink-muted); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.review-stars { color: #f59e0b; margin-bottom: 8px; }
.review-card footer { margin-top: 12px; display: flex; flex-direction: column; gap: 2px; font-size: .82rem; }
.reviews-gbp { text-align: center; margin-top: 20px; font-weight: 700; }
.services-bento--compact { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.service-chip { padding: 10px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 700; font-size: .86rem; }
.section--tight { padding-top: 20px; padding-bottom: 20px; }

@media (max-width: 768px) {
  .price-ticker-text { font-size: .72rem; }
  .teklif-page-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}