:root {
  --blue: #0281bc;
  --blue-2: #026fa3;
  --sky: #0ea5e9;
  --ink: #1c2430;
  --muted: #5c6774;
  --line: #e6edf3;
  --bg: #f7f9fb;
  --card: #ffffff;
  --footer: #171c22;
  --shadow: 0 16px 40px rgba(16, 40, 64, 0.08);
  --radius: 16px;
  --header: 86px;
  --top: 38px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  height: var(--top);
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.topbar a { color: #fff; font-weight: 700; white-space: nowrap; }
.topbar a:hover { text-decoration: underline; }
.top-note { opacity: 0.95; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  height: var(--header);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.logo-mark {
  width: 46px;
  height: 46px;
  flex: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-size: 15px;
  letter-spacing: 0.4px;
  font-weight: 800;
}
.logo-text span {
  margin-top: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 8px;
  width: fit-content;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .drop > button {
  background: none;
  border: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav > a:hover, .drop > button:hover, .nav > a.active { color: var(--blue); }
.drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  border: 1px solid var(--line);
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 650;
  font-size: 14px;
}
.drop-menu a:hover { background: #f2f8fc; color: var(--blue); }
.head-call {
  background: var(--blue);
  color: #fff !important;
  border-radius: 999px;
  padding: 11px 16px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}
.head-call:hover { background: var(--blue-2); color: #fff !important; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  background: #123;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 28, 42, 0.72) 0%, rgba(12, 28, 42, 0.28) 58%, rgba(12, 28, 42, 0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 70px;
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  max-width: 720px;
  margin: 0 0 14px;
  font-weight: 800;
}
.hero p { margin: 0 0 24px; font-size: 18px; max-width: 520px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  width: fit-content;
}
.btn:hover { background: var(--blue-2); }
.btn.light { background: #fff; color: var(--blue); }
.btn.ghost { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.slider-nav {
  position: absolute;
  z-index: 3;
  top: 46%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 22px;
}
.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }

.quick {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}
.quick-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  overflow: hidden;
  border: 1px solid #edf2f6;
}
.quick a, .quick .q-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px;
  font-weight: 800;
}
.quick .q-item { border-right: 1px solid var(--line); }
.quick .q-btn {
  background: var(--blue);
  color: #fff;
  justify-content: center;
}
.quick .q-btn:hover { background: var(--blue-2); }
.dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f5fc;
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
}

.section { padding: 84px 0; }
.section.alt { background: var(--bg); }
.kicker {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  margin-right: 10px;
  vertical-align: middle;
}
h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.2; margin: 0 0 14px; }
.lead { color: var(--muted); margin-top: 0; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 18px 0; }
.checks li { padding: 6px 0 6px 22px; position: relative; font-weight: 700; }
.checks li::before { content: "›"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.phone-line { font-size: 22px; font-weight: 800; color: var(--ink); }
.phone-line:hover { color: var(--blue); }
.photo-wrap { position: relative; }
.photo-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: center 80%; border-radius: 8px; }
.ribbon {
  position: absolute;
  left: -18px;
  top: 46px;
  background: var(--blue);
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 18px 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 6px;
}

.center { text-align: center; }
.center .kicker::before { display: none; }
.pill {
  display: inline-flex;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 14px;
}

.cities { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 28px; }
.city {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}
.city:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.city i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sky);
  display: inline-block;
}

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 8px; }
.review h3 { margin: 0 0 8px; font-size: 16px; }
.review p { margin: 0; color: var(--muted); }

.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 8px;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item p { display: none; margin: 0 8px 16px; color: var(--muted); }
.faq-item.open p { display: block; }

.banner {
  background: linear-gradient(100deg, #026fa3, #0ea5e9);
  color: #fff;
  border-radius: 18px;
  padding: 42px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.banner h2 { margin: 0 0 8px; }
.banner p { margin: 0; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,40,64,0.04);
}
.card img { height: 150px; width: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0 0 12px; color: var(--muted); font-size: 14px; min-height: 66px; }
.card a { color: var(--blue); font-weight: 800; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}
.step h3 { margin: 0 0 8px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.prose { max-width: 900px; }
.prose h3 { margin-bottom: 6px; }
.note {
  background: #f4f8fb;
  border-left: 4px solid var(--blue);
  padding: 14px 16px;
  color: var(--muted);
  border-radius: 8px;
}

.page-hero {
  background: linear-gradient(100deg, rgba(2,111,163,0.92), rgba(14,165,233,0.78)), url("../img/hero-mutfak.jpg") center/cover;
  color: #fff;
  padding: 64px 0 52px;
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(32px, 4vw, 46px); }
.crumbs { opacity: 0.9; font-size: 14px; }
.crumbs a { color: #fff; text-decoration: underline; }

.layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.side {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.side .btn { width: 100%; }
.big-phone { font-size: 28px; font-weight: 800; color: var(--blue); display: block; margin: 8px 0 14px; }

.form { display: grid; gap: 12px; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form-ok {
  display: none;
  background: #e8f7ee;
  color: #146c36;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
}

.footer { background: var(--footer); color: #d5dde6; padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
.footer h4 { color: #fff; margin: 0 0 12px; }
.footer a { display: block; padding: 4px 0; color: #d5dde6; }
.footer a:hover { color: #fff; }
.footer .phone-line { color: #fff; }
.copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #1b1f24;
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.cookie button {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}
.float-call, .mobile-bar { display: none; }

@media (min-width: 901px) {
  .float-call {
    display: flex;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    background: var(--blue);
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(2,129,188,0.35);
  }
}
@media (max-width: 1180px) {
  .head-call { display: none; }
  .nav > a, .drop > button { padding: 10px 8px; font-size: 14px; }
}
@media (max-width: 980px) {
  .cities { grid-template-columns: repeat(2, 1fr); }
  .cards, .reviews { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .layout, .footer-grid, .quick-box { grid-template-columns: 1fr; }
  .banner { flex-direction: column; align-items: flex-start; }
  .ribbon { display: none; }
  .side { position: static; }
}
@media (max-width: 800px) {
  .top-note { display: none; }
  .menu-btn { display: block; }
  .head-call { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 12px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .drop-menu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 8px 12px; }
  .hero, .hero-content { min-height: 520px; }
  .cards, .reviews, .steps, .cities { grid-template-columns: 1fr; }
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    background: var(--blue);
    color: #fff;
    justify-content: center;
    padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
    font-weight: 800;
    font-size: 17px;
  }
  body { padding-bottom: 64px; }
  .cookie { bottom: 72px; flex-direction: column; align-items: stretch; }
  .copy { flex-direction: column; }
}
