/* ============================================================
   Garanti Kanal Açma — Dark design system
   Fonts: Sora (display) + Manrope (body) — loaded in layout.
   Palette derived from the design handoff.
   ============================================================ */

:root {
  /* ---- Design tokens (new) ---- */
  --bg:        #0B1220;
  --bg-alt:    #0D1626;
  --surface:   #0F1929;
  --surface-2: #101B2E;
  --footer-bg: #080D18;

  --text:   #E8EDF5;
  --text-2: #B9C6DA;
  --muted:  #8DA2C0;
  --muted-2:#5E718D;

  --blue:        #2F7DF6;
  --blue-light:  #7FB1F8;
  --blue-bright: #5FA2FF;
  --cyan:        #2CC5D6;
  --cyan-light:  #5FD9E5;
  --green:       #22C57A;
  --green-light: #4ADE9C;
  --orange:      #F97316;
  --orange-light:#FBA25C;
  --star:        #F5B942;

  --grad: linear-gradient(135deg, #2F7DF6, #2CC5D6);

  --border:   rgba(255,255,255,.08);
  --border-2: rgba(255,255,255,.12);

  /* ---- Legacy aliases (remapped for dark theme so inline var() in views still work) ---- */
  --navy-900: #E8EDF5;   /* was dark heading text → now light text on dark */
  --navy-800: #0D1626;   /* was dark bg */
  --navy-700: #143665;
  --blue-600: #2F7DF6;
  --blue-500: #7FB1F8;
  --blue-100: rgba(47,125,246,.18);
  --blue-50:  rgba(47,125,246,.10);
  --ink-900:  #E8EDF5;
  --ink-700:  #B9C6DA;
  --ink-500:  #8DA2C0;
  --ink-400:  #8DA2C0;
  --ink-300:  #5E718D;
  --line:     rgba(255,255,255,.08);
  --line-2:   rgba(255,255,255,.06);
  --cream:    #0D1626;
  --cream-2:  #0F1929;
  --white:    #ffffff;   /* text-on-accent only */
  --success:  #4ADE9C;
  --warn:     #FBBF24;
  --danger:   #F87171;
  --whatsapp: #22C57A;
  --whatsapp-hover: #1BA968;

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.3);
  --shadow-md:  0 12px 30px rgba(0,0,0,.4);
  --shadow-lg:  0 20px 50px rgba(0,0,0,.5);
  --shadow-blue: 0 10px 30px rgba(47,125,246,.4);

  --container: 1240px;
  --gutter: 32px;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: #fff; margin: 0; line-height: 1.2; }
p { margin: 0 0 1em; }
a { color: var(--blue-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-bright); }
img { max-width: 100%; display: block; }
strong { color: var(--text); }

::selection { background: rgba(47,125,246,.4); color: #fff; }

.skip-link {
  position: absolute; top: -60px; left: 8px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 10px;
  font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* Global keyboard focus (WCAG 2.4.7/2.4.11) */
:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
  border-radius: 3px;
}
.form-control:focus-visible { outline: none; }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-block: 100px; }
.section.alt, section.alt { background: var(--bg-alt); border-block: 1px solid var(--border); }

.section-title { display: flex; flex-direction: column; gap: 14px; max-width: 640px; margin-bottom: 48px; }
.section-title.center { margin-inline: auto; text-align: center; align-items: center; }
.section-title .eyebrow,
.eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: 2.5px;
  color: var(--cyan); text-transform: uppercase;
}
.section-title h2 { font-size: 36px; font-weight: 800; letter-spacing: -.5px; }
.section-title p { color: var(--text-2); font-size: 15.5px; line-height: 1.7; margin: 0; }
.underline { width: 60px; height: 3px; border-radius: 3px; background: var(--grad); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 14px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 15px; font-weight: 800; cursor: pointer;
  transition: filter .2s, transform .2s, background .2s, border-color .2s, color .2s;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { filter: brightness(1.12); color: #fff; transform: translateY(-1px); }
.btn-outline { background: rgba(47,125,246,.08); border-color: rgba(47,125,246,.45); color: var(--blue-light); }
.btn-outline:hover { background: rgba(47,125,246,.16); color: var(--blue-light); }
.btn-ghost { background: rgba(255,255,255,.05); border-color: var(--border-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }
.btn-emergency { background: var(--orange); color: #fff; box-shadow: 0 12px 34px rgba(249,115,22,.4); }
.btn-emergency:hover { filter: brightness(1.1); color: #fff; }
.btn-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--blue-light); }
.btn-link-arrow { display: inline-flex; transition: transform .2s; }
.btn-link:hover .btn-link-arrow { transform: translateX(4px); }

/* ---- Emergency strip (top bar) ---- */
.emergency-bar {
  background: #170D05; border-bottom: 1px solid rgba(249,115,22,.3);
  padding: 9px 20px; display: flex; justify-content: center; align-items: center;
  gap: 12px; font-size: 13.5px; font-weight: 600; color: #F5C9A4; flex-wrap: wrap;
}
.emergency-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 1.6s infinite; }
.emergency-bar a { color: var(--orange); font-weight: 800; letter-spacing: .3px; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---- Header / nav ---- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,18,32,.86); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; flex: none; display: grid; place-items: center; }
.brand-mark img, .brand-mark svg { width: 100%; height: 100%; }
.brand-text > div { display: flex; align-items: baseline; gap: 6px; line-height: 1.15; }
.brand-text .b1 { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text); letter-spacing: .2px; }
.brand-text .b2 { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--blue-light); letter-spacing: .2px; }
.brand-text .b3 { font-size: 10.5px; font-weight: 600; color: var(--muted); letter-spacing: 2.2px; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; color: var(--text-2); padding: 6px 2px; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link svg { width: 14px; height: 14px; opacity: .7; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; background: var(--surface); border: 1px solid var(--border-2);
  border-radius: 16px; padding: 10px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 70;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.nav-dropdown-link {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 11px;
  color: var(--text-2); font-size: 14px; font-weight: 600;
}
.nav-dropdown-link:hover { background: rgba(47,125,246,.12); color: #fff; }
.nav-dropdown-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(47,125,246,.14); color: var(--blue-light); flex: none; }
.nav-dropdown-icon svg { width: 18px; height: 18px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: 12px; background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(47,125,246,.35); }
.header-phone:hover { filter: brightness(1.1); color: #fff; }
.header-phone-icon { display: grid; place-items: center; }
.header-phone-icon svg { width: 20px; height: 20px; }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone-text .l1 { font-size: 10.5px; font-weight: 600; opacity: .85; }
.header-phone-text .l2 { font-family: var(--font-display); font-weight: 800; font-size: 14.5px; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-2); background: rgba(255,255,255,.04); color: #fff; cursor: pointer; place-items: center; }
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 120; visibility: hidden; }
.mobile-menu.open { visibility: visible; }
.mobile-menu::before { content: ""; position: absolute; inset: 0; background: rgba(3,7,15,.6); opacity: 0; transition: opacity .3s; }
.mobile-menu.open::before { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 88%);
  background: var(--surface); border-left: 1px solid var(--border-2); padding: 24px 20px;
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: none; }
.mobile-menu-close { position: absolute; top: 18px; right: 16px; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-2); background: transparent; color: #fff; cursor: pointer; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.mobile-menu-links > a { padding: 13px 14px; border-radius: 11px; color: var(--text-2); font-weight: 700; }
.mobile-menu-links > a.active, .mobile-menu-links > a:hover { background: rgba(47,125,246,.12); color: #fff; }

/* ---- Hero ---- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero-video, .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,14,26,.95) 0%, rgba(9,14,26,.8) 45%, rgba(9,14,26,.35) 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 140px; background: linear-gradient(180deg, transparent, var(--bg)); pointer-events: none; }
.hero-inner { position: relative; z-index: 5; width: 100%; }
.hero-content { max-width: 640px; display: flex; flex-direction: column; gap: 22px; animation: fadeUp .8s ease both; padding-block: 80px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 100px; background: rgba(47,125,246,.14); border: 1px solid rgba(47,125,246,.35); color: var(--blue-light); font-size: 12.5px; font-weight: 700; letter-spacing: 1px; }
.hero-tag.cyan { background: rgba(44,197,214,.1); border-color: rgba(44,197,214,.3); color: var(--cyan-light); }
.hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 1.6s infinite; }
.hero h1, .hero-title { font-size: 52px; line-height: 1.12; font-weight: 800; letter-spacing: -1px; color: #fff; }
.hero-title .grad, .grad-text { background: linear-gradient(135deg,#5FA2FF,#2CC5D6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 17.5px; line-height: 1.65; color: var(--text-2); max-width: 540px; margin: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.hero-features { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.hero-feature { display: flex; align-items: center; gap: 8px; }
.hero-feature-icon, .hero-feature .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---- Stats bar ---- */
.stats-bar { max-width: var(--container); margin: -30px auto 0; padding: 0 var(--gutter); position: relative; z-index: 7; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.stat { background: var(--surface); padding: 26px 28px; display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff; }
.stat-num.green { color: var(--green); }
.stat-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.stat-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(47,125,246,.14); color: var(--blue-light); display: grid; place-items: center; }

/* ---- Generic card ---- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }

/* ---- Services ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 18px; }
.service-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 12px; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { border-color: rgba(47,125,246,.5); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card.accent-cyan:hover { border-color: rgba(44,197,214,.5); }
.service-card.accent-orange { background: #16110C; border-color: rgba(249,115,22,.35); }
.service-card.accent-orange:hover { border-color: rgba(249,115,22,.7); }
.service-card .num { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--blue); }
.service-card.accent-cyan .num { color: var(--cyan); }
.service-card.accent-orange .num { color: var(--orange); }
.service-card h3 { font-size: 18px; font-weight: 700; color: #fff; }
.service-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(47,125,246,.14); color: var(--blue-light); display: grid; place-items: center; }
.service-icon svg { width: 26px; height: 26px; }

/* ---- Why us / features ---- */
.why-us-list { display: flex; flex-direction: column; gap: 14px; }
.why-us-item { display: flex; gap: 16px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; transition: border-color .2s; }
.why-us-item:hover { border-color: rgba(47,125,246,.4); }
.why-us-item-icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(47,125,246,.14); border: 1px solid rgba(47,125,246,.3); display: grid; place-items: center; color: var(--blue-light); font-family: var(--font-display); font-weight: 800; }
.why-us-item h3, .why-us-item .t { font-weight: 800; font-size: 15.5px; color: #fff; margin: 0 0 4px; }
.why-us-item p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.why-us-image { position: relative; }

/* ---- Process / timeline ---- */
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 20px; }
.process-step-rail { display: flex; flex-direction: column; align-items: center; }
.process-step-num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; }
.process-step:last-child .process-step-num { background: rgba(34,197,122,.16); border: 1px solid rgba(34,197,122,.45); color: var(--green-light); }
.process-step-line { width: 2px; flex: 1; background: linear-gradient(180deg, rgba(47,125,246,.5), rgba(44,197,214,.25)); }
.process-step-body { padding-bottom: 30px; display: flex; flex-direction: column; gap: 5px; }
.process-step:last-child .process-step-body { padding-bottom: 0; }
.process-step-title, .process-step-body .t { font-weight: 800; font-size: 16px; color: #fff; }
.process-step-body p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.process-arrow { display: none; }

/* ---- Equipment / technology ---- */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.equipment-card, .tech-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 8px; transition: border-color .2s; }
.equipment-card:hover, .tech-card:hover { border-color: rgba(44,197,214,.5); }
.equipment-card .t, .tech-card .t { font-weight: 800; font-size: 15.5px; color: var(--cyan-light); }
.equipment-card p, .tech-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.equipment-icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(44,197,214,.12); color: var(--cyan-light); display: grid; place-items: center; }

