@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue:      #1a56db;
  --blue-dark: #1040b0;
  --navy:      #0f172a;
  --red:       #dc2626;
  --green:     #16a34a;
  --text:      #111827;
  --muted:     #6b7280;
  --line:      #e5e7eb;
  --soft:      #f8fafc;
  --white:     #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #94a3b8;
  font-size: 13px;
  padding: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}
.topbar-addr {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.3;
}
.topbar-addr svg { flex-shrink: 0; opacity: .7; }
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  white-space: nowrap;
  background: rgba(26,86,219,.25);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(26,86,219,.4);
  transition: background .2s;
}
.topbar-phone:hover { background: rgba(26,86,219,.45); }
.topbar-phone svg { opacity: .85; }

/* ── NAVBAR ── */
.navbar {
  background: #000;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 8px;
}
.logo-wrap {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
.logo-wrap img {
  width: 170px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.main-nav > a,
.nav-item > .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  cursor: pointer;
  border: none;
  background: none;
}
.main-nav > a:hover,
.nav-item > .nav-link:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.nav-item { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  padding: 8px;
  min-width: 200px;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
}
.dropdown a:hover { background: #eff6ff; color: var(--blue); }

.nav-cta {
  margin-left: 12px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 3px 12px rgba(26,86,219,.4);
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,86,219,.5) !important;
}

/* ── NAV CALL BUTTON ── */
@keyframes navCallPulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.9); opacity: 0;  }
  100% { transform: scale(1.9); opacity: 0;  }
}
@keyframes navCallShake {
  0%,100% { transform: rotate(0deg); }
  15%     { transform: rotate(-18deg); }
  30%     { transform: rotate(16deg); }
  45%     { transform: rotate(-10deg); }
  60%     { transform: rotate(7deg); }
  75%     { transform: rotate(-4deg); }
}

.nav-call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(22,163,74,.35);
  transition: transform .2s, box-shadow .2s;
  overflow: visible;
}
.nav-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,.45);
}
.nav-call-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  animation: navCallShake 2.5s ease infinite;
}
.nav-call-ring {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(22,163,74,.4);
  animation: navCallPulse 2.5s ease infinite;
  pointer-events: none;
}
.nav-call-text { letter-spacing: .2px; }

