/* ============================================================
   YAVUZ LUXURY APART — Tasarım Sistemi
   Eksen Studio | Modern sunum katmanı
   Temel: insaatv1 / Bootstrap 4 grid korundu
   Yaklaşım: Doğa-lüks, sıcak, görsel ağırlıklı (konaklama)
   ============================================================ */

/* ── 1. CSS Değişkenleri (Panelden renk değişince site değişir) ─── */
:root {
  /* Marka renkleri — ayar.php'den PHP ile set edilir */
  --brand:         #0f302d;   /* Koyu Karadeniz Yeşili */
  --brand-hover:   #3a7a3d;
  --brand-light:   #eaf3de;
  --accent:        #C8A96E;   /* Sıcak Kum Altın */
  --accent-hover:  #b89055;

  /* Nötr palet */
  --ink:           #111827;
  --ink-soft:      #374151;
  --muted:         #6b7280;
  --line:          #e5e7eb;
  --surface:       #ffffff;
  --surface-soft:  #f7faf7;
  --surface-dark:  #0f302d;

  /* Tipografi */
  --f-base:  clamp(1rem, .9rem + .4vw, 1.125rem);
  --f-sm:    .875rem;
  --f-lg:    1.125rem;
  --f-h3:    clamp(1.2rem, 1rem + .8vw, 1.5rem);
  --f-h2:    clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  --f-h1:    clamp(2rem, 1.4rem + 3vw, 3.5rem);

  /* Spacing */
  --section-py: clamp(4rem, 3rem + 4vw, 7rem);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Gölge */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);

  /* Geçiş */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── 2. Reset & Temel ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--f-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Erişilebilirlik: klavye odağı */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hareketi azalt tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── 3. Yükleyici (Preloader) ─────────────────────────────── */
#pre-load {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--surface-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s;
}
#pre-load.loaded { opacity: 0; visibility: hidden; }
.loader-icon img { width: 120px; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.8;transform:scale(1)} 50%{opacity:1;transform:scale(1.04)} }

/* ── 4. Navbar ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .3s var(--ease), box-shadow .3s;
}
.site-header.scrolled {
  background: var(--surface);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
/* İç sayfalar: hero yok → nav her zaman solid */
.site-header.header-solid {
  background: var(--brand);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.site-header.header-solid .main-nav { background: transparent; }
.site-header.header-solid .nav-menu > li > a { color: rgba(255,255,255,.92); }
.site-header.header-solid .nav-menu > li > a:hover,
.site-header.header-solid .nav-menu > li.active > a { color: var(--accent); }
.site-header.header-solid .nav-hamburger span { background: #fff; }

/* Üst bar (masaüstü) */
.top-bar {
  background: var(--surface-dark);
  color: rgba(255,255,255,.8);
  font-size: .8125rem;
  padding: .45rem 0;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: rgba(255,255,255,.8); transition: color .2s; }
.top-bar a:hover { color: var(--accent); }
.top-bar-contact { display: flex; gap: 1.5rem; }
.top-bar-contact li { display: flex; align-items: center; gap: .4rem; }
.top-bar-contact i { color: var(--accent); font-size: .875rem; }
.top-bar-social { display: flex; gap: .75rem; }
.top-bar-social a { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; transition: .2s; }
.top-bar-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Ana nav */
.main-nav {
  background: transparent;
  padding: 1rem 0;
  transition: padding .3s var(--ease), background .3s;
}
.site-header.scrolled .main-nav { padding: .6rem 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Logo */
.nav-logo img { height: 52px; width: auto; object-fit: contain; transition: height .3s; }
.site-header.scrolled .nav-logo img { height: 42px; }

/* Menü linkleri */
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.site-header.scrolled .nav-menu > li > a { color: var(--ink-soft); }
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--accent);
  background: rgba(200,169,110,.1);
}

/* Alt menü */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s var(--ease);
  z-index: 100;
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li a {
  display: block;
  padding: .5rem .85rem;
  font-size: .875rem;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: .15s;
}
.nav-menu .sub-menu li a:hover { background: var(--surface-soft); color: var(--brand); }

/* Rezervasyon CTA (nav) */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  font-size: .875rem;
  padding: .55rem 1.1rem;
  border-radius: var(--r-pill);
  transition: .2s;
  white-space: nowrap;
}
.btn-nav-wa:hover { background: #1eb859; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,.4); }
.btn-nav-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Hamburger (mobil) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  width: 40px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s var(--ease);
  transform-origin: center;
}
.site-header.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil Menü Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--surface-dark);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: .35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-drawer li a {
  display: block;
  padding: .75rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: .15s;
}
.mobile-drawer li a:hover { background: rgba(255,255,255,.08); color: var(--accent); }
.mobile-drawer .sub-menu { padding-left: 1rem; }
.mobile-drawer .sub-menu li a { font-size: .9rem; }

