:root {
  --ink: #142333;
  --muted: #657487;
  --blue: #0b83c9;
  --blue-dark: #0f4168;
  --sky: #eaf6fc;
  --line: #d8e5ef;
  --white: #ffffff;
  --soft: #f5f9fc;
  --green: #21a77a;
  --urgent: #f05a28;
  --shadow: 0 18px 42px rgba(20, 35, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

/* ── TOPBAR ── */
.topbar {
  color: var(--white);
  background: #0b2e4a;
  font-size: 14px;
}
.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { font-weight: 700; }
.topbar__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 14px;
  color: var(--white);
  background: var(--urgent);
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 900;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 800;
  white-space: nowrap;
}
.logo__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  font-weight: 900;
}
.site-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #36475b;
  font-size: 15px;
  font-weight: 700;
}
.site-menu a {
  padding: 26px 0;
  border-bottom: 3px solid transparent;
}
.site-menu a.active,
.site-menu a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
}

/* ── BUTTONS ── */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(11,131,201,0.22);
}
.btn--call {
  color: var(--white);
  background: var(--urgent);
  box-shadow: 0 10px 24px rgba(240,90,40,0.28);
}
.btn--whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(33,167,122,0.22);
}
.btn--light {
  color: var(--blue-dark);
  background: var(--white);
}
.btn--full { width: 100%; }

.btn--large {
  min-height: 54px;
  padding: 0 28px;
  font-size: 17px;
}
.btn--xl {
  min-height: 62px;
  padding: 0 36px;
  font-size: 20px;
  letter-spacing: 0.3px;
}

