/* ═══════════════════════════════════════════════════════════════
   DENİZ ELEKTRİK — style.css
   Breakpoint Yapısı:
     BASE      → 1200px+ (Desktop Large)
     LG        → max-width: 1199px (Desktop Normal)
     MD        → max-width: 1023px (Tablet Landscape)
     SM        → max-width: 767px  (Tablet Portrait / Büyük Telefon)
     XS        → max-width: 479px  (Telefon)
     XXS       → max-width: 359px  (Küçük Telefon)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ─────────────────────────────────────────
   CSS DEĞİŞKENLERİ
───────────────────────────────────────── */
:root {
  --c-dark:        #262624;
  --c-dark2:       #1c1c1a;
  --c-dark3:       #2f2f2c;
  --c-dark4:       #111110;
  --c-green:       #1a8a4e;
  --c-green-mid:   #1faa5e;
  --c-green-light: #25cc70;
  --c-green-pale:  #eaf8f1;
  --c-green-dark:  #0d4a2a;
  --c-yellow:      #f5a623;
  --c-yellow-dark: #d48b10;
  --c-wa:          #25d366;
  --c-wa-dark:     #1aad52;
  --c-white:       #ffffff;
  --c-gray-50:     #f9f9f7;
  --c-gray-100:    #f1f1ee;
  --c-gray-200:    #e3e3df;
  --c-gray-400:    #a3a39c;
  --c-gray-600:    #686860;
  --c-gray-800:    #3c3c38;

  --f-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: all 0.28s var(--ease);

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-pill: 999px;

  --sh-sm:  0 2px 10px rgba(0,0,0,0.08);
  --sh-md:  0 6px 24px rgba(0,0,0,0.11);
  --sh-lg:  0 16px 56px rgba(0,0,0,0.15);
  --sh-xl:  0 24px 80px rgba(0,0,0,0.20);

  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --gap-2xl: 64px;

  --section-py: 96px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-dark);
  background: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─────────────────────────────────────────
   CONTAINER
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────────────────
   SVG İKONLAR — Tekrar Kullanılan
───────────────────────────────────────── */
svg { display: block; flex-shrink: 0; }


/* ─────────────────────────────────────────
   GENERIC SECTION (used on city/service pages)
───────────────────────────────────────── */
.section{
  padding: 72px 0;
  background: var(--c-white);
}
.section .sec-title{
  text-align:center;
}
.section .sec-sub{
  text-align:center;
  max-width: 820px;
  margin-left:auto;
  margin-right:auto;
}
.section .checklist{
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
}
/* ─────────────────────────────────────────
   SCROLL ANİMASYON
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════ */

/* — Hemen Ara (Sol-Alt) — */
.float-call {
  position: fixed;
  left: 28px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 12px 22px 12px 12px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 28px rgba(0,0,0,0.38);
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.float-call:hover {
  background: var(--c-dark3);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.48);
}
.float-call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-call-icon svg { width: 19px; height: 19px; fill: white; }

/* — WhatsApp (Sağ-Alt) — */
.float-wa {
  position: fixed;
  right: 28px;
  bottom: 32px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.50);
  transition: var(--trans);
}
.float-wa:hover {
  background: var(--c-wa-dark);
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 14px 40px rgba(37,211,102,0.60);
}
.float-wa svg { width: 30px; height: 30px; fill: white; }
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2.3s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.0); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════ */
#topbar {
  background: var(--c-dark4);
  padding: 10px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  font-family: var(--f-head);
  font-size: 0.77rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.02em;
}
.topbar-left strong {
  color: var(--c-green-light);
  font-weight: 700;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 15px;
  border-radius: var(--r-pill);
  transition: var(--trans);
  white-space: nowrap;
}
.topbar-btn svg { width: 14px; height: 14px; fill: currentColor; }
.topbar-btn.wa {
  background: var(--c-wa);
  color: var(--c-white);
}
.topbar-btn.wa:hover {
  background: var(--c-wa-dark);
  transform: translateY(-1px);
}
.topbar-btn.phone {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
}
.topbar-btn.phone:hover {
  color: var(--c-white);
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s var(--ease);
}
#header.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.40);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26,138,78,0.35);
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: var(--f-head);
  font-size: 1.10rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--f-head);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-green-light);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.025em;
  transition: color 0.22s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-green-light);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a i{
  font-size: 0.95em;
  opacity: 0.85;
}
.nav-links a .nav-text{ display:inline-block; }

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-yellow);
  color: var(--c-dark);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--trans);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,166,35,0.30);
}
.nav-btn-call svg { width: 14px; height: 14px; fill: currentColor; }
.nav-btn-call:hover {
  background: var(--c-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245,166,35,0.42);
}
.nav-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-wa);
  color: var(--c-white);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--trans);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}
