/* ======= RESET & BASE ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #0d2244;
  --navy-mid:  #14305e;
  --blue:      #1a56db;
  --blue-lt:   #3b82f6;
  --gold:      #f59e0b;
  --gold-lt:   #fcd34d;
  --gray-bg:   #f4f7fb;
  --gray-lt:   #e8eef7;
  --gray-text: #4a5568;
  --white:     #ffffff;
  --text:      #1c2b3a;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(13,34,68,.10);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ======= HEADER ======= */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.logo-text span { display: block; }
.logo-name { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.logo-tag  { font-size: .72rem; color: var(--gold-lt); letter-spacing: .4px; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .95rem;
  padding: 10px 20px; border-radius: 6px;
  transition: background .2s;
}
.phone-link:hover { background: var(--gold-lt); }
.phone-link i { font-size: .95rem; flex-shrink: 0; }

/* ======= HERO ======= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4080 100%);
  padding: 80px 24px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner { position: relative; max-width: 860px; margin: 0 auto; padding-bottom: 72px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.35);
  color: var(--gold-lt); font-size: .82rem; font-weight: 600;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 28px;
}
.hero-badge i { font-size: .8rem; color: var(--gold-lt); }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 640px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 1.05rem;
  padding: 16px 32px; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,.45); }
.btn-primary i { font-size: 1rem; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 16px 32px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

/* ======= STATS SLIDER ======= */
.stats-slider-wrap {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stats-slider-wrap::before,
.stats-slider-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.stats-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.stats-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.stats-track {
  display: flex;
  width: max-content;
  animation: slideStats 28s linear infinite;
  will-change: transform;
  contain: layout style;
}
.stats-track:hover { animation-play-state: paused; }
@keyframes slideStats {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stat-item {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 48px;
  border-right: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
  white-space: nowrap;
}
.stat-icon {
  width: 48px; height: 48px;
  background: rgba(245,158,11,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon i { font-size: 1.25rem; color: var(--gold); }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.85); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* ======= SECTION BASE ======= */
.section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub { color: var(--gray-text); font-size: 1.05rem; max-width: 620px; }

/* ======= WHY CARDS ======= */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}
.why-card {
  background: var(--gray-bg);
  border: 1px solid var(--gray-lt);
  border-radius: 12px; padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.why-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-card p  { color: var(--gray-text); font-size: .92rem; line-height: 1.6; }

/* ======= DISTRICTS GRID ======= */
.bg-gray { background: var(--gray-bg); }
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-top: 44px;
}
.district-card {
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: 10px; padding: 20px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  font-weight: 600; color: var(--navy);
}
.district-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,86,219,.12);
  transform: translateY(-2px);
}
.district-card i { font-size: .95rem; color: var(--blue); flex-shrink: 0; }

/* ======= PROCESS ======= */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px; position: relative;
}
.step { text-align: center; padding: 32px 20px; }
.step-num {
  width: 56px; height: 56px;
  background: var(--navy); color: var(--gold);
  border-radius: 50%; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.step p  { color: var(--gray-text); font-size: .9rem; }

/* ======= DISTRICT PAGE INTRO ======= */
.district-intro {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 24px;
}
.district-intro-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: center;
}
.district-intro h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--white); margin-bottom: 20px; }
.district-intro p  { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7; }
.contact-box {
  background: var(--white);
  border-radius: 14px; padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.contact-box h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-box p { color: var(--gray-text); font-size: .88rem; margin-bottom: 24px; }
.contact-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  font-weight: 800; font-size: 1.1rem;
  padding: 16px 20px; border-radius: 8px;
  margin-bottom: 12px;
  transition: background .2s;
}
.contact-phone:hover { background: var(--navy-mid); }
.contact-phone i { font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.contact-note { font-size: .78rem; color: var(--gray-text); text-align: center; }

/* ======= FEATURES LIST ======= */
.features-list { list-style: none; margin: 28px 0; }
.features-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: .95rem; color: var(--white); font-weight: 500;
}
.features-list li:last-child { border-bottom: none; }
.features-list i { font-size: .95rem; color: var(--gold); flex-shrink: 0; width: 20px; text-align: center; }