.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.1); color: #fff; }

.drawer-contact { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.drawer-contact li { display: flex; align-items: center; gap: .75rem; padding: .5rem 0; color: rgba(255,255,255,.7); font-size: .875rem; }
.drawer-contact i { color: var(--accent); width: 16px; }

/* ── 5. Butonlar ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  min-height: 48px;
  transition: .2s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,95,46,.35); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,110,.4); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-wa:hover { background: #1eb859; border-color: #1eb859; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

.btn-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: rgba(255,255,255,.25); }

/* WhatsApp SVG ikonu */
.icon-wa { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ── 6. Hero / Slider ─────────────────────────────────────── */
.hero-slider-section { position: relative; overflow: hidden; }

.hero-slide {
  position: relative;
  min-height: 100svh;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-dark);
  display: flex !important;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,24,15,.78) 0%,
    rgba(17,24,15,.55) 55%,
    rgba(17,24,15,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: clamp(80px, 12vh, 120px) 1.5rem 0;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,169,110,.18);
  border: 1px solid rgba(200,169,110,.4);
  color: var(--accent);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: var(--f-h1);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-desc {
  font-size: clamp(1rem, .9rem + .4vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.5rem; justify-content: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  padding: .45rem .85rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
}
.trust-badge .score { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.trust-badge i { color: var(--accent); font-size: .8rem; }

/* Slick slider custom arrows/dots */
.hero-slider-section .slick-dots {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  display: flex !important;
  justify-content: center;
  gap: .5rem;
  z-index: 10;
}
.hero-slider-section .slick-dots li { width: auto; height: auto; }
.hero-slider-section .slick-dots li button {
  width: 28px; height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  font-size: 0;
  padding: 0;
  transition: .25s;
}
.hero-slider-section .slick-dots li.slick-active button {
  background: var(--accent);
  width: 48px;
}
.hero-slider-section .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;           /* ← "Previous"/"Next" yazısını gizle */
  color: transparent;     /* ← text rengi sıfırla */
  transition: .2s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.hero-slider-section .slick-arrow:hover { background: rgba(255,255,255,.25); }
.hero-slider-section .slick-prev { left: 2rem;  top: 65%; bottom: auto; transform: translateY(-50%); }
.hero-slider-section .slick-next { right: 2rem; top: 65%; bottom: auto; transform: translateY(-50%); }
.hero-slider-section .slick-prev::before {
  content: '←';
  font-family: inherit;
  font-size: 1.35rem;    /* ← ok ikonu büyüklüğü burada */
  color: #fff;
  line-height: 1;
}
.hero-slider-section .slick-next::before {
  content: '→';
  font-family: inherit;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}

/* Scroll down indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 5;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  animation: scroll-drop 1.5s ease-in-out infinite;
}
@keyframes scroll-drop { 0%,100%{opacity:0;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ── 7. Bölüm Ortak Stilleri ──────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--surface-dark); color: #fff; }
.section-brand { background: var(--brand); color: #fff; }

.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-label::before, .section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: .4;
  width: 28px;
}
.section-head.center .section-label::before,
.section-head.center .section-label::after { display: none; }

.section-title {
  font-size: var(--f-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.section-dark .section-title, .section-brand .section-title { color: #fff; }

.section-desc {
  margin-top: .85rem;
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 560px;
}
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }
.section-dark .section-desc, .section-brand .section-desc { color: rgba(255,255,255,.75); }

/* ── 8. Hakkımızda ────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 200px;
}
.about-badge-icon {
  width: 44px; height: 44px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-badge-text strong { display: block; font-size: 1.3rem; font-weight: 700; color: var(--ink); line-height: 1; }
.about-badge-text span { font-size: .8rem; color: var(--muted); }

.about-content { padding-left: clamp(0px, 3vw, 3rem); }

.about-features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .85rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 1rem;
  background: var(--surface-soft);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
}
.about-feature i { color: var(--brand); font-size: 1.1rem; margin-top: .15rem; }
.about-feature p { font-size: .9rem; color: var(--ink-soft); }
.about-feature strong { color: var(--ink); }

.about-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── 9. Hizmetler / Daireler ──────────────────────────────── */
.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-icon-badge {
  position: absolute;
  bottom: -18px;
  right: 1.25rem;
  width: 50px; height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(200,169,110,.5);
}

.service-body {
  padding: 1.75rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}
.service-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.service-footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--brand);
  transition: .2s;
}
.service-link:hover { color: var(--accent); gap: .6rem; }
.service-link i { font-size: .875rem; }
.service-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #f0fdf4;
  color: #1a7a36;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: var(--r-pill);
  transition: .2s;
}
.service-wa-btn:hover { background: #25D366; color: #fff; }

/* ── 10. Neden Biz ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: .3s var(--ease);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--brand-light);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--brand-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.why-text p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── 11. Sayılarla Biz ────────────────────────────────────── */
.counter-section {
  background: var(--surface-dark);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.counter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,15,.82);
}
.counter-inner { position: relative; z-index: 2; }
.counter-item { text-align: center; padding: 1.5rem 1rem; }
.counter-number {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .4rem;
}
.counter-label { font-size: .9375rem; color: rgba(255,255,255,.8); font-weight: 500; }
.counter-icon { color: var(--accent); font-size: 1.5rem; margin-bottom: .75rem; }