.nav-btn-wa svg { width: 14px; height: 14px; fill: currentColor; }
.nav-btn-wa:hover {
  background: var(--c-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.42);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 9px 10px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  display: block;
  transition: var(--trans);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,22,14,0.93) 0%, rgba(15,30,20,0.82) 50%, rgba(20,40,28,0.78) 100%),
    url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1600&q=80') center / cover no-repeat;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,138,78,0.10) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.38);
  color: var(--c-yellow);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--c-yellow); }
h1.hero-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.13;
  color: var(--c-white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto 38px;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.hero-btn svg { width: 17px; height: 17px; fill: currentColor; }
.hero-btn.call {
  background: var(--c-yellow);
  color: var(--c-dark);
  box-shadow: 0 6px 22px rgba(245,166,35,0.38);
}
.hero-btn.call:hover {
  background: var(--c-yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245,166,35,0.50);
}
.hero-btn.wa {
  background: var(--c-wa);
  color: var(--c-white);
  box-shadow: 0 6px 22px rgba(37,211,102,0.34);
}
.hero-btn.wa:hover {
  background: var(--c-wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.48);
}
.hero-btn.outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.40);
}
.hero-btn.outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION ORTAK BAŞLIK
   ═══════════════════════════════════════════════════════════════ */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-green);
  background: var(--c-green-pale);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-light);
  background: rgba(37,204,112,0.10);
  border: 1px solid rgba(37,204,112,0.22);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.eyebrow-dark svg { width: 13px; height: 13px; fill: currentColor; }