/* ======= BLOG ======= */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 44px;
}
.blog-card {
  background: var(--white); border-radius: 12px;
  border: 1.5px solid var(--gray-lt); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img {
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
}
.blog-card-img i { font-size: 2.8rem; color: rgba(245,158,11,.65); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--blue); background: rgba(26,86,219,.08);
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p  { font-size: .88rem; color: var(--gray-text); line-height: 1.65; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700; color: var(--blue);
  margin-top: 16px; transition: gap .2s;
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more i { font-size: .8rem; color: var(--blue); }

/* ======= REVIEWS ======= */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 44px;
}
.review-card {
  background: var(--white); border-radius: 12px;
  border: 1.5px solid var(--gray-lt);
  padding: 28px; position: relative;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .93rem; color: var(--gray-text); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.review-text::before { content: '"'; font-size: 2.5rem; color: var(--gold); line-height: 0; vertical-align: -0.7rem; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.review-loc  { font-size: .78rem; color: var(--gray-text); }
.review-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(26,86,219,.08); color: var(--blue);
  font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}

/* ======= INFO BOXES ======= */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 44px;
}
.info-box {
  border-left: 4px solid var(--blue);
  background: var(--gray-bg); padding: 28px 24px; border-radius: 0 10px 10px 0;
}
.info-box h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.info-box p  { font-size: .9rem; color: var(--gray-text); line-height: 1.7; }
.info-box.gold  { border-left-color: var(--gold); }
.info-box.green { border-left-color: #10b981; }

/* ======= TIPS TABLE ======= */
.tips-table { width: 100%; border-collapse: collapse; margin-top: 36px; }
.tips-table th {
  background: var(--navy); color: var(--white);
  padding: 14px 20px; text-align: left; font-size: .88rem;
}
.tips-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--gray-lt);
  font-size: .9rem; color: var(--text);
}
.tips-table tr:nth-child(even) td { background: var(--gray-bg); }
.tips-table tr:last-child td { border-bottom: none; }
.badge-yes  { color: #0a7a50; font-weight: 700; }
.badge-warn { color: #92600a; font-weight: 700; }

/* ======= FAQ ======= */
.faq-list { margin-top: 40px; }
.faq-item {
  border: 1.5px solid var(--gray-lt);
  border-radius: 10px; margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  padding: 20px 24px; font-weight: 700; font-size: .97rem;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); transition: background .2s;
}
.faq-q:hover { background: var(--gray-bg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .93rem; color: var(--gray-text); line-height: 1.7;
  background: var(--gray-bg);
}
.faq-a.open { max-height: 300px; padding: 16px 24px 20px; }

/* ======= NEARBY ======= */
.nearby-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.nearby-tag {
  background: var(--gray-bg); border: 1.5px solid var(--gray-lt);
  border-radius: 6px; padding: 8px 18px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  transition: border-color .2s, color .2s;
}
.nearby-tag:hover { border-color: var(--blue); color: var(--blue); }

/* ======= CTA STRIP ======= */
.cta-strip { background: var(--gold); padding: 56px 24px; text-align: center; }
.cta-strip h2 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.cta-strip p  { color: #1c2b3a; margin-bottom: 28px; font-size: 1.05rem; }
.cta-strip .btn-primary { background: var(--navy); color: var(--white); }
.cta-strip .btn-primary svg { fill: var(--gold); }
.cta-strip .btn-primary:hover { background: var(--navy-mid); }

/* ======= FOOTER ======= */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 56px 24px 28px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo-name { font-size: 1.4rem; color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,.8); }
.footer-col h4, .footer-col-h { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 36px 0 20px; }
.footer-bottom { text-align: center; font-size: .8rem; color: rgba(255,255,255,.8); }

/* ======= BREADCRUMB ======= */
.breadcrumb { background: var(--gray-bg); padding: 14px 24px; font-size: .84rem; color: var(--gray-text); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-text); }

/* ======= MOBILE ======= */
@media (max-width: 768px) {
  .hero { padding: 52px 16px 0; }
  .district-intro-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .header-inner { padding: 0 16px; }
  .phone-link span { display: none; }
  .section { padding: 52px 16px; }
  .stat-item { padding: 22px 28px; }
  .tips-table { font-size: .82rem; }
  .tips-table th, .tips-table td { padding: 10px 12px; }
}

/* ======= WHATSAPP BUTTON ======= */
.wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-weight: 800; font-size: 1rem;
  padding: 14px 20px; border-radius: 8px;
  margin-top: 10px;
  transition: background .2s;
}
.wa-btn:hover { background: #1ebe5d; }
.wa-btn i { font-size: 1.1rem; color: #fff; flex-shrink: 0; }

/* ======= HEADER NAV ======= */
.header-nav {
  display: flex; align-items: center; gap: 4px;
}
.header-nav a {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 600;
  padding: 8px 14px; border-radius: 6px;
  transition: background .2s, color .2s;
}
.header-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* blog-card as link */
a.blog-card { display: block; text-decoration: none; color: inherit; }

@media (max-width: 900px) {
  .header-nav { display: none; }
}

/* ======= HAMBURGER BUTTON ======= */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(255,255,255,.1); border: none;
  border-radius: 8px; cursor: pointer; padding: 8px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.18); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======= DRAWER ======= */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 200;
  opacity: 0; transition: opacity .3s;
}
.drawer-overlay.open { display: block; opacity: 1; }