/* ── 12. Yorumlar ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin: 0 .75rem;
}
.testi-stars { color: var(--accent); font-size: .875rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote {
  position: relative;
  margin-bottom: 1.5rem;
}
.testi-quote::before {
  content: '"';
  font-size: 5rem;
  line-height: .6;
  color: var(--brand-light);
  font-family: Georgia, serif;
  position: absolute;
  top: -.5rem;
  left: -.5rem;
  z-index: 0;
}
.testi-quote p {
  position: relative;
  z-index: 1;
  font-size: .9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .85rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 600; font-size: .9375rem; color: var(--ink); }
.testi-platform { font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.testi-platform i { color: #003580; }

/* Slick override for testimonials */
.testi-slider .slick-dots { display: flex !important; justify-content: center; gap: .4rem; margin-top: 2rem; }
.testi-slider .slick-dots li { width: auto; height: auto; }
.testi-slider .slick-dots li button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); font-size: 0; padding: 0; transition: .2s; }
.testi-slider .slick-dots li.slick-active button { background: var(--brand); width: 20px; border-radius: 4px; }

/* ── 13. SSS / Accordion ──────────────────────────────────── */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: .75rem;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--brand-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
  transition: .15s;
}
.faq-question:hover { background: var(--surface-soft); }
.faq-item.open .faq-question { background: var(--brand); color: #fff; }

.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: .75rem;
  flex-shrink: 0;
  transition: .3s;
}
.faq-item.open .faq-icon { background: rgba(255,255,255,.2); color: #fff; transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 1.1rem 1.25rem;
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  background: var(--surface);
}

/* ── 14. Rezervasyon Formu ────────────────────────────────── */
.booking-section {
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(200,169,110,.06);
  border-radius: 50%;
}
.booking-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(44,95,46,.08);
  border-radius: 50%;
}
.booking-inner { position: relative; z-index: 2; }

.booking-info { padding-right: clamp(0px, 3vw, 3rem); }
.booking-info h2 { color: #fff; font-size: var(--f-h2); font-weight: 700; margin-bottom: 1rem; }
.booking-info p { color: rgba(255,255,255,.75); margin-bottom: 1.75rem; }

.booking-feature-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.booking-feature-list li { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.85); font-size: .9375rem; }
.booking-feature-list i { color: var(--accent); font-size: 1rem; }