h2.sec-title {
  font-family: var(--f-head);
  font-size: clamp(1.75rem, 3.2vw, 2.70rem);
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.20;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
h2.sec-title span { color: var(--c-green); }
h2.sec-title-white {
  font-family: var(--f-head);
  font-size: clamp(1.75rem, 3.2vw, 2.70rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.20;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
h2.sec-title-white span { color: var(--c-green-light); }
.sec-sub {
  font-size: 0.98rem;
  color: var(--c-gray-600);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.68;
}
.sec-sub-light {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.54);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════════════════════
   NEDEN BİZ — 3 Kart
   ═══════════════════════════════════════════════════════════════ */
#neden-biz {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 44px 32px 38px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--c-gray-200);
  background: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.40s var(--ease);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: rgba(26,138,78,0.15);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: transform 0.35s var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(-4deg); }
.why-icon svg { width: 32px; height: 32px; }
.why-card:nth-child(1) .why-icon { background: rgba(245,166,35,0.12); }
.why-card:nth-child(1) .why-icon svg { fill: var(--c-yellow); }
.why-card:nth-child(2) .why-icon { background: rgba(26,138,78,0.12); }
.why-card:nth-child(2) .why-icon svg { fill: var(--c-green); }
.why-card:nth-child(3) .why-icon { background: rgba(41,182,246,0.12); }
.why-card:nth-child(3) .why-icon svg { fill: #29b6f6; }
.why-card-body { }
.why-card-body h3 {
  font-family: var(--f-head);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 12px;
}
.why-card-body p {
  font-size: 0.89rem;
  color: var(--c-gray-600);
  line-height: 1.68;
}
/* Keep old selectors working too */
.why-card h3 {
  font-family: var(--f-head);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.89rem;
  color: var(--c-gray-600);
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════════════════════
   HİZMETLER — 4'lü Kart Grid
   ═══════════════════════════════════════════════════════════════ */
#hizmetler {
  padding: var(--section-py) 0;
  background: var(--c-gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--c-gray-200);
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acc, var(--c-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

/* Renk Aksan — Her Kart */
.service-card:nth-child(1)  { --acc: #1a8a4e; }
.service-card:nth-child(2)  { --acc: #e64a19; }
.service-card:nth-child(3)  { --acc: #0277bd; }
.service-card:nth-child(4)  { --acc: #6a1b9a; }
.service-card:nth-child(5)  { --acc: #e65100; }
.service-card:nth-child(6)  { --acc: #006064; }
.service-card:nth-child(7)  { --acc: #2e7d32; }
.service-card:nth-child(8)  { --acc: #ad1457; }
.service-card:nth-child(9)  { --acc: #f57f17; }
.service-card:nth-child(10) { --acc: #283593; }
.service-card:nth-child(11) { --acc: #558b2f; }
.service-card.diger-card    { --acc: var(--c-green); }

.sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--acc) 13%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--trans);
  flex-shrink: 0;
}
.sc-icon svg { width: 26px; height: 26px; fill: var(--acc); transition: fill 0.25s; }
.service-card:hover .sc-icon { background: var(--acc); }
.service-card:hover .sc-icon svg { fill: var(--c-white); }

.sc-name {
  font-family: var(--f-head);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.sc-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.sc-desc {
  font-size: 0.81rem;
  color: var(--c-gray-600);
  line-height: 1.63;
  flex: 1;
  margin-bottom: 18px;
}
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border: 1.5px solid var(--c-gray-200);
  color: var(--c-gray-800);
  background: transparent;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.sc-btn svg { width: 12px; height: 12px; fill: currentColor; }
.service-card:hover .sc-btn {
  background: var(--acc);
  border-color: var(--acc);
  color: var(--c-white);
}

/* Diğer Kart */
.diger-card {
  background: var(--c-dark);
  border-color: transparent;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 230px;
}
.diger-card .sc-icon { background: rgba(255,255,255,0.12); }
.diger-card .sc-icon svg { fill: var(--c-white); }
.diger-card .sc-name { color: var(--c-white); }
.diger-card .sc-tagline { color: var(--c-green-light); }
.diger-card .sc-desc { color: rgba(255,255,255,0.60); }
.diger-card .sc-btn {
  align-self: center;
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}
.diger-card .sc-btn:hover {
  background: var(--c-green-mid);
  border-color: var(--c-green-mid);
}
.diger-card:hover { transform: translateY(-6px); }
.diger-card::after { display: none; }

/* ═══════════════════════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════════════════════ */
#stats {
  background: var(--c-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(26,138,78,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(26,138,78,0.06) 0%, transparent 65%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 8px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-head);
  font-size: clamp(3rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--f-head);
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   GALERİ — 3'lü Grid
   ═══════════════════════════════════════════════════════════════ */
#galeri {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--c-gray-200);
  transition: var(--trans);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0c1a0f 0%, #183224 50%, #0a1510 100%);
}
.gallery-placeholder svg { width: 52px; height: 52px; fill: rgba(37,204,112,0.18); }
.gallery-item > img.gallery-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform 0.55s var(--ease);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,25,14,0.95) 0%,
    rgba(8,25,14,0.40) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green-light);
  margin-bottom: 5px;
}
.gallery-overlay strong {
  font-family: var(--f-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-white);
}
.gallery-note {
  margin-top: 30px;
  text-align: center;
  background: var(--c-green-pale);
  border: 1.5px dashed rgba(26,138,78,0.28);
  border-radius: var(--r-lg);
  padding: 15px 24px;
  font-size: 0.83rem;
  color: var(--c-green);
  font-family: var(--f-head);
  font-weight: 500;
}
.gallery-note code {
  background: rgba(26,138,78,0.12);
  padding: 2px 7px;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
  font-size: 0.80rem;
}

/* ═══════════════════════════════════════════════════════════════
   KONUM
   ═══════════════════════════════════════════════════════════════ */
#konum {
  padding: var(--section-py) 0;
  background: var(--c-gray-50);
}
.konum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.konum-left { }
.konum-left h2 {
  font-family: var(--f-head);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.konum-left h2 span { color: var(--c-green); }
.konum-left > p {
  font-size: 0.96rem;
  color: var(--c-gray-600);
  line-height: 1.72;
  margin-bottom: 30px;
}
.konum-districts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin-bottom: 28px;
}
.konum-districts li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-dark);
}
.konum-districts li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}
.konum-note {
  background: var(--c-green-pale);
  border-left: 4px solid var(--c-green);
  padding: 14px 18px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.84rem;
  color: var(--c-green-dark);
  line-height: 1.60;
  margin-bottom: 30px;
}
.konum-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.konum-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--trans);
  white-space: nowrap;
}
.konum-btn svg { width: 16px; height: 16px; fill: currentColor; }
.konum-btn.green {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(26,138,78,0.28);
}
.konum-btn.green:hover {
  background: var(--c-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,138,78,0.40);
}
.konum-btn.blue {
  background: #1565c0;
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}
.konum-btn.blue:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21,101,192,0.38);
}
.konum-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1.5px solid var(--c-gray-200);
  height: 440px;
}
.konum-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   İLETİŞİM
   ═══════════════════════════════════════════════════════════════ */
#iletisim {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.contact-card {
  display: block;
  background: var(--c-gray-50);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-xl);
  padding: 36px 26px;
  text-align: center;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.36s var(--ease);
}
.contact-card:nth-child(1)::before { background: var(--c-green); }
.contact-card:nth-child(2)::before { background: var(--c-wa); }
.contact-card:nth-child(3)::before { background: var(--c-yellow); }
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(26,138,78,0.15);
}
.contact-card:hover::before { transform: scaleX(1); }
.cc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.30s var(--ease);
}
.contact-card:hover .cc-icon { transform: scale(1.10); }
.cc-icon svg { width: 28px; height: 28px; }
.cc-icon.green { background: rgba(26,138,78,0.12); }
.cc-icon.green svg { fill: var(--c-green); }
.cc-icon.wa { background: rgba(37,211,102,0.12); }
.cc-icon.wa svg { fill: var(--c-wa); }
.cc-icon.loc { background: rgba(245,166,35,0.12); }
.cc-icon.loc svg { fill: var(--c-yellow); }
.cc-label {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 7px;
}
.cc-val {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 6px;
}
.cc-sub {
  font-size: 0.82rem;
  color: var(--c-gray-600);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#footer{
  background: var(--c-dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 62px 0 0;
}

.footer-top,
.footer-grid{
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand{ }

.footer-desc{
  font-size: 0.86rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.72;
  max-width: 320px;
  margin-top: 16px;
}

.footer-col h4{
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}

.footer-col ul{ list-style: none; padding: 0; margin: 0; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col ul li a{
  font-size: 0.87rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.22s, padding-left 0.22s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before{
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-green);
  opacity: 0;
  transition: opacity 0.22s;
  flex-shrink: 0;
}
.footer-col ul li a:hover{ color: var(--c-green-light); }
.footer-col ul li a:hover::before{ opacity: 1; }

/* Footer Bottom */
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.40);
  font-size: 0.84rem;
}

.footer-copy{ color: rgba(255,255,255,0.55); }
.footer-credit{ margin-left: auto; text-align: right; }
.footer-bottom a{ color: rgba(255,255,255,0.70); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover{ color: rgba(255,255,255,0.92); }
@media (max-width: 640px){
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .footer-credit{ margin-left: 0; text-align: left; }
}
.footer-dev{
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.22s;
  white-space: nowrap;
}
.footer-dev:hover{ color: var(--c-green-light); }

@media (max-width: 980px){
  .footer-top, .footer-grid{
    grid-template-columns: 1.2fr 1fr;
    gap: 44px;
  }
  .footer-top .footer-col:last-child,
  .footer-grid .footer-col:last-child{ grid-column: 1 / -1; }
  .footer-desc{ max-width: 520px; }
}

@media (max-width: 767px){
  #footer{ padding-top: 54px; }
  .footer-top, .footer-grid{
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 34px;
  }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ██████████████████████████████  RESPONSIVE  ███████████████████████████████
   ═══════════════════════════════════════════════════════════════════════════

   LG  → max-width: 1199px  — Desktop Normal (13"-15" laptop)
   MD  → max-width: 1023px  — Tablet Landscape / Small Laptop
   SM  → max-width: 767px   — Tablet Portrait / Büyük Telefon
   XS  → max-width: 479px   — Telefon (standart)
   XXS → max-width: 359px   — Küçük Telefon (SE, eski Android)

   ═══════════════════════════════════════════════════════════════════════════ */


/* ╔══════════════════════════════════════════════════════════════╗
   ║  LG — max-width: 1199px                                     ║
   ║  Desktop Normal / 13"-15" Laptop                            ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 1199px) {

  :root { --section-py: 84px; }

  .container { padding: 0 28px; }

  /* Nav */
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.80rem; }
  .nav-btn-call,
  .nav-btn-wa { padding: 8px 15px; font-size: 0.76rem; }

  /* Hero */
  h1.hero-title { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }

  /* Hizmetler */
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .service-card { padding: 24px 17px 22px; }
  .sc-name { font-size: 0.93rem; }
  .sc-desc { font-size: 0.79rem; }

  /* Stats */
  .stat-num { font-size: clamp(2.6rem, 4.5vw, 3.8rem); }
  .stat-item { padding: 8px 28px; }

  /* Galeri */
  .gallery-grid { gap: 18px; }

  /* Konum */
  .konum-grid { gap: 40px; }
  .konum-map { height: 400px; }

  /* Footer */
  .footer-grid { gap: 44px; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  MD — max-width: 1023px                                     ║
   ║  Tablet Landscape / Small Laptop (iPad Pro, Surface)        ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 1023px) {

  :root { --section-py: 72px; }

  .container { padding: 0 24px; }

  /* Top Bar */
  .topbar-left { display: none; }
  .topbar-right { width: 100%; justify-content: center; }

  /* Nav — Nav links gizle, hamburger göster */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav { height: 64px; }

  /* Mobil Dropdown Nav */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(28,28,26,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 998;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block;
    padding: 14px 0;
    font-size: 0.96rem;
    color: rgba(255,255,255,0.78);
    font-weight: 600;
  }
  .nav-links.open a::after { display: none; }

  /* Hero */
  h1.hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  .hero-desc { font-size: 0.97rem; }
  #hero { padding: 72px 0; min-height: 480px; }

  /* Neden Biz */
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .why-card { padding: 34px 22px 30px; }
  .why-icon { width: 62px; height: 62px; }
  .why-icon svg { width: 28px; height: 28px; }

  /* Hizmetler — 3'lü grid */
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 8px 20px; }
  .stat-num { font-size: clamp(2.4rem, 5vw, 3.4rem); }

  /* Galeri — 3'lü kalır */
  .gallery-grid { gap: 16px; }

  /* Konum — Tek Kolon */
  .konum-grid { grid-template-columns: 1fr; gap: 36px; }
  .konum-left h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
  .konum-map { height: 380px; }

  /* İletişim */
  .contact-cards { gap: 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }

  /* Footer Bar */
  .footer-bar-inner { justify-content: center; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .fb-right { justify-content: center; }

  /* Float Buttons */
  .float-call { left: 16px; bottom: 20px; }
  .float-wa { right: 16px; bottom: 20px; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  SM — max-width: 767px                                      ║
   ║  Tablet Portrait / Büyük Telefon (iPad mini, büyük Android) ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 767px) {

  :root { --section-py: 60px; }

  .container { padding: 0 18px; }

  /* Top Bar */
  #topbar { padding: 8px 0; }
  .topbar-btn { font-size: 0.75rem; padding: 5px 12px; }

  /* Nav */
  .nav { height: 60px; }
  .logo-main { font-size: 1rem; }
  .logo-sub { font-size: 0.56rem; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-icon svg { width: 19px; height: 19px; }
  .nav-links.open { top: 60px; }

  /* Hero */
  #hero { padding: 60px 0; min-height: 420px; }
  h1.hero-title { font-size: clamp(1.65rem, 6vw, 2.4rem); margin-bottom: 16px; }
  .hero-badge { font-size: 0.69rem; padding: 7px 14px; margin-bottom: 18px; }
  .hero-desc { font-size: 0.92rem; margin-bottom: 28px; }
  .hero-btns { gap: 10px; }
  .hero-btn { padding: 12px 22px; font-size: 0.83rem; }

  /* Section Başlık */
  .sec-head { margin-bottom: 40px; }
  h2.sec-title, h2.sec-title-white { font-size: clamp(1.55rem, 5vw, 2.2rem); }
  .sec-sub, .sec-sub-light { font-size: 0.92rem; }

  /* Neden Biz — 1 kolon */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 30px 22px 26px; display: flex; align-items: flex-start; text-align: left; gap: 18px; }
  .why-icon { width: 54px; height: 54px; margin: 0; flex-shrink: 0; }
  .why-icon svg { width: 24px; height: 24px; }
  .why-card-body { }
  .why-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
  .why-card p { font-size: 0.84rem; }

  /* Hizmetler — 2'li grid */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 22px 16px 20px; }
  .sc-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px; }
  .sc-icon svg { width: 22px; height: 22px; }
  .sc-name { font-size: 0.88rem; }
  .sc-tagline { font-size: 0.68rem; }
  .sc-desc { font-size: 0.77rem; line-height: 1.58; }
  .sc-btn { font-size: 0.71rem; padding: 6px 12px; }
  .diger-card { min-height: 190px; }

  /* Stats — 1 satır 3 kolon (küçük) */
  #stats { padding: 48px 0; }
  .stat-item { padding: 0 14px; }
  .stat-num { font-size: clamp(2rem, 7vw, 2.8rem); }
  .stat-label { font-size: 0.72rem; letter-spacing: 0.05em; }

  /* Galeri — 2'li grid */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-overlay { padding: 14px; }
  .gallery-overlay strong { font-size: 0.82rem; }

  /* Konum */
  .konum-districts { grid-template-columns: 1fr 1fr; gap: 8px 18px; }
  .konum-btns { gap: 10px; }
  .konum-btn { padding: 11px 18px; font-size: 0.79rem; }
  .konum-map { height: 320px; }

  /* İletişim — 1 kolon */
  .contact-cards { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 26px 22px; display: flex; align-items: center; text-align: left; gap: 18px; }
  .cc-icon { width: 50px; height: 50px; margin: 0; flex-shrink: 0; }
  .cc-icon svg { width: 24px; height: 24px; }
  .cc-label { font-size: 0.65rem; }
  .cc-val { font-size: 0.97rem; }
  .cc-sub { font-size: 0.78rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: span 1; }
  .footer-desc { max-width: 100%; }
  #footer { padding: 48px 0 0; }

  /* Footer Bar */
  .footer-bar { padding: 14px 0; }
  .fb-right { gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* Float — telefon text gizle */
  .float-call { padding: 10px 16px 10px 10px; }
  .float-call-icon { width: 36px; height: 36px; }
  .float-call-icon svg { width: 17px; height: 17px; }
  .float-wa { width: 52px; height: 52px; right: 14px; bottom: 16px; }
  .float-wa svg { width: 26px; height: 26px; }
  .float-call { left: 14px; bottom: 16px; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  XS — max-width: 479px                                      ║
   ║  Standart Telefon (iPhone 12-15, orta boy Android)          ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 479px) {

  :root { --section-py: 48px; }

  .container { padding: 0 14px; }

  /* Top Bar — Sadece WA butonu */
  .topbar-btn.phone { display: none; }
  .topbar-right { width: 100%; justify-content: center; }

  /* Hero */
  #hero { padding: 48px 0; min-height: 380px; }
  .hero-badge { font-size: 0.64rem; padding: 6px 12px; }
  h1.hero-title { font-size: clamp(1.50rem, 7.5vw, 2.1rem); }
  .hero-desc { font-size: 0.88rem; line-height: 1.65; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero-btn { justify-content: center; padding: 13px 20px; font-size: 0.86rem; }
  .hero-btn.outline { display: none; }

  /* Neden Biz */
  .why-card { padding: 22px 16px; gap: 14px; }
  .why-icon { width: 48px; height: 48px; }
  .why-card h3 { font-size: 0.93rem; }
  .why-card p { font-size: 0.81rem; }

  /* Hizmetler */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 18px 13px 16px; }
  .sc-icon { width: 42px; height: 42px; border-radius: 10px; }
  .sc-icon svg { width: 20px; height: 20px; }
  .sc-name { font-size: 0.82rem; }
  .sc-tagline { font-size: 0.63rem; display: none; }
  .sc-desc { font-size: 0.74rem; line-height: 1.55; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .sc-btn { font-size: 0.68rem; padding: 5px 10px; }
  .diger-card { min-height: 170px; }
  .diger-card .sc-btn { font-size: 0.74rem; }

  /* Stats */
  #stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: clamp(2.4rem, 14vw, 3.2rem); }
  .stat-label { font-size: 0.75rem; }

  /* Galeri */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-tag { font-size: 0.58rem; }
  .gallery-overlay strong { font-size: 0.75rem; }

  /* Konum */
  .konum-districts { grid-template-columns: 1fr; gap: 8px; }
  .konum-map { height: 270px; }
  .konum-btns { flex-direction: column; }
  .konum-btn { justify-content: center; }

  /* İletişim */
  .contact-card { padding: 22px 16px; flex-direction: column; align-items: center; text-align: center; }
  .cc-icon { margin: 0 auto 12px; }
  .cc-val { font-size: 0.94rem; }

  /* Footer */
  #footer { padding: 40px 0 0; }
  .footer-grid { gap: 24px; }
  .footer-col h4 { margin-bottom: 14px; }

  /* Float — Call sadece ikon */
  .float-call { gap: 0; padding: 10px; }
  .float-call .float-call-text { display: none; }
  .float-call-icon { width: 38px; height: 38px; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  XXS — max-width: 359px                                     ║
   ║  Küçük Telefon (iPhone SE, Galaxy A series, eski Android)   ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 359px) {

  :root { --section-py: 40px; }

  .container { padding: 0 12px; }

  /* Top Bar */
  #topbar { display: none; }

  /* Header */
  .nav { height: 56px; }
  .logo-main { font-size: 0.88rem; }
  .logo-sub { display: none; }
  .logo-icon { width: 32px; height: 32px; border-radius: 8px; }
  .logo-icon svg { width: 17px; height: 17px; }
  .hamburger { width: 38px; height: 38px; padding: 8px; }

  /* Hero */
  #hero { padding: 40px 0; min-height: 340px; }
  h1.hero-title { font-size: 1.40rem; }
  .hero-desc { font-size: 0.82rem; }
  .hero-badge { font-size: 0.60rem; }

  /* Hizmetler */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { flex-direction: row; align-items: flex-start; padding: 16px; gap: 14px; }
  .service-card::after { top: 0; bottom: auto; left: 0; right: auto; width: 3px; height: 100%; transform: scaleY(0); transform-origin: top; }
  .service-card:hover::after { transform: scaleY(1); }
  .sc-icon { margin-bottom: 0; flex-shrink: 0; width: 42px; height: 42px; }
  .sc-name { font-size: 0.85rem; }
  .sc-desc { font-size: 0.76rem; }
  .sc-tagline, .sc-btn { display: none; }
  .diger-card { flex-direction: column; align-items: center; text-align: center; min-height: auto; padding: 24px 16px; }
  .diger-card .sc-btn { display: inline-flex; }

  /* Stats */
  .stat-num { font-size: 2.2rem; }

  /* Galeri */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item { aspect-ratio: 16 / 9; }

  /* İletişim */
  .contact-card { padding: 18px 14px; }
  .cc-val { font-size: 0.88rem; }

  /* Float */
  .float-call, .float-wa { bottom: 12px; }
  .float-call { left: 10px; }
  .float-wa { right: 10px; width: 46px; height: 46px; }
  .float-wa svg { width: 22px; height: 22px; }
  .float-call-icon { width: 34px; height: 34px; }

  /* Konum */
  .konum-map { height: 240px; }
  .konum-btn { font-size: 0.76rem; padding: 11px 16px; }

  /* Footer */
  .footer-bar-inner { flex-direction: column; align-items: center; text-align: center; }
  .fb-right { flex-direction: column; align-items: center; gap: 8px; }
}

/* ===== Simple SEO Lists / FAQ (minimal) ===== */
/* Checklist & FAQ (light sections) */
.section .checklist li,
#hizmetler-page .checklist li,
#bolge-page .checklist li{
  color: rgba(38,38,36,0.78);
}
.section .checklist li::before,
#hizmetler-page .checklist li::before,
#bolge-page .checklist li::before{
  background: rgba(26,138,78,0.95);
  box-shadow: 0 0 0 4px rgba(26,138,78,0.10);
}
.section .faq,
#hizmetler-page .faq,
#bolge-page .faq{
  border-color: rgba(0,0,0,0.08);
  background: #fff;
}
.section .faq dt,
#hizmetler-page .faq dt,
#bolge-page .faq dt{
  color: rgba(38,38,36,0.86);
  background: rgba(26,138,78,0.04);
  border-top-color: rgba(0,0,0,0.06);
}
.section .faq dd,
#hizmetler-page .faq dd,
#bolge-page .faq dd{
  color: rgba(38,38,36,0.74);
  background: #fff;
  border-top-color: rgba(0,0,0,0.05);
}