/* ---- Districts ---- */
.districts-grid, .district-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px; }
.district-card { display: flex; align-items: center; gap: 10px; padding: 15px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: transform .2s, border-color .2s; color: var(--text); }
.district-card:hover { border-color: rgba(47,125,246,.55); transform: translateY(-2px); color: #fff; }
.district-card-pin { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.district-card-name { font-weight: 700; font-size: 14.5px; }
.district-card-time { font-size: 12px; color: var(--muted); }
.district-card-neigh { font-size: 12.5px; color: var(--muted); }
.district-card-arrow { margin-left: auto; color: var(--muted); }
/* District detail */
.district-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.district-section { margin-bottom: 40px; }
.district-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.district-info-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.district-info-item:last-child { border-bottom: 0; }
.district-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); min-height: 300px; }
.neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 10px; }
.neighborhood-item { padding: 10px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; font-size: 13.5px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; background: var(--surface); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-caption { position: absolute; inset: auto 0 0 0; padding: 20px 16px 14px; background: linear-gradient(180deg, transparent, rgba(8,13,24,.9)); font-size: 13.5px; font-weight: 700; color: #fff; }
.gallery-play { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; }
.gallery-play span { width: 60px; height: 60px; border-radius: 50%; background: rgba(47,125,246,.85); display: grid; place-items: center; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 20px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(47,125,246,.5); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.blog-card-body h3 { font-size: 17px; color: #fff; }
.blog-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.blog-card-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--muted); }
.blog-card-time { display: flex; align-items: center; gap: 6px; }
.blog-detail { max-width: 820px; margin: 0 auto; }
.blog-detail-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.blog-detail-meta span { display: flex; align-items: center; gap: 6px; }
.blog-content { font-size: 16.5px; line-height: 1.8; color: var(--text-2); }
.blog-content h2, .blog-content h3 { color: #fff; margin: 1.6em 0 .6em; }
.blog-content a { color: var(--blue-light); text-decoration: underline; }
.blog-content img { border-radius: var(--r-md); margin: 1.5em 0; }
.blog-content ul, .blog-content ol { padding-left: 1.3em; }
.blog-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

/* ---- FAQ ---- */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item, details.faq-item { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; }
.faq-item summary, .faq-item .faq-q { cursor: pointer; font-weight: 800; font-size: 15.5px; color: var(--text); list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { transition: transform .2s; color: var(--blue-light); flex: none; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { margin: 14px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); }

/* ---- Testimonials ---- */
.testimonials-page-grid, .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: border-color .2s; }
.testimonial-card:hover { border-color: rgba(47,125,246,.4); }
.testimonial-stars { color: var(--star); font-size: 15px; letter-spacing: 3px; }
.testimonial-text, .testimonial-quote { font-size: 14.5px; line-height: 1.7; color: var(--text-2); margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(47,125,246,.16); border: 1px solid rgba(47,125,246,.3); display: grid; place-items: center; font-weight: 800; font-size: 14px; color: var(--blue-light); }
.testimonial-author-info { display: flex; flex-direction: column; }
.testimonial-author-info .n { font-weight: 800; font-size: 14px; color: #fff; }
.testimonial-author-info .m { font-size: 12.5px; color: var(--muted); }
.rating-summary { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; }
.rating-summary-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: #fff; }
.rating-summary-stars { color: var(--star); letter-spacing: 3px; }
.rating-summary-label { font-size: 13px; color: var(--muted); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel { display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; transition: border-color .2s; }
.contact-channel:hover { border-color: rgba(47,125,246,.5); }
.contact-channel-icon { flex: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(47,125,246,.14); border: 1px solid rgba(47,125,246,.3); display: grid; place-items: center; color: var(--blue-light); }
.contact-channel-label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.contact-channel-value { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff; }
.contact-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; }
.contact-hours { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.hours-grid { display: flex; flex-direction: column; gap: 10px; }
.hours-day { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); }
.hours-time { font-weight: 700; color: #fff; }
.hours-emergency { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); color: var(--green-light); font-weight: 700; font-size: 14px; }

/* ---- Forms ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--text-2); }
.form-control {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid var(--border-2); background: rgba(255,255,255,.03);
  color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,125,246,.15); }
.form-control.error { border-color: var(--danger); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; }
.form-error { font-size: 12.5px; color: var(--danger); }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form-consent a { color: var(--blue-light); }

/* ---- CTA banner ---- */
.cta-banner { background: linear-gradient(135deg, #12100C, #1A0F06); border-block: 1px solid rgba(249,115,22,.25); padding: 100px var(--gutter); text-align: center; }
.cta-banner-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-banner h2 { font-size: 40px; font-weight: 800; letter-spacing: -.5px; color: #fff; }
.cta-banner p { color: #C9B49E; font-size: 16px; line-height: 1.7; max-width: 560px; margin: 0; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.cta-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 100px; background: rgba(249,115,22,.14); border: 1px solid rgba(249,115,22,.4); color: var(--orange-light); font-size: 13px; font-weight: 800; letter-spacing: 1.5px; }
.cta-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 1.6s infinite; }

/* ---- Page header ---- */
.page-header { position: relative; padding-block: 72px; background: var(--bg-alt); border-bottom: 1px solid var(--border); overflow: hidden; }
.page-header::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 20% 0%, rgba(47,125,246,.12), transparent); }
.page-header-inner { position: relative; display: flex; flex-direction: column; gap: 14px; }
.page-header .eyebrow { color: var(--cyan); }
.page-header h1 { font-size: 40px; font-weight: 800; letter-spacing: -.5px; color: #fff; }
.page-header .breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.page-header .breadcrumb a { color: var(--muted); }
.page-header .breadcrumb a:hover { color: #fff; }

/* ---- Footer ---- */
.footer { background: var(--footer-bg); border-top: 1px solid var(--border); padding: 64px var(--gutter) 40px; }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.footer h4 { font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; color: var(--text-2); margin-bottom: 4px; text-transform: uppercase; }
.footer-about { font-size: 13.5px; line-height: 1.7; color: var(--muted); max-width: 320px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--muted); }
.footer-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 11px; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--text-2); }
.footer-socials a:hover { background: rgba(47,125,246,.12); color: #fff; border-color: rgba(47,125,246,.4); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13.5px; color: var(--muted); }
.footer-contact-icon { flex: none; color: var(--blue-light); }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { max-width: var(--container); margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted-2); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: var(--muted-2); }
.footer-bottom-links a:hover { color: #fff; }

/* ---- Mobile sticky bar ---- */
.sticky-cta { display: none; }
@media (max-width: 820px) {
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8,13,24,.94); backdrop-filter: blur(16px); border-top: 1px solid var(--border-2);
  }
  .sticky-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 52px; border-radius: 12px; font-size: 12px; font-weight: 800; }
  .sticky-cta .s-tel { background: rgba(47,125,246,.16); border: 1px solid rgba(47,125,246,.4); color: var(--blue-light); }
  .sticky-cta .s-wa { background: rgba(34,197,122,.14); border: 1px solid rgba(34,197,122,.4); color: var(--green-light); }
  .sticky-cta .s-quote { background: rgba(255,255,255,.06); border: 1px solid var(--border-2); color: var(--text); }
  .sticky-cta .s-emergency { background: var(--orange); color: #fff; }
  body { padding-bottom: 76px; }
}

/* ---- Floating CTA (desktop) ---- */
.floating-cta { position: fixed; right: 22px; bottom: 26px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.floating-btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; }
.floating-whatsapp { background: var(--whatsapp); }
.floating-phone { background: var(--grad); }
@media (max-width: 820px) { .floating-cta { display: none; } }

/* ---- Badges / alerts / misc ---- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 100px; background: rgba(47,125,246,.12); border: 1px solid rgba(47,125,246,.3); color: var(--blue-light); font-size: 12.5px; font-weight: 700; }
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: rgba(34,197,122,.12); border: 1px solid rgba(34,197,122,.4); color: var(--green-light); }
.alert-error { background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.4); color: var(--danger); }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; padding: 14px 22px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border-2); color: #fff; box-shadow: var(--shadow-lg); }
.img-placeholder { background: linear-gradient(135deg, #101B2E, #0F1929); border: 1px solid var(--border); border-radius: var(--r-md); display: grid; place-items: center; color: var(--muted-2); font-size: 13px; position: relative; }
.img-placeholder::after { content: attr(data-label); padding: 12px; text-align: center; }

/* ---- About page ---- */
.about-intro { font-size: 18px; line-height: 1.8; color: var(--text-2); }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 18px; }
.about-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: #fff; }
.about-stat-label { font-size: 13px; color: var(--muted); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.mv-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(47,125,246,.14); color: var(--blue-light); display: grid; place-items: center; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; }
.cert-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; align-items: center; gap: 14px; }
.cert-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(34,197,122,.14); color: var(--green-light); display: grid; place-items: center; flex: none; }
.cert-name { font-weight: 800; font-size: 14.5px; color: #fff; }
.cert-tag { font-size: 12.5px; color: var(--muted); }
.timeline-grid { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.timeline-line { width: 2px; background: linear-gradient(180deg, rgba(47,125,246,.5), rgba(44,197,214,.2)); }
.timeline-year { font-family: var(--font-display); font-weight: 800; color: var(--blue-light); }

/* ---- Sidebar call card / service detail ---- */
.service-detail-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 44px; align-items: start; }
.service-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-call-card { background: var(--grad); border-radius: var(--r-lg); padding: 26px; color: #fff; }
.sidebar-service-link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--text-2); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.sidebar-service-link:hover { border-color: rgba(47,125,246,.5); color: #fff; }
.sidebar-service-icon { color: var(--blue-light); flex: none; }
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; }
.step-title { font-weight: 800; font-size: 16px; color: #fff; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px; }
.case-item { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; font-size: 14px; color: var(--text-2); }

/* ---- Map card ---- */
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); position: relative; min-height: 340px; }
.map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(.85) contrast(1.02); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid, .district-layout, .service-detail-layout, .mv-grid,
  .kurumsal-grid, .whyprocess-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .service-sidebar { position: static; }
  .hero h1, .hero-title { font-size: 42px; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title h2 { font-size: 30px; }
}
@media (max-width: 820px) {
  :root { --gutter: 20px; }
  .nav, .header-phone-text { display: none; }
  .menu-toggle { display: grid; }
  .section { padding-block: 64px; }
  .hero h1, .hero-title { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .cta-banner h2 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .districts-grid, .district-list { grid-template-columns: 1fr 1fr; }
}