/* Pulse on primary call button */
@keyframes pulse-call {
  0%   { box-shadow: 0 0 0 0 rgba(240,90,40,0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(240,90,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,90,40,0); }
}
.btn--call { animation: pulse-call 2.2s infinite; }
.btn--call:hover { animation: none; }

/* ── HERO ── */
.hero {
  background:
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 0 72px;
}

.eyebrow,
.section-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  color: var(--blue-dark);
  background: #e9f6fd;
  border: 1px solid #cce8f7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}
.eyebrow.emergency {
  color: #7a260f;
  background: #fff1ea;
  border-color: #ffd3c1;
}
.section-label--light {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0 0 6px;
  color: #0f2f4d;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
}

/* "30 Dakikada Usta Yönlendirme" */
.hero__sub {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.hero__desc {
  margin: 0 0 20px;
  color: #4f6074;
  font-size: 18px;
  line-height: 1.6;
}

/* Price hook badge */
.price-hook {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 9px 18px;
  background: #eaffed;
  border: 1px solid #9be0b0;
  border-radius: 20px;
  color: #1a5e30;
  font-size: 14px;
  font-weight: 800;
}

/* Live ticker */
.live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 16px;
  background: #f0f9ff;
  border: 1px solid #b8e2f8;
  border-radius: 20px;
  color: #0b5a8e;
  font-size: 13px;
  font-weight: 700;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Big phone in hero */
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 32px;
  color: var(--white);
  background: var(--urgent);
  border-radius: 10px;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 8px 28px rgba(240,90,40,0.35);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

/* 6-item trust stats row */
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 130px;
  box-shadow: 0 4px 12px rgba(20,35,51,0.07);
}
.trust-stat--urgent {
  border-color: #ffd3c1;
  background: #fff8f4;
}
.trust-stat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}
.trust-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  padding: 13px 0;
  background: #fffbe6;
  border-top: 1px solid #f5d87a;
  border-bottom: 1px solid #f5d87a;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #6b4c00;
}
.urgency-bar strong { color: #c0390a; }
.urgency-bar a {
  color: #c0390a;
  font-weight: 900;
  text-decoration: underline;
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section--soft { background: var(--soft); }
.section__head { margin-bottom: 36px; }
.section__head h2,
.split h2 {
  max-width: 720px;
  margin: 0 0 12px;
  color: #0f2f4d;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}
.section__head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Per-section CTA buttons */
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* ── SERVICE CARDS ── */
.cards { display: grid; gap: 16px; }
.cards--four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.cards--five { grid-template-columns: repeat(5, minmax(0,1fr)); }

.service-card,
.card,
.info-box,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-card { padding: 24px; }

.card {
  min-height: 230px;
  padding: 22px;
  box-shadow: none;
}
.card--urgent {
  border-color: #ffd3c1;
  background: #fff9f6;
}
.card h3 {
  margin: 0 0 10px;
  color: #0f2f4d;
  font-size: 17px;
}
.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.card a { color: var(--blue); font-weight: 800; font-size: 14px; }

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
}
.icon--cool   { color: var(--blue-dark); background: var(--sky); }
.icon--urgent { color: #c0390a; background: #fff1ea; }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.why-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(20,35,51,0.06);
}
.why-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.why-item strong {
  display: block;
  margin-bottom: 8px;
  color: #0f2f4d;
  font-size: 16px;
}
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ── DISTRICTS ── */
.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.districts-grid span {
  padding: 8px 16px;
  background: var(--sky);
  border: 1px solid #cce8f7;
  border-radius: 20px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #0f2f4d;
  text-align: left;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow {
  font-size: 12px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.2s;
}
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid var(--line);
}
.faq-item.is-open .faq-a { display: block; }
.faq-a p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ── FINAL CTA BLOCK ── */
.cta-final {
  padding: 0;
}
.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 16px;
  color: var(--white);
}
.cta-final__inner h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
}
.cta-final__inner p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.6;
}
.cta-final__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: 1px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* kept for inner-page CTA blocks */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 12px;
}
.cta h2 { max-width:720px; margin:0 0 12px; color:var(--white); font-size:clamp(26px,4vw,40px); line-height:1.1; }
.cta p  { max-width:590px; margin:0; color:rgba(255,255,255,0.88); opacity:.88; line-height:1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fcff, #e9f7fc);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); }
.page-hero p, .text-large {
  max-width: 650px;
  color: #4f6074;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.hero__actions.page-actions { margin-top: 24px; justify-content: flex-start; }

/* ── SPLIT (hakkimizda) ── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: #33465b;
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}
.info-box, .contact-panel { padding: 28px; }
.service-card--lead h2,
.lead-form h2,
.contact-panel h2 { margin:0 0 18px; color:#0f2f4d; font-size:22px; }

/* ── SERVICE LIST (hizmetler.html) ── */
.service-list { display: grid; gap: 16px; }
.service-row {
  display: grid;
  grid-template-columns: 240px minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.service-index { display:block; margin-bottom:8px; color:var(--blue); font-weight:900; }
.service-row h2 { margin:0; color:#0f2f4d; font-size:23px; }
.service-row p  { margin:0; color:var(--muted); line-height:1.6; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: start;
}
.contact-link {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-link:last-child { border-bottom: 0; }
.contact-link strong { color: var(--blue-dark); }
.contact-link span   { color: var(--muted); }

/* ── LEAD FORM ── */
.lead-form { display: grid; gap: 12px; }
.lead-form label {
  display: grid;
  gap: 6px;
  color: #3a4b60;
  font-size: 14px;
  font-weight: 800;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
.lead-form textarea { min-height: 112px; resize: vertical; }
.form-note { margin:0; color:var(--muted); font-size:13px; line-height:1.45; }

/* ── FOOTER ── */
.site-footer {
  padding: 44px 0 28px;
  color: rgba(255,255,255,0.82);
  background: #0f2f4d;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) repeat(3, minmax(130px,0.6fr));
  gap: 28px;
}
.logo--footer { color: var(--white); margin-bottom: 14px; }
.site-footer p    { max-width:380px; margin:0; line-height:1.6; }
.site-footer h3   { margin:0 0 13px; color:var(--white); font-size:16px; }
.site-footer a,
.site-footer span { display:block; margin-bottom:10px; font-size:14px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  opacity: .5;
}

/* ── MOBILE STICKY BAR ── */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -8px 24px rgba(20,35,51,0.18);
}
.mobile-bar a {
  min-height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.3px;
}
.mobile-bar a:first-child { background: var(--urgent); }
.mobile-bar a:last-child  { background: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .cards--five { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .why-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .header-call { display:inline-flex; padding:0 12px; font-size:14px; }
  .nav-toggle  { display: block; }
  .site-menu {
    position: fixed;
    left: 16px; right: 16px; top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-menu.is-open { display: flex; }
  .site-menu a { padding:15px; border-bottom:1px solid var(--line); }
  .site-menu a:last-child { border-bottom: 0; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .cards--four  { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cards--five  { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .why-grid     { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-row  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .cta { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .container { width: min(100% - 24px, 1140px); }
  .nav { min-height:66px; gap:10px; }
  .logo { font-size:18px; }
  .logo__mark { width:36px; height:36px; }
  .header-call { min-height:40px; font-size:13px; padding:0 10px; }
  .nav-toggle  { width:40px; height:40px; }

  h1 { font-size: 36px; }
  .hero__sub { font-size: 20px; }
  .hero__phone { font-size: 22px; padding: 12px 22px; }

  .hero__actions .btn,
  .cta__actions .btn,
  .section-actions .btn { width:100%; justify-content:center; }

  .trust-stats { flex-direction: column; align-items: center; }
  .trust-stat  { width: 100%; max-width: 320px; flex-direction: row; justify-content: center; gap: 10px; }

  .cards--four,
  .cards--five,
  .why-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .section, .page-hero { padding: 48px 0; }

  .cta { padding:24px; }
  .cta__actions { flex-direction:column; }

  .cta-final__inner { padding:36px 24px; }
  .cta-final__phone { font-size:20px; padding:12px 20px; }

  .mobile-bar { display: grid; }
  body { padding-bottom: 60px; }
}