.drawer {
  position: fixed; top: 0; right: -320px; bottom: 0;
  width: 300px; max-width: 85vw;
  background: var(--navy); z-index: 201;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 0 0 24px;
  box-shadow: -8px 0 32px rgba(0,0,0,.35);
}
.drawer.open { right: 0; }

.drawer-close {
  align-self: flex-end; margin: 16px 16px 0;
  background: rgba(255,255,255,.1); border: none;
  color: var(--white); font-size: 1.2rem;
  width: 36px; height: 36px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.2); }

.drawer-logo {
  padding: 20px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.drawer-logo .logo-name { display: block; font-size: 1.2rem; font-weight: 800; color: var(--white); }
.drawer-logo .logo-tag  { display: block; font-size: .72rem; color: var(--gold-lt); margin-top: 3px; }

.drawer-nav {
  display: flex; flex-direction: column;
  padding: 16px 0; flex: 1;
}
.drawer-nav a {
  padding: 14px 24px; color: rgba(255,255,255,.85);
  font-size: 1rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s, color .2s;
  display: flex; align-items: center; gap: 10px;
}
.drawer-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }

.drawer-contact {
  padding: 20px 20px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: .95rem;
  padding: 13px 18px; border-radius: 8px;
}
.drawer-phone i { font-size: .95rem; flex-shrink: 0; }
.drawer-wa {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 12px 18px; border-radius: 8px;
}
.drawer-wa i { font-size: 1rem; flex-shrink: 0; }

/* ======= MOBİL SABIT ALT BAR ======= */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  display: flex;
}
.mobile-bar-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 10px;
  font-weight: 800; font-size: .9rem;
  text-align: center; line-height: 1.2;
  transition: filter .2s;
}
.mobile-bar-btn:hover { filter: brightness(1.08); }
.mobile-bar-btn i { font-size: 1.15rem; flex-shrink: 0; }
.mobile-bar-call {
  background: var(--navy); color: var(--gold);
}
.mobile-bar-call i { color: var(--gold); }
.mobile-bar-wa {
  background: #1a9e52; color: #fff;
}
.mobile-bar-wa i { color: #fff; }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }
  .phone-link span { display: none; }

  /* Alt bar için body padding */
  body { padding-bottom: 64px; }
  .mobile-bar { display: flex; }
}
@media (min-width: 901px) {
  .mobile-bar { display: none; }
  .hamburger  { display: none; }
}


/* ======= FAQ TOGGLE (+/−) ======= */
.faq-toggle {
  font-size: 1.4rem; font-weight: 300; color: var(--blue);
  line-height: 1; flex-shrink: 0; margin-left: 12px;
  transition: transform .25s;
  width: 24px; text-align: center;
}