.booking-form-wrap {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.booking-form-wrap h3 { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .35rem; letter-spacing: .02em; }
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--ink);
  background: var(--surface);
  transition: .2s;
}
.form-control:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(44,95,46,.12); }
.form-control::placeholder { color: var(--muted); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 18px; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: .75rem; }
.form-note i { color: #25D366; }

/* ── 15. Blog Kartları ────────────────────────────────────── */
.blog-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: .3s var(--ease);
  height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { overflow: hidden; }
.blog-img img { width: 100%; height: 210px; object-fit: cover; transition: .5s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.blog-date { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.blog-title { font-size: 1.0625rem; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: .85rem; transition: .15s; }
.blog-card:hover .blog-title { color: var(--brand); }
.blog-more { font-size: .875rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: .35rem; transition: .2s; }
.blog-more:hover { gap: .6rem; color: var(--accent); }

/* ── 16. İç Sayfa Header (Breadcrumb) ─────────────────────── */
.page-hero {
  min-height: 260px;
  background: var(--surface-dark);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem 0 2.5rem;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,15,.72);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: .5rem; }
.breadcrumb-list { display: flex; align-items: center; gap: .5rem; list-style: none; }
.breadcrumb-list li { font-size: .875rem; color: rgba(255,255,255,.65); }
.breadcrumb-list a { color: rgba(255,255,255,.65); transition: .15s; }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list .separator { color: rgba(255,255,255,.35); }
.breadcrumb-list li:last-child { color: var(--accent); }

/* ── Hizmet: boş görsel placeholder ─────────────────────── */
.service-img-placeholder {
  width: 100%; height: 240px;
  background: var(--surface-soft);
  display: flex; align-items: center; justify-content: center;
}
.service-img-placeholder i { font-size: 3rem; color: var(--brand); opacity: .35; }

/* ── Hizmet detay sayfası (hizmet-icerik.php) ────────────── */
.srv-ikon-badge {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  margin-bottom: 1.25rem;
}
.srv-detail-title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 700; color: var(--ink);
  margin-bottom: 1.25rem;
}
.srv-detail-desc {
  font-size: 1rem; line-height: 1.8; color: var(--ink-soft);
}
.srv-detail-desc p { margin-bottom: 1rem; }
.srv-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.srv-quick-info {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.srv-quick-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--ink-soft); }
.srv-quick-item i { color: var(--brand); margin-top: .15rem; width: 16px; text-align: center; }
.srv-quick-item a { color: var(--brand); font-weight: 600; }
.srv-quick-item strong { color: var(--ink); }
.srv-placeholder-box {
  width: 100%; min-height: 320px; border-radius: var(--r-lg);
  background: var(--surface-soft); border: 2px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
}

/* ── CTA Strip (hizmetlerimiz alt bandı) ─────────────────── */
.cta-strip {
  background: var(--brand);
  padding: 4rem 0;
}
.cta-strip-title { font-size: clamp(1.5rem,1.2rem+1.2vw,2rem); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.cta-strip-desc { color: rgba(255,255,255,.78); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── 17. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-logo img { height: 52px; object-fit: contain; margin-bottom: 1.25rem; }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  transition: .2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-heading {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: .2s;
}
.footer-links a:hover { color: var(--accent); padding-left: .35rem; }
.footer-links i { font-size: .8rem; color: var(--accent); }

.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: .9rem;
  flex-shrink: 0;
}
.footer-contact-text { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,.7); transition: .15s; }
.footer-contact-text a:hover { color: var(--accent); }
.footer-contact-text strong { display: block; color: rgba(255,255,255,.9); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .15rem; }

.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.45); transition: .15s; }
.footer-legal a:hover { color: var(--accent); }

