/* ===================================
   BEŞİKTAŞ ÇİLİNGİR — ANA STİL
   =================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #181818;
  --bg4: #222222;
  --accent: #E8B83A;
  --accent2: #F5CB5C;
  --accent-dim: rgba(232,184,58,0.12);
  --white: #FFFFFF;
  --text: #DDDDDD;
  --text2: #999999;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.15);
  --font: 'Syne', sans-serif;
  --font2: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font2);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hide { opacity: 0; visibility: hidden; }

.loader-ring {
  width: 44px; height: 44px;
  border: 3px solid var(--border2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ LAYOUT ============ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--bg2); }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.site-header.scrolled { background: rgba(10,10,10,0.98); }

.navbar {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 32px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-size: 20px; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo strong { color: var(--accent); }
.logo-icon { font-size: 22px; }
.footer-logo { font-size: 22px; }

.nav-links {
  display: flex; list-style: none; gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text2); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: var(--bg4);
}
.nav-links a.active { color: var(--accent); }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s; flex-shrink: 0;
  font-family: var(--font);
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,58,0.3); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-white { background: var(--white); color: var(--bg); }
.btn-white:hover { background: #F0F0F0; transform: translateY(-2px); }

.btn-xl { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ============ SECTION HEADERS ============ */
.section-head { margin-bottom: 56px; }
.section-head.light .section-desc { color: rgba(255,255,255,0.5); }

.section-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 6px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--accent); }

.section-desc {
  font-size: 16px; color: var(--text2);
  line-height: 1.75; max-width: 580px;
}

.section-cta { margin-top: 48px; text-align: center; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--bg2);
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: 17px; color: var(--text2); max-width: 540px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text2); margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font); font-size: 22vw; font-weight: 800;
  color: rgba(255,255,255,0.018);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap; z-index: 0;
  letter-spacing: -2px;
}

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,184,58,0.3);
  color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px; color: var(--text2);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 36px;
}
.hero-subtitle strong { color: var(--white); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text2);
}