.checklist{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.checklist li{
  position:relative;
  padding-left:22px;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0; top:0.55em;
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(43, 255, 140, 0.85);
  box-shadow: 0 0 0 4px rgba(43, 255, 140, 0.10);
}

.faq{
  margin: 22px 0 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow:hidden;
}
.faq dt{
  padding: 14px 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq dt:first-child{ border-top:0; }
.faq dd{
  padding: 0 16px 14px;
  margin: 0;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  background: rgba(255,255,255,0.02);
}

@media (max-width: 720px){
  .checklist{ grid-template-columns: 1fr; }
}

/* Footer improvements */
#footer{background: linear-gradient(180deg, #141413 0%, #0f0f0e 100%); position: relative; overflow: hidden;}
#footer::before{content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent 0%, var(--c-green) 35%, var(--c-green-light) 65%, transparent 100%); opacity: 0.6;}
.footer-top{gap: 42px;}
.footer-col h4{letter-spacing:.04em;}


/* Lightbox (Gallery Click to Enlarge) */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,0.75);display:none;align-items:center;justify-content:center;padding:24px;z-index:2000;}
.lightbox.open{display:flex;}
.lightbox-inner{position:relative;max-width:min(980px,100%);max-height:calc(100vh - 48px);}
.lightbox-img{width:100%;height:auto;max-height:calc(100vh - 48px);object-fit:contain;border-radius:18px;box-shadow:0 24px 80px rgba(0,0,0,0.55);}
.lightbox-close{position:absolute;top:-14px;right:-14px;width:42px;height:42px;border-radius:999px;border:1px solid rgba(255,255,255,0.28);background:rgba(20,20,18,0.85);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);transition:transform .2s;}
.lightbox-close:hover{transform:translateY(-2px);}
.gallery-item{cursor:zoom-in;}