/* ── 18. Sticky WhatsApp & Telefon ───────────────────────── */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.sticky-wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: .25s;
  position: relative;
}
.sticky-wa-btn:hover { background: #1eb859; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.sticky-wa-btn svg { width: 30px; height: 30px; fill: #fff; }
.sticky-wa-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse { 0%{opacity:.6;transform:scale(.9)} 80%,100%{opacity:0;transform:scale(1.35)} }

.sticky-phone-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #e63946;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(230,57,70,.4);
  transition: .25s;
}
.sticky-phone-btn:hover { background: #cc2e3b; transform: scale(1.08); }
.sticky-phone-btn i { color: #fff; font-size: 1.1rem; animation: phone-ring 3s ease-in-out infinite; }
@keyframes phone-ring {
  0%,45%,55%,100%{transform:rotate(0)}
  48%{transform:rotate(-15deg)}
  52%{transform:rotate(15deg)}
}

/* ── 19. Scroll Üste Dön ──────────────────────────────────── */
#scrollUp {
  position: fixed;
  bottom: 100px;
  right: 22px;
  width: 40px; height: 40px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  box-shadow: var(--shadow-md);
}
#scrollUp.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollUp:hover { background: var(--brand-hover); }

/* ── 20. Yardımcı Sınıflar ────────────────────────────────── */
.mt-auto { margin-top: auto; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-brand { color: var(--brand); }
.fw-600 { font-weight: 600; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.divider { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.lazy { opacity: 0; transition: opacity .4s; }
.lazy.loaded { opacity: 1; }

/* ── 21. Responsive (Mobil Öncelikli) ─────────────────────── */
@media (max-width: 991px) {
  /* Menü gizle, hamburger göster */
  .nav-menu-wrap, .top-bar { display: none; }
  .nav-hamburger { display: flex; }
  /* Hamburger her zaman görünür olsun: koyu bg + kalın çizgi */
  .nav-hamburger {
    background: rgba(0,0,0,.35);
    border-radius: 6px;
    padding: 8px 7px;
    gap: 6px;
  }
  .nav-hamburger span {
    height: 3px;
    width: 26px;
    box-shadow: none;
  }
  .main-nav { padding: .85rem 0; background: var(--brand) !important; }
  .site-header.scrolled .main-nav { background: #fff !important; }
  .site-header.scrolled .nav-hamburger span { background: #222 !important; }
  .site-header.scrolled .main-nav { padding: .6rem 0; }
  .nav-logo img { height: 44px; }
  .site-header.scrolled .nav-logo img { height: 38px; }
  .nav-inner { justify-content: space-between; }

  /* Hamburger her zaman görünür:
     Scroll öncesi hero üstünde beyaz span kaybolabilir.
     Gradient overlay + box-shadow ile tüm durumlarda netleştir. */
  .site-header:not(.scrolled):not(.header-solid) .main-nav {
    background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.05) 100%);
  }
  .nav-hamburger span {
    box-shadow: 0 1px 3px rgba(0,0,0,.5);
  }

  /* Hakkımızda */
  .about-content { padding-left: 0; margin-top: 2rem; }
  .about-badge-float { left: 1rem; }

  /* Rezervasyon */
  .booking-info { padding-right: 0; margin-bottom: 2.5rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --section-py: 3rem; }

  .hero-slide { min-height: 100dvh; }
  .hero-actions { gap: .75rem; }
  .hero-actions .btn { padding: .65rem 1.35rem; font-size: .875rem; }
  .hero-trust { gap: .75rem; }

  .why-grid { grid-template-columns: 1fr; }

  .about-img-wrap img { height: 300px; }
  .about-badge-float { display: none; }

  .testi-slider .slick-prev,
  .testi-slider .slick-next { display: none !important; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .sticky-wa-btn { width: 52px; height: 52px; }
  .sticky-phone-btn { width: 44px; height: 44px; }

  /* Nav CTA butonu gizle (drawer'da var) */
  .btn-nav-wa-wrap { display: none; }

  .scroll-hint { display: none; }

  .service-img img { height: 200px; }
}

@media (max-width: 480px) {
  .hero-trust .trust-badge { font-size: .75rem; padding: .35rem .65rem; }
}

/* ── 22. Print ────────────────────────────────────────────── */
@media print {
  .site-header, .sticky-wa, #scrollUp, .hero-slider-section { display: none; }
  .section { padding: 1rem 0; }
}

/* ── 23. Dark Mode ──────────────────────────────────────────── */
/* Toggle butonu */
.dark-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.dark-toggle:hover { background: rgba(255,255,255,.22); }
.site-header.scrolled .dark-toggle,
.site-header.header-solid.scrolled .dark-toggle {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--ink);
}

/* CSS değişkenleri — dark tema */
[data-theme="dark"] {
  --ink:          #e2e8f0;
  --ink-soft:     #94a3b8;
  --muted:        #64748b;
  --line:         #1c3a28;
  --surface:      #081410;
  --surface-soft: #0f2218;
  --brand-light:  rgba(44,95,46,.18);
  --shadow-sm:    0 1px 3px rgba(0,0,0,.5);
  --shadow-md:    0 4px 16px rgba(0,0,0,.6);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.7);
}

[data-theme="dark"] body                { background: #081410; color: var(--ink); }
[data-theme="dark"] .section-soft       { background: #0f2218; }

/* Header */
[data-theme="dark"] .site-header.scrolled                       { background: #122418; box-shadow: 0 2px 20px rgba(0,0,0,.5); }
[data-theme="dark"] .site-header.scrolled .nav-menu > li > a   { color: #e2e8f0; }
[data-theme="dark"] .site-header.header-solid.scrolled          { background: #122418; }
[data-theme="dark"] .dark-toggle                                { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #e2e8f0; }
[data-theme="dark"] .site-header.scrolled .dark-toggle          { background: #1e3a28; border-color: #2a4a35; color: #e2e8f0; }

/* Kartlar */
[data-theme="dark"] .service-card       { background: #122418; }
[data-theme="dark"] .service-body h3    { color: #e2e8f0; }
[data-theme="dark"] .service-body p     { color: #94a3b8; }
[data-theme="dark"] .why-card           { background: #122418; border-color: #1c3a28; }
[data-theme="dark"] .why-card h3        { color: #e2e8f0; }
[data-theme="dark"] .why-card p         { color: #94a3b8; }
[data-theme="dark"] .testi-card         { background: #122418; }
[data-theme="dark"] .testi-card p       { color: #94a3b8; }
[data-theme="dark"] .faq-item           { background: #122418; border-color: #1c3a28; }
[data-theme="dark"] .faq-item.open      { background: #122418; }
[data-theme="dark"] .faq-question       { color: #e2e8f0; }
[data-theme="dark"] .faq-answer p       { color: #94a3b8; }
[data-theme="dark"] .srv-quick-info     { background: #122418; border-color: #1c3a28; }

/* Form alanları */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #122418 !important;
  border-color: #1c3c28 !important;
  color: #e2e8f0 !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: #4a6280 !important; }
[data-theme="dark"] label                { color: #cbd5e1; }

/* İletişim/rezervasyon form kutuları */
[data-theme="dark"] .col-lg-7 > div[style*="background:var(--surface)"],
[data-theme="dark"] div[style*="background:var(--surface)"][style*="border-radius"] {
  background: #122418 !important;
  border-color: #1c3a28 !important;
}

/* Hakkımızda, SSS CTA kutusu */
[data-theme="dark"] .section-header + div,
[data-theme="dark"] div[style*="background:var(--surface-soft)"] { background: #122418 !important; }

/* Footer */
[data-theme="dark"] .site-footer        { background: #040e0b; }
[data-theme="dark"] .footer-bottom      { border-color: #1e293b; }
[data-theme="dark"] .footer-desc        { color: #64748b; }
[data-theme="dark"] .footer-links a     { color: #64748b; }
[data-theme="dark"] .footer-links a:hover { color: var(--accent); }
[data-theme="dark"] .footer-copy        { color: #2a4a35; }

/* Mobil drawer */
[data-theme="dark"] .mobile-drawer      { background: #122418; }
[data-theme="dark"] .mobile-drawer a    { color: #e2e8f0; }
[data-theme="dark"] .drawer-close       { color: #e2e8f0; }

.sticky-insta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(214,36,159,.45);
  transition: transform .2s, box-shadow .2s;
}
.sticky-insta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(214,36,159,.6);
  color: #fff;
}