/* Hero Card */
.hero-card-wrap { display: flex; justify-content: center; }
.hero-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden; width: 100%; max-width: 360px;
  box-shadow: var(--shadow);
}
.card-header {
  background: var(--bg4);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text2);
}
.card-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.card-dot.green { background: #22C55E; }
.card-dot.yellow { background: #EAB308; }
.card-dot.red { background: #EF4444; }

.card-body { padding: 28px 24px 24px; }
.card-icon-big { font-size: 48px; margin-bottom: 20px; display: block; text-align: center; }

.card-stat-row {
  display: flex; align-items: center;
  background: var(--bg4); border-radius: 10px;
  padding: 16px; margin-bottom: 20px; gap: 8px;
}
.card-stat { flex: 1; text-align: center; }
.card-stat-divider { width: 1px; height: 36px; background: var(--border); }
.stat-big {
  display: block;
  font-family: var(--font); font-size: 22px; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.stat-big small { font-size: 14px; }
.stat-lbl { font-size: 10px; color: var(--text2); margin-top: 4px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }

.card-tel-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--accent); color: var(--bg);
  padding: 14px 18px; border-radius: 10px;
  margin-bottom: 16px; transition: background 0.2s;
}
.card-tel-btn:hover { background: var(--accent2); }
.card-tel-btn small { display: block; font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.card-tel-btn strong { display: block; font-size: 18px; font-family: var(--font); }

.card-hizmetler {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.card-hizmetler span {
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 11px; padding: 5px 10px; border-radius: 6px;
}

/* Hero Stats */
.hero-stats-row {
  display: flex; gap: 32px; margin-top: 40px;
}

/* Hero Scroll */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text2); letter-spacing: 1px; text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--border2), transparent);
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============ COUNTERS ============ */
.counters-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.counters-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.counter-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 24px;
}
.counter-num {
  font-family: var(--font); font-size: 40px; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.counter-suffix {
  font-family: var(--font); font-size: 24px; font-weight: 800;
  color: var(--accent);
}
.counter-label {
  font-size: 13px; color: var(--text2);
  margin-top: 6px; letter-spacing: 0.5px;
}
.counter-divider {
  width: 1px; height: 48px; background: var(--border);
}

/* ============ HİZMET GRID HOME ============ */
.hizmet-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.hizmet-card-home {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px; transition: all 0.3s;
}
.hizmet-card-home:hover {
  border-color: var(--accent);
  background: var(--bg4);
  transform: translateX(4px);
}
.hc-icon { font-size: 36px; flex-shrink: 0; }
.hc-content { flex: 1; }
.hc-content h3 {
  font-family: var(--font); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.hc-content p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.hc-arrow {
  font-size: 20px; color: var(--text2);
  transition: all 0.2s; flex-shrink: 0;
}
.hizmet-card-home:hover .hc-arrow { color: var(--accent); transform: translateX(4px); }

/* ============ NEDEN ============ */
.neden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.neden-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.neden-card:hover { border-color: rgba(232,184,58,0.3); }
.neden-num {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font); font-size: 36px; font-weight: 800;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.neden-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.neden-card h3 {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.neden-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ============ YORUMLAR ============ */
.yorumlar-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.yorum-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.3s;
}
.yorum-card.featured {
  border-color: rgba(232,184,58,0.3);
  background: linear-gradient(135deg, var(--bg3), rgba(232,184,58,0.05));
}
.yorum-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.yorum-text {
  font-size: 14px; color: var(--text); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.yorum-kisi { display: flex; align-items: center; gap: 12px; }
.yorum-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.yorum-kisi strong { display: block; font-size: 14px; color: var(--white); }
.yorum-kisi span { font-size: 12px; color: var(--text2); }

.rating-bar {
  text-align: center; padding: 32px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.score-num {
  font-family: var(--font); font-size: 56px; font-weight: 800;
  color: var(--accent); display: block; line-height: 1;
}
.score-stars { color: var(--accent); font-size: 24px; letter-spacing: 3px; margin: 8px 0; }
.score-base { font-size: 14px; color: var(--text2); }

/* ============ CTA ============ */
.cta-section {
  background: linear-gradient(135deg, #1a1500, #0a0a0a);
  border-top: 1px solid rgba(232,184,58,0.2);
  border-bottom: 1px solid rgba(232,184,58,0.2);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font); font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 10px;
}
.cta-text p { font-size: 16px; color: var(--text2); }
.cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cta-note { font-size: 12px; color: var(--text2); }

/* ============ HİZMET DETAY ============ */
.hizmet-detay {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: start;
  padding: 64px 0;
}
.hizmet-detay.reverse { direction: rtl; }
.hizmet-detay.reverse > * { direction: ltr; }

.hizmet-detay-icon {
  font-size: 80px; line-height: 1;
  width: 140px; height: 140px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hizmet-detay-content h2 {
  font-family: var(--font); font-size: 32px; font-weight: 800;
  color: var(--white); margin-bottom: 16px; margin-top: 8px;
}
.hizmet-lead {
  font-size: 16px; color: var(--text); line-height: 1.75;
  margin-bottom: 28px;
}
.hizmet-liste { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.hl-item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; color: var(--text); line-height: 1.65;
}
.hl-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: #22C55E;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.hizmet-separator {
  height: 1px; background: var(--border);
}

/* ============ BÖLGE KARTLARI ============ */
.bolge-karti-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.bolge-karti {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s;
}
.bolge-karti:hover { border-color: rgba(232,184,58,0.3); }
.bk-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.bk-icon { font-size: 28px; }
.bk-header h3 {
  font-family: var(--font); font-size: 18px; font-weight: 700; color: var(--white);
}
.bk-sure {
  font-size: 11px; color: var(--accent); font-weight: 600;
  background: var(--accent-dim); padding: 3px 8px; border-radius: 4px;
  display: inline-block; margin-top: 4px;
}
.bolge-karti p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.bk-mahalle {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.bk-mahalle li {
  font-size: 11px; background: var(--bg4); border: 1px solid var(--border);
  color: var(--text2); padding: 4px 10px; border-radius: 4px;
}

.tum-mahalleler {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.tum-mahalleler h3 {
  font-family: var(--font); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 24px;
}
.tm-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.tm-grid span {
  background: var(--bg4); border: 1px solid var(--border);
  color: var(--text2); font-size: 13px; padding: 10px 14px;
  border-radius: 8px; text-align: center; transition: all 0.2s;
  cursor: default;
}
.tm-grid span:hover { border-color: var(--accent); color: var(--accent); }

/* ============ SSS ============ */
.sss-container { max-width: 860px; margin: 0 auto; }
.sss-kategoriler { display: flex; flex-direction: column; gap: 48px; margin-bottom: 48px; }
.sss-kat-title {
  font-family: var(--font); font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}
.sss-liste { display: flex; flex-direction: column; gap: 8px; }
.sss-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s;
}
.sss-item[open] { border-color: rgba(232,184,58,0.3); }
.sss-item summary {
  padding: 20px 24px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--white); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.sss-item summary::-webkit-details-marker { display: none; }
.sss-item summary::after {
  content: "+"; font-size: 22px; font-weight: 300;
  color: var(--accent); transition: transform 0.3s; flex-shrink: 0;
}
.sss-item[open] summary::after { transform: rotate(45deg); }
.sss-item summary:hover { color: var(--accent); }
.sss-cevap {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--text2); line-height: 1.75;
  border-top: 1px solid var(--border);
}
.sss-cevap p { margin-bottom: 12px; }
.sss-cevap p:last-child { margin-bottom: 0; }
.sss-cevap ul { padding-left: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }

.sss-cta-box {
  background: var(--bg3); border: 1px solid rgba(232,184,58,0.2);
  border-radius: var(--radius-lg); padding: 48px;
  text-align: center;
}
.sss-cta-box h3 {
  font-family: var(--font); font-size: 24px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.sss-cta-box p { color: var(--text2); margin-bottom: 28px; }

/* ============ İLETİŞİM ============ */
.iletisim-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.iletisim-bilgi h2, .iletisim-form-wrap h2 {
  font-family: var(--font); font-size: 28px; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.iletisim-bilgi h2 em, .iletisim-form-wrap h2 em { font-style: normal; color: var(--accent); }
.iletisim-desc { font-size: 15px; color: var(--text2); margin-bottom: 32px; }

.iletisim-kartlar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.iletisim-kart {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.iletisim-kart.urgent { border-color: rgba(232,184,58,0.3); background: rgba(232,184,58,0.05); }
.ik-icon { font-size: 28px; flex-shrink: 0; }
.ik-label { display: block; font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ik-value { display: block; font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--white); }
.big-tel { font-size: 22px; color: var(--accent); }
.ik-note { display: block; font-size: 11px; color: var(--text2); margin-top: 4px; }

.iletisim-not {
  background: var(--bg3); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 20px;
}
.iletisim-not h4 {
  font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px;
}
.iletisim-not p { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* Form */
.iletisim-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-family: var(--font2); font-size: 14px; color: var(--white);
  transition: border-color 0.2s; outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text2); }
.form-group select option { background: var(--bg3); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-note { font-size: 12px; color: var(--text2); text-align: center; margin-top: 8px; }
.form-note a { color: var(--accent); }

.form-success {
  text-align: center; padding: 48px 24px;
  background: var(--bg3); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-lg);
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: #22C55E;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; margin: 0 auto 20px;
}
.form-success h3 { font-family: var(--font); color: var(--white); font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--text2); }
.form-success a { color: var(--accent); }

.harita-section { padding: 80px 0; }
.harita-embed { margin-top: 48px; border-radius: 16px; overflow: hidden; }

/* ============ FOOTER ============ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: var(--text2); line-height: 1.7;
  margin: 16px 0;
}
.footer-tel {
  font-family: var(--font); font-size: 20px; font-weight: 700;
  color: var(--accent); display: inline-block; margin-top: 4px;
}
.footer-col h4 {
  font-family: var(--font); font-size: 13px; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--text2);
}

/* ============ FLOATING CALL ============ */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(232,184,58,0.4);
  animation: float-pulse 2.5s infinite;
  transition: transform 0.2s;
}
.float-call:hover { transform: scale(1.1); }
@keyframes float-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(232,184,58,0.4); }
  50% { box-shadow: 0 4px 40px rgba(232,184,58,0.7); }
}

/* ============ RESPONSIVE ============ */
@media(max-width: 1024px) {
  .neden-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-wrap { display: none; }
  .yorumlar-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .hizmet-detay { grid-template-columns: 1fr; }
  .hizmet-detay.reverse { direction: ltr; }
  .hizmet-detay-icon { width: 80px; height: 80px; font-size: 44px; }
  .counters-inner { gap: 0; }
  .counter-item { padding: 16px; }
}

@media(max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; padding: 14px 32px; }
  .hamburger { display: flex; }
  .neden-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-action { align-items: center; }
  .counter-divider { display: none; }
  .counters-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
  .counter-item { background: var(--bg2); }
}

@media(max-width: 480px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 64px; }
  .hero-actions { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
  .hizmet-grid-home { grid-template-columns: 1fr; }
  .bolge-karti-grid { grid-template-columns: 1fr; }
}