.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s;
}
.ham-btn:hover { background: rgba(255,255,255,.18); }
.ham-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.ham-btn.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.active .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BTN ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-green {
  background: var(--green);
}
.btn-green:hover { background: #15803d; }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(to right, rgba(8,12,30,.85) 38%, rgba(8,12,30,.42)),
    url('/assets/hero-banner.png')
    center / cover no-repeat;
  color: #fff;
}
.hero-inner {
  max-width: 640px;
  padding: 40px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,86,219,.35);
  border: 1px solid rgba(147,197,253,.4);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero p {
  margin: 0 0 28px;
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── QUICK BAR ── */
/* ── QUICK BAR ── */
@keyframes qiSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quick-bar {
  background: linear-gradient(90deg, #0f2460 0%, #1a56db 50%, #0f2460 100%);
  background-size: 200% 100%;
  animation: qiGradientShift 6s ease infinite;
  box-shadow: 0 8px 32px rgba(26,86,219,.35);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

@keyframes qiGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* parlayan ışık çizgisi */
.quick-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  animation: qiShine 4s ease infinite;
}
@keyframes qiShine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.quick-bar-inner {
  display: flex;
  align-items: stretch;
  position: relative;
}

.quick-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px;
  cursor: default;
  transition: background .25s;
  opacity: 0;
  animation: qiSlideUp .5s ease forwards;
  animation-delay: var(--qi-delay, 0ms);
}
.quick-item:hover {
  background: rgba(255,255,255,.07);
}

.qi-sep {
  width: 1px;
  background: rgba(255,255,255,.15);
  margin: 12px 0;
  flex-shrink: 0;
}

.qi-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.qi-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.quick-item:hover .qi-icon-wrap {
  background: rgba(255,255,255,.22);
  transform: scale(1.1) rotate(-4deg);
}

.qi-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qi-title {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .1px;
  line-height: 1.2;
}
.qi-sub {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

/* ── QUICK FORM ── */
.quick-form-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.quick-form-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.quick-form-text {
  flex-shrink: 0;
  min-width: 200px;
}
.quick-form-text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}
.quick-form-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.quick-form {
  flex: 1;
}
.quick-form .form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.quick-form .form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}
.quick-form .form-field input,
.quick-form .form-field select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.quick-form .form-field input::placeholder { color: #b0b7c3; }
.quick-form .form-field input:focus,
.quick-form .form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.quick-form-btn {
  width: 100%;
  justify-content: center;
  padding: 12px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  gap: 8px;
  background: #25d366 !important;
  box-shadow: 0 4px 14px rgba(37,211,102,.25) !important;
}
.quick-form-btn:hover {
  background: #1db954 !important;
  transform: translateY(-1px);
}
#formMessage { color: var(--muted); font-size: 12px; display: block; margin-top: 8px; }

@media (max-width: 900px) {
  .quick-form-section { padding: 28px 0; }
  .quick-form-inner {
    flex-direction: column;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
  }
  .quick-form-text { margin-bottom: 18px; }
  .quick-form .form-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 500px) {
  .quick-form-inner { max-width: 100%; border-radius: 12px; }
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.bg-soft { background: var(--soft); }
.bg-navy { background: var(--navy); color: #fff; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.5px;
}
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 16px; }
.divider {
  width: 48px; height: 4px;
  background: var(--blue);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-img { border-radius: 16px; overflow: hidden; height: 340px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.about-text h2 { font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 800; margin: 0 0 14px; }
.about-text p { color: var(--muted); line-height: 1.7; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.about-list li::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: #eff6ff;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a56db'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ── SERVICE CARDS ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.scard:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.scard-img {
  height: 200px;
  overflow: hidden;
}
.scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.scard:hover .scard-img img { transform: scale(1.05); }
.scard-body { padding: 18px 18px 20px; }
.scard-body h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.scard-body p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.scard-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.scard-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.scard-img-wrap { position: relative; height: 200px; overflow: hidden; }
.scard-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.scard:hover .scard-img-wrap img { transform: scale(1.05); }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
/* ── STATS TITLE ── */
.stats-title {
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 10px;
}
.stats-divider {
  width: 36px;
  height: 3px;
  background: #1a56db;
  border-radius: 4px;
  margin: 0 auto 36px;
}

/* ── STAT ITEMS ── */
.stat-item {
  background: rgba(255,255,255,.05);
  padding: 32px 12px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}
.stat-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── REVIEWS ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: box-shadow .2s;
}
.rcard:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.rcard-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.g-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.rcard-name { font-weight: 700; font-size: 15px; }
.rcard-date { font-size: 12px; color: var(--muted); }
.rcard-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.rcard p { margin: 0; font-size: 14px; color: #374151; line-height: 1.6; font-style: italic; }

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  gap: 12px;
}
.faq-q .icon {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* ── DISTRICTS ── */
.dist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.dist-card {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: default;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
  user-select: none;
}
.dist-card:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #eff6ff;
  box-shadow: 0 4px 12px rgba(26,86,219,.1);
}
.dist-card svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: #ef4444;
  stroke: none;
  opacity: .85;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  text-align: center;
  padding: 64px 0;
  color: #fff;
}
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 900; margin: 0 0 10px; }
.cta-band p { color: #94a3b8; margin: 0 0 28px; font-size: 16px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 360px; }
.contact-info {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info h3 { margin: 0 0 4px; font-size: 22px; font-weight: 800; }
.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cinfo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.bg-blue { background: #dbeafe; }
.bg-green { background: #dcfce7; }
.bg-red { background: #fee2e2; }
.cinfo-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; font-weight: 500; }
.cinfo-val { font-weight: 700; font-size: 15px; color: var(--text); }
.cinfo-val a { color: var(--text); }
.contact-btns { display: flex; gap: 10px; margin-top: 4px; }

/* ── FORM ── */
.lead-form {
  display: grid;
  gap: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-field input,
.form-field select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--blue); }
#formMessage { font-size: 13px; color: var(--green); font-weight: 600; }

/* ── FOOTER ── */
.footer-top {
  background: var(--navy);
  padding: 56px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand p { color: #64748b; font-size: 14px; line-height: 1.7; margin: 14px 0 0; max-width: 280px; }
.footer-logo-wrap {
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 6px 10px;
  display: inline-block;
}
.footer-logo-wrap img { width: 140px; }
.footer-col h4 { color: #e2e8f0; font-size: 13px; font-weight: 700; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-contact-item span { font-size: 16px; }
.footer-contact-item a { color: #94a3b8; font-size: 14px; }
.footer-bar {
  background: #030712;
  padding: 14px 0;
}
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 13px;
}

/* ── FLOATING ── */
#floating {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  left: 0;
  right: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.fl-btn {
  pointer-events: all;
  width: 54px; height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .15s;
}
.fl-btn:hover { transform: scale(1.1); }
.fl-call { background: var(--blue); }
.fl-wa   { background: var(--green); }

/* ── ABOUT MODAL ── */
@keyframes amodalIn {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.amodal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  padding: 20px 16px;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}
.amodal-overlay.open {
  display: flex;
}

.amodal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  margin: auto;
  position: relative;
  overflow: hidden;
  animation: amodalIn .3s cubic-bezier(.22,.68,0,1.2) both;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.amodal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s;
}
.amodal-close:hover { background: rgba(0,0,0,.14); }
.amodal-close svg { width: 18px; height: 18px; }

.amodal-header {
  background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
  padding: 36px 32px 28px;
  text-align: center;
  color: #fff;
}
.amodal-logo {
  margin: 0 auto 16px;
  width: 160px;
}
.amodal-logo img { width: 100%; height: auto; }
.amodal-header h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.amodal-header p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.amodal-body {
  padding: 28px 28px 32px;
}

.amodal-story p {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.amodal-story p:last-child { margin-bottom: 0; }

.amodal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 24px 0;
}
.amodal-stat {
  background: #f8fafc;
  padding: 16px 8px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.amodal-stat strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.amodal-stat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.amodal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.amodal-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
}
.amodal-feat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.amodal-feat-icon svg { width: 18px; height: 18px; stroke: var(--blue); }
.amodal-feat strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.amodal-feat span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.amodal-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.amodal-address svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--blue); margin-top: 1px; }

.amodal-ctas {
  display: flex;
  gap: 12px;
}
.amodal-btn-call,
.amodal-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s, box-shadow .15s;
}
.amodal-btn-call:hover,
.amodal-btn-wa:hover { transform: translateY(-2px); }
.amodal-btn-call {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,86,219,.3);
}
.amodal-btn-call svg { width: 18px; height: 18px; }
.amodal-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.amodal-btn-wa svg { width: 18px; height: 18px; }

@media (max-width: 500px) {
  .amodal-header { padding: 28px 20px 22px; }
  .amodal-body { padding: 20px 16px 24px; }
  .amodal-stats { grid-template-columns: repeat(2, 1fr); }
  .amodal-features { grid-template-columns: 1fr; }
  .amodal-ctas { flex-direction: column; }
}

/* ── INNER PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #1e3a8a);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { margin: 0 0 12px; font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 900; }
.page-hero p { color: #94a3b8; max-width: 640px; margin: 0 auto 24px; font-size: 17px; }
.page-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.breadcrumb {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--blue); }

.prose { max-width: 880px; margin: 0 auto; line-height: 1.75; color: #374151; }
.prose h2 { color: var(--text); font-weight: 800; margin-top: 36px; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; font-size: 15px; }
.prose th { background: #eff6ff; font-weight: 700; }
.list-check { padding: 0; list-style: none; display: grid; gap: 8px; }
.list-check li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.list-check li::before { content: '✔'; color: var(--blue); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SERVICE DETAIL PAGE ── */
@media (max-width: 768px) {
  .service-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* topbar mobil */
  .topbar-addr { display: none; }
  .topbar-inner {
    justify-content: center;
    min-height: 44px;
  }
  .topbar-phone {
    font-size: 15px;
    padding: 6px 20px;
    gap: 8px;
  }

  /* overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
    z-index: 98;
    opacity: 0;
    transition: opacity .25s;
  }
  .nav-overlay.show {
    display: block;
    opacity: 1;
  }

  .ham-btn { display: flex; }

  @keyframes mobileNavSlide {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    z-index: 99;
    margin: 0;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    border-top: 3px solid var(--blue);
  }
  .main-nav.open {
    display: flex;
    animation: mobileNavSlide .22s ease both;
  }

  /* her link satırı */
  .main-nav > a,
  .nav-item > .nav-link {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s, color .15s;
  }
  .main-nav > a:hover,
  .nav-item > .nav-link:hover {
    background: #eff6ff;
    color: var(--blue);
  }
  .main-nav > a:active,
  .nav-item > .nav-link:active {
    background: #dbeafe;
  }

  /* dropdown ok işareti */
  .nav-item > .nav-link::after {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s;
    margin-top: -3px;
  }
  .nav-item.open > .nav-link::after {
    transform: rotate(-135deg);
    margin-top: 3px;
  }

  .dropdown {
    position: static;
    display: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: #f8fafc;
  }
  .nav-item.open .dropdown { display: block !important; }
  .dropdown a {
    padding: 12px 20px 12px 36px;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .dropdown a::before {
    content: '→';
    color: var(--blue);
    font-size: 12px;
  }
  .dropdown a:hover { background: #eff6ff; color: var(--blue); }

  .nav-cta {
    display: flex !important;
    justify-content: center;
    margin: 16px 0 4px;
    border-radius: 12px;
    padding: 14px 18px !important;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(26,86,219,.35);
  }

  .nav-inner { min-height: 62px; }
  .logo-wrap img { width: 140px; height: 54px; }
  .nav-call-btn { margin-right: 10px; padding: 9px 14px; font-size: 13px; }
  .nav-call-text { display: none; }
  .nav-call-btn svg { width: 18px; height: 18px; }

  .hero { min-height: 480px; }
  .hero-inner { text-align: center; }
  .hero-btns { justify-content: center; }

  .service-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dist-grid { grid-template-columns: repeat(3, 1fr); }
  .about-strip { grid-template-columns: 1fr; }
  .quick-bar-inner { flex-wrap: wrap; }
  .quick-item { flex: 1 1 45%; }
  .qi-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .service-grid { grid-template-columns: 1fr; }
  .dist-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-inner { flex-direction: column; text-align: center; padding: 6px 0; gap: 3px; font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
}