/* ======= SVG İKON STİLLERİ (telefon, WA, logo) ======= */
.logo-icon svg        { width: 26px; height: 26px; fill: var(--navy); }
.phone-link svg       { width: 18px; height: 18px; fill: var(--navy); flex-shrink: 0; }
.btn-primary svg      { width: 20px; height: 20px; fill: var(--navy); flex-shrink: 0; }
.contact-phone svg    { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.wa-btn svg           { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.drawer-phone svg     { width: 18px; height: 18px; fill: var(--navy); flex-shrink: 0; }
.drawer-wa svg        { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.mobile-bar-call svg  { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ======= EK İKON YUVALARI ======= */
.hero-badge svg      { width: 14px; height: 14px; fill: var(--gold-lt); flex-shrink: 0; }
.features-list svg   { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.district-card svg   { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }
.why-icon svg        { width: 26px; height: 26px; fill: #fff; }
.box-icon {
  width: 44px; height: 44px;
  background: rgba(26,86,219,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.box-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.info-box.gold .box-icon  { background: rgba(245,158,11,.14); }
.info-box.gold .box-icon svg  { fill: var(--gold); }
.info-box.green .box-icon { background: rgba(16,185,129,.14); }
.info-box.green .box-icon svg { fill: #10b981; }
.faq-toggle svg { width: 16px; height: 16px; transition: transform .25s; }
.faq-q.open .faq-toggle svg { transform: rotate(180deg); }
.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; margin-top: 16px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  transition: background .2s;
}
.footer-social:hover { background: var(--gold); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

/* ======= GALERİ ======= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 12px;
}
.work-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-top: 36px;
}
.work-strip .gallery-item img { height: 170px; }
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--gray-bg);
}
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(13,34,68,.88), rgba(13,34,68,0));
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 28px 16px 12px;
}
.mobile-bar-wa svg    { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ======= HERO ALTI ANA GÖRSEL ======= */
.hero-image-section {
  background: #f4f7fb;
  padding: 64px 24px;
}
.hero-image-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-image-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin: 10px 0 18px;
}
.hero-image-text p {
  color: #3a4a5c;
  font-size: 1.03rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.hero-img-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-img-list li {
  color: #1c2b3a;
  font-size: .97rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-img-list svg { width: 18px; height: 18px; fill: #10b981; flex-shrink: 0; }
.hero-image-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,34,68,.18);
  transform: translateZ(0);
}
.hero-image-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  display: block;
  object-fit: cover;
}

/* ======= NEDEN BİZ - FEATURE IMAGE ======= */
.why-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 36px 0 48px;
  box-shadow: 0 12px 48px rgba(13,34,68,.14);
}
.why-feature-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.why-feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,34,68,.92) 0%, transparent 100%);
  padding: 32px 32px 28px;
}
.why-feature-overlay span {
  color: #fcd34d;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .4px;
}

/* ======= SERVİS GÖRSEL BANDI ======= */
.service-visual-section {
  background: var(--navy);
  padding: 72px 24px;
}
.service-visual-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-visual-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.service-visual-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  display: block;
  object-fit: cover;
}
.service-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.service-stat-box {
  flex: 1;
  min-width: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}
.service-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fcd34d;
  line-height: 1.1;
}
.service-stat-lbl {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
  line-height: 1.3;
}

/* ======= RESPONSIVE - YENİ BÖLÜMLER ======= */
@media (max-width: 900px) {
  .hero-image-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-image-photo { order: -1; }
  .service-visual-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-stats-row { gap: 12px; }
}

/* ======= GPU LAYER (non-composited animation fix) ======= */
.why-card,
.blog-card,
.district-card,
.review-card,
.info-box,
.step,
.nearby-tag {
  will-change: auto;
}
.why-card:hover,
.blog-card:hover {
  will-change: transform;
}
/* Stats slider GPU katmanı */
.stats-track {
  backface-visibility: hidden;
}
