/* ============================================================
   BebekSünneti — Homepage CSS
   Pixel-perfect match to reference image
   bs- prefix — isolated from subpages
   ============================================================ */

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --bs-navy: #071b2d;
  --bs-navy-2: #0b2b3c;
  --bs-blue: #0b74d1;
  --bs-blue-hover: #0963b3;
  --bs-blue-soft: #eaf5ff;
  --bs-teal: #0f766e;
  --bs-teal-soft: #e0f2f1;
  --bs-mint: #e8f7f3;
  --bs-cream: #fbf7ef;
  --bs-stone: #f4f8fb;
  --bs-border: #dfe7e8;
  --bs-border-2: #c8d5d7;
  --bs-text: #102033;
  --bs-muted: #667789;
  --bs-amber: #c97822;
  --bs-amber-2: #e19a3b;
  --bs-white: #ffffff;
  --bs-red: #dc2626;
  --bs-font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --bs-font-body: 'Inter', system-ui, sans-serif;
  --bs-r: 12px;
  --bs-r-sm: 8px;
  --bs-r-lg: 16px;
  --bs-r-xl: 24px;
  --bs-r-pill: 9999px;
  --bs-shadow-xs: 0 1px 2px rgba(7,27,45,.04);
  --bs-shadow-sm: 0 1px 3px rgba(7,27,45,.06), 0 1px 2px rgba(7,27,45,.04);
  --bs-shadow: 0 4px 12px rgba(7,27,45,.08);
  --bs-shadow-lg: 0 8px 30px rgba(7,27,45,.12);
  --bs-shadow-xl: 0 20px 50px rgba(7,27,45,.15);
  --bs-dur: .2s;
  --bs-dur-slow: .4s;
  --bs-ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── BASE ─────────────────────────────────────────── */
.bs-page { font-family: var(--bs-font-body); color: var(--bs-text); line-height: 1.6; font-size: 16px }
.bs-page *, .bs-page *::before, .bs-page *::after { box-sizing: border-box }
.bs-page img, .bs-page svg { display: block; max-width: 100% }
.bs-page a { color: inherit; text-decoration: none }

.bs-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── EYEBROW ──────────────────────────────────────── */
.bs-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--bs-blue); margin-bottom: 12px;
}

/* ── SECTION HEAD ─────────────────────────────────── */
.bs-section-head { text-align: center; margin-bottom: 48px }
.bs-section-head .bs-eyebrow::before, .bs-section-head .bs-eyebrow::after {
  content: ''; width: 24px; height: 1.5px; background: var(--bs-blue); opacity: .3;
}
.bs-section-head h2 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px); color: var(--bs-navy);
  margin: 0 0 12px; line-height: 1.2;
}
.bs-section-head p { font-size: 17px; color: var(--bs-muted); max-width: 560px; margin: 0 auto }

/* ── BUTTONS ──────────────────────────────────────── */
.bs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--bs-font-body); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: var(--bs-r-sm); border: none; cursor: pointer;
  transition: all var(--bs-dur) var(--bs-ease); text-decoration: none; white-space: nowrap;
  line-height: 1.4;
}
.bs-btn svg { width: 16px; height: 16px; flex-shrink: 0 }
.bs-btn--primary { background: var(--bs-blue); color: #fff }
.bs-btn--primary:hover { background: var(--bs-blue-hover); box-shadow: 0 4px 14px rgba(11,116,209,.3) }
.bs-btn--secondary { background: var(--bs-white); color: var(--bs-blue); border: 1.5px solid var(--bs-blue) }
.bs-btn--secondary:hover { background: var(--bs-blue-soft) }
.bs-btn--ghost { background: transparent; color: var(--bs-text); border: 1.5px solid var(--bs-border) }
.bs-btn--ghost:hover { border-color: var(--bs-blue); color: var(--bs-blue) }
.bs-btn--amber { background: var(--bs-amber); color: #fff }
.bs-btn--amber:hover { background: var(--bs-amber-2) }
.bs-btn--whatsapp { background: #25d366; color: #fff }
.bs-btn--whatsapp:hover { background: #1fba59 }
.bs-btn--sm { padding: 7px 14px; font-size: 13px }
.bs-btn--lg { padding: 14px 28px; font-size: 16px }
.bs-btn--block { width: 100% }

/* ── TOPBAR ───────────────────────────────────────── */
.bs-topbar {
  background: var(--bs-navy); color: rgba(255,255,255,.85);
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bs-topbar .bs-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap }
.bs-topbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap }
.bs-topbar__item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap }
.bs-topbar__item svg { width: 14px; height: 14px; opacity: .7; flex-shrink: 0 }
.bs-topbar__item a { color: rgba(255,255,255,.85); transition: color var(--bs-dur) }
.bs-topbar__item a:hover { color: #fff }
.bs-topbar__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bs-amber); color: #fff;
  padding: 5px 14px; border-radius: var(--bs-r-pill);
  font-weight: 600; font-size: 12px; transition: background var(--bs-dur);
}
.bs-topbar__cta:hover { background: var(--bs-amber-2) }
@media (max-width: 768px) {
  .bs-topbar__left { gap: 12px }
  .bs-topbar__item:nth-child(3) { display: none }
}
@media (max-width: 480px) {
  .bs-topbar { font-size: 12px; padding: 6px 0 }
  .bs-topbar__item:nth-child(2) { display: none }
}

/* ── HEADER ───────────────────────────────────────── */
.bs-header {
  background: var(--bs-white); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--bs-border); transition: box-shadow var(--bs-dur);
}
.bs-header.is-scrolled { box-shadow: var(--bs-shadow) }
.bs-header .bs-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.bs-header__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }
.bs-header__logo {
  width: 40px; height: 40px; border-radius: var(--bs-r-sm);
  background: var(--bs-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bs-font-display); font-weight: 800; font-size: 16px;
}
.bs-header__title {
  font-family: var(--bs-font-display); font-weight: 700; font-size: 18px;
  color: var(--bs-navy); line-height: 1.2;
}
.bs-header__title small { display: block; font-size: 11px; font-weight: 500; color: var(--bs-muted); letter-spacing: .02em }
.bs-header__nav { display: flex; align-items: center; gap: 4px }
.bs-header__nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--bs-text); border-radius: var(--bs-r-sm);
  transition: background var(--bs-dur), color var(--bs-dur);
}
.bs-header__nav a:hover { background: var(--bs-stone); color: var(--bs-blue) }
.bs-header__nav a.active { color: var(--bs-blue); background: var(--bs-blue-soft) }
.bs-header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0 }

.bs-header__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.bs-header__toggle span { display: block; width: 22px; height: 2px; background: var(--bs-navy); border-radius: 2px; transition: all var(--bs-dur) }
@media (max-width: 960px) {
  .bs-header__nav { display: none }
  .bs-header__toggle { display: flex }
  .bs-header__actions .bs-btn--ghost { display: none }
}

/* ── MOBILE NAV ───────────────────────────────────── */
.bs-mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bs-white); z-index: 9999;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s var(--bs-ease);
  overflow-y: auto;
}
.bs-mobile-nav.is-open { transform: translateX(0) }
.bs-mobile-nav__top { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--bs-border) }
.bs-mobile-nav__close { background: none; border: none; cursor: pointer; padding: 8px }
.bs-mobile-nav__close svg { width: 24px; height: 24px; color: var(--bs-text) }
.bs-mobile-nav__links { display: flex; flex-direction: column; padding: 16px 24px }
.bs-mobile-nav__links a {
  padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--bs-text);
  border-bottom: 1px solid var(--bs-border);
}
.bs-mobile-nav__links a:last-child { border-bottom: none }
.bs-mobile-nav__cta { padding: 24px; display: flex; flex-direction: column; gap: 10px; margin-top: auto }

/* ══════════════════════════════════════════════════════
   1 · HERO — Light gradient, left text + right photo
   ══════════════════════════════════════════════════════ */
.bs-hero {
  background: linear-gradient(135deg, var(--bs-stone) 0%, var(--bs-white) 60%, var(--bs-blue-soft) 100%);
  padding: 72px 0 80px;
  position: relative; overflow: hidden;
}
.bs-hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,116,209,.06) 0%, transparent 70%);
  pointer-events: none;
}
.bs-hero .bs-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
.bs-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bs-mint); color: var(--bs-teal);
  padding: 6px 16px; border-radius: var(--bs-r-pill);
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.bs-hero__badge svg { width: 16px; height: 16px }
.bs-hero h1 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.12;
  color: var(--bs-navy); margin: 0 0 20px; letter-spacing: -.02em;
}
.bs-hero__desc {
  font-size: 18px; line-height: 1.65; color: var(--bs-muted);
  max-width: 520px; margin-bottom: 32px;
}
.bs-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px }
.bs-hero__trust { display: flex; flex-wrap: wrap; gap: 20px }
.bs-hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--bs-muted); font-weight: 500;
}
.bs-hero__trust-item svg { width: 18px; height: 18px; color: var(--bs-teal); flex-shrink: 0 }

/* Hero right — photo + overlay city card */
.bs-hero__right { position: relative }
.bs-hero__photo {
  width: 100%; border-radius: var(--bs-r-xl); overflow: hidden;
  box-shadow: var(--bs-shadow-lg); aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bs-blue-soft), var(--bs-mint));
}
.bs-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block }
.bs-hero__visual {
  background: var(--bs-white); border-radius: var(--bs-r-xl);
  padding: 28px; box-shadow: var(--bs-shadow-lg);
  border: 1px solid var(--bs-border);
  position: absolute; bottom: 24px; right: 24px; width: 280px; z-index: 2;
}
.bs-hero__visual-icon {
  width: 56px; height: 56px; border-radius: var(--bs-r);
  background: var(--bs-blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bs-hero__visual-icon svg { width: 28px; height: 28px; color: var(--bs-blue) }
.bs-hero__visual h3 { font-family: var(--bs-font-display); font-weight: 700; font-size: 20px; margin: 0 0 8px; color: var(--bs-navy) }
.bs-hero__visual p { font-size: 14px; color: var(--bs-muted); margin: 0 0 20px }
.bs-hero__visual select {
  width: 100%; padding: 12px 16px; font-size: 15px;
  border: 1.5px solid var(--bs-border); border-radius: var(--bs-r-sm);
  background: var(--bs-white); color: var(--bs-text); font-family: var(--bs-font-body);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23667789' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  margin-bottom: 12px; transition: border-color var(--bs-dur);
}
.bs-hero__visual select:focus { outline: none; border-color: var(--bs-blue) }

@media (max-width: 960px) {
  .bs-hero { padding: 48px 0 56px }
  .bs-hero .bs-container { grid-template-columns: 1fr; gap: 32px }
  .bs-hero h1 { font-size: clamp(32px, 6vw, 48px) }
  .bs-hero__desc { font-size: 16px }
  .bs-hero__visual { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px }
}

/* ══════════════════════════════════════════════════════
   2 · STATS STRIP
   ══════════════════════════════════════════════════════ */
.bs-stats {
  background: var(--bs-white);
  border-top: 1px solid var(--bs-border);
  border-bottom: 1px solid var(--bs-border);
  padding: 24px 0;
}
.bs-stats .bs-container {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; text-align: center;
}
.bs-stats__item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px 12px; border-right: 1px solid var(--bs-border); position: relative;
}
.bs-stats__item:last-child, .bs-stats__cta { border-right: none }
.bs-stats__icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bs-blue-soft); margin-bottom: 4px;
}
.bs-stats__icon svg { width: 18px; height: 18px; color: var(--bs-blue) }
.bs-stats__icon--teal { background: var(--bs-mint) }
.bs-stats__icon--teal svg { color: var(--bs-teal) }
.bs-stats__num { font-family: var(--bs-font-display); font-weight: 800; font-size: 24px; color: var(--bs-navy); line-height: 1.2 }
.bs-stats__label { font-size: 13px; color: var(--bs-muted); font-weight: 500 }
.bs-stats__cta {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px 12px; background: var(--bs-blue); border-radius: var(--bs-r);
  color: #fff; text-decoration: none; transition: background var(--bs-dur);
}
.bs-stats__cta:hover { background: var(--bs-blue-hover) }
.bs-stats__cta .bs-stats__num { color: #fff; font-size: 18px }
.bs-stats__cta .bs-stats__label { color: rgba(255,255,255,.8) }
.bs-stats__cta-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 2px;
}
.bs-stats__cta-icon svg { width: 18px; height: 18px; color: #fff }
@media (max-width: 960px) {
  .bs-stats .bs-container { grid-template-columns: repeat(3, 1fr) }
  .bs-stats__item:nth-child(3) { border-right: none }
  .bs-stats__item:nth-child(n+4) { display: none }
  .bs-stats__cta { display: none }
}
@media (max-width: 480px) {
  .bs-stats .bs-container { grid-template-columns: repeat(2, 1fr) }
  .bs-stats__item:nth-child(2) { border-right: none }
  .bs-stats__item:nth-child(n+3) { display: none }
}

/* ══════════════════════════════════════════════════════
   3 · WHY US — 4 cards
   ══════════════════════════════════════════════════════ */
.bs-why { padding: 80px 0; background: var(--bs-stone) }
.bs-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }
.bs-why__card {
  background: var(--bs-white); border-radius: var(--bs-r-lg);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--bs-border);
  transition: border-color var(--bs-dur), box-shadow var(--bs-dur), transform var(--bs-dur);
}
.bs-why__card:hover { border-color: var(--bs-blue); box-shadow: var(--bs-shadow); transform: translateY(-4px) }
.bs-why__card-icon {
  width: 56px; height: 56px; border-radius: var(--bs-r); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.bs-why__card-icon--blue { background: var(--bs-blue-soft) }
.bs-why__card-icon--blue svg { color: var(--bs-blue) }
.bs-why__card-icon--teal { background: var(--bs-mint) }
.bs-why__card-icon--teal svg { color: var(--bs-teal) }
.bs-why__card-icon--amber { background: var(--bs-cream) }
.bs-why__card-icon--amber svg { color: var(--bs-amber) }
.bs-why__card-icon svg { width: 24px; height: 24px }
.bs-why__card h3 { font-family: var(--bs-font-display); font-weight: 700; font-size: 17px; margin: 0 0 8px; color: var(--bs-navy) }
.bs-why__card p { font-size: 14px; color: var(--bs-muted); margin: 0; line-height: 1.6 }
@media (max-width: 960px) { .bs-why__grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 480px) { .bs-why__grid { grid-template-columns: 1fr } }

/* ══════════════════════════════════════════════════════
   4 · PROCESS — left heading + 4-step timeline
   ══════════════════════════════════════════════════════ */
.bs-process { padding: 80px 0; background: var(--bs-white) }
.bs-process .bs-container {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start;
}
.bs-process__head .bs-eyebrow {
  display: inline-flex; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--bs-blue); margin-bottom: 12px;
}
.bs-process__head h2 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px); color: var(--bs-navy);
  margin: 0; line-height: 1.2;
}
.bs-process__timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.bs-process__timeline::before {
  content: ''; position: absolute; top: 24px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 3px; background: var(--bs-border); border-radius: 2px;
}
.bs-process__step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 8px; position: relative; z-index: 1;
}
.bs-process__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bs-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bs-font-display); font-weight: 800; font-size: 18px;
  margin-bottom: 16px; box-shadow: 0 4px 12px rgba(11,116,209,.25);
}
.bs-process__step:nth-child(2) .bs-process__num { background: var(--bs-teal); box-shadow: 0 4px 12px rgba(15,118,110,.25) }
.bs-process__step:nth-child(3) .bs-process__num { background: var(--bs-amber); box-shadow: 0 4px 12px rgba(201,120,34,.25) }
.bs-process__step:nth-child(4) .bs-process__num { background: var(--bs-navy); box-shadow: 0 4px 12px rgba(7,27,45,.25) }
.bs-process__card {
  background: var(--bs-stone); border-radius: var(--bs-r);
  padding: 20px 14px; width: 100%;
  border: 1px solid transparent; transition: border-color var(--bs-dur), box-shadow var(--bs-dur);
}
.bs-process__card:hover { border-color: var(--bs-border); box-shadow: var(--bs-shadow-sm) }
.bs-process__card h4 { font-family: var(--bs-font-display); font-weight: 700; font-size: 14px; margin: 0 0 6px; color: var(--bs-navy) }
.bs-process__card p { font-size: 12.5px; color: var(--bs-muted); margin: 0; line-height: 1.5 }
@media (max-width: 960px) {
  .bs-process .bs-container { grid-template-columns: 1fr }
  .bs-process__head { text-align: center }
}
@media (max-width: 768px) {
  .bs-process__timeline { grid-template-columns: 1fr; gap: 20px }
  .bs-process__timeline::before { display: none }
  .bs-process__step { flex-direction: row; text-align: left; gap: 16px }
  .bs-process__num { margin-bottom: 0; flex-shrink: 0 }
  .bs-process__card { flex: 1 }
}

/* ══════════════════════════════════════════════════════
   5 · DOCTOR
   ══════════════════════════════════════════════════════ */
.bs-doctor {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bs-stone) 0%, var(--bs-blue-soft) 100%);
}
.bs-doctor__inner {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
  background: var(--bs-white); border-radius: var(--bs-r-xl);
  box-shadow: var(--bs-shadow-lg); overflow: hidden;
}
.bs-doctor__photo {
  height: 100%; min-height: 360px;
  background: linear-gradient(135deg, var(--bs-blue-soft), var(--bs-mint));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bs-doctor__photo img { width: 100%; height: 100%; object-fit: cover }
.bs-doctor__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,116,209,.08), rgba(15,118,110,.08));
}
.bs-doctor__content { padding: 40px 40px 40px 0 }
.bs-doctor__content .bs-eyebrow {
  display: inline-flex; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--bs-blue); margin-bottom: 12px;
}
.bs-doctor__content h2 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: 28px; color: var(--bs-navy); margin: 0 0 4px; line-height: 1.2;
}
.bs-doctor__title { display: block; font-size: 15px; color: var(--bs-teal); font-weight: 600; margin-bottom: 16px }
.bs-doctor__content > p { font-size: 15px; color: var(--bs-muted); margin: 0 0 20px; line-height: 1.65 }
.bs-doctor__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px }
.bs-doctor__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--bs-r-pill);
  background: var(--bs-stone); font-size: 13px; font-weight: 500; color: var(--bs-text);
  border: 1px solid var(--bs-border);
}
.bs-doctor__badge svg { width: 14px; height: 14px; color: var(--bs-blue) }
.bs-doctor__stats { display: flex; gap: 32px }
.bs-doctor__stat { display: flex; flex-direction: column }
.bs-doctor__stat strong { font-family: var(--bs-font-display); font-weight: 800; font-size: 22px; color: var(--bs-navy) }
.bs-doctor__stat span { font-size: 13px; color: var(--bs-muted) }
@media (max-width: 960px) {
  .bs-doctor__inner { grid-template-columns: 1fr }
  .bs-doctor__photo { min-height: 260px }
  .bs-doctor__content { padding: 32px }
}

/* ══════════════════════════════════════════════════════
   6 · CITIES — dark navy bg
   ══════════════════════════════════════════════════════ */
.bs-cities { padding: 80px 0; background: var(--bs-navy); color: #fff }
.bs-cities__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center }
.bs-cities__left .bs-eyebrow {
  display: inline-flex; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--bs-amber); margin-bottom: 12px;
}
.bs-cities__left h2 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 34px); color: #fff; margin: 0 0 24px; line-height: 1.2;
}
.bs-cities__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px }
.bs-cities__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--bs-r-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  font-size: 14px; font-weight: 600; color: #fff; transition: all var(--bs-dur);
}
.bs-cities__chip:hover { background: var(--bs-blue); border-color: var(--bs-blue) }
.bs-cities__chip svg { width: 14px; height: 14px; opacity: .6 }
.bs-cities__more { margin-top: 8px }
.bs-cities__more a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--bs-amber); transition: color var(--bs-dur);
}
.bs-cities__more a:hover { color: var(--bs-amber-2) }
.bs-cities__more a svg { width: 16px; height: 16px }
.bs-cities__right { display: flex; align-items: center; justify-content: center }
.bs-cities__map { width: 100%; max-width: 500px; opacity: .9 }
.bs-cities__map svg { width: 100%; height: auto }
@media (max-width: 960px) {
  .bs-cities__layout { grid-template-columns: 1fr }
  .bs-cities__left { text-align: center }
  .bs-cities__chips { justify-content: center }
  .bs-cities__more { text-align: center }
  .bs-cities__right { display: none }
}
@media (max-width: 480px) { .bs-cities__chip { padding: 8px 14px; font-size: 13px } }

/* ══════════════════════════════════════════════════════
   7 · FAQ — left intro + right accordion
   ══════════════════════════════════════════════════════ */
.bs-faq { padding: 80px 0; background: var(--bs-white) }
.bs-faq .bs-container { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start }
.bs-faq__intro .bs-eyebrow {
  display: inline-flex; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--bs-blue); margin-bottom: 12px;
}
.bs-faq__intro h2 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 34px); color: var(--bs-navy); margin: 0 0 16px; line-height: 1.25;
}
.bs-faq__intro > p { font-size: 16px; color: var(--bs-muted); margin: 0 0 24px; line-height: 1.65 }
.bs-faq__list { display: flex; flex-direction: column; gap: 8px }
.bs-faq__list details {
  border: 1px solid var(--bs-border); border-radius: var(--bs-r);
  overflow: hidden; transition: border-color var(--bs-dur);
}
.bs-faq__list details[open] { border-color: var(--bs-blue) }
.bs-faq__list summary {
  padding: 18px 20px; font-size: 15px; font-weight: 600; color: var(--bs-navy);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background var(--bs-dur);
}
.bs-faq__list summary:hover { background: var(--bs-stone) }
.bs-faq__list summary::-webkit-details-marker { display: none }
.bs-faq__list summary::after {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23667789' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--bs-dur);
}
.bs-faq__list details[open] summary::after { transform: rotate(180deg) }
.bs-faq__list details[open] summary { background: var(--bs-blue-soft); color: var(--bs-blue) }
.bs-faq__body { padding: 0 20px 20px; font-size: 15px; color: var(--bs-muted); line-height: 1.65 }
@media (max-width: 960px) {
  .bs-faq .bs-container { grid-template-columns: 1fr }
  .bs-faq__intro { text-align: center }
}

/* ══════════════════════════════════════════════════════
   8 · BLOG — 4 cards
   ══════════════════════════════════════════════════════ */
.bs-blog { padding: 80px 0; background: var(--bs-stone) }
.bs-blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }
.bs-blog__card {
  background: var(--bs-white); border-radius: var(--bs-r-lg); overflow: hidden;
  border: 1px solid var(--bs-border);
  transition: border-color var(--bs-dur), box-shadow var(--bs-dur), transform var(--bs-dur);
}
.bs-blog__card:hover { border-color: var(--bs-blue); box-shadow: var(--bs-shadow); transform: translateY(-4px) }
.bs-blog__card-img {
  height: 180px; background: var(--bs-blue-soft);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bs-blog__card-img img { width: 100%; height: 100%; object-fit: cover }
.bs-blog__card-img svg { width: 48px; height: 48px; color: var(--bs-blue); opacity: .3 }
.bs-blog__card-body { padding: 20px }
.bs-blog__card-date { font-size: 12px; color: var(--bs-muted); margin-bottom: 8px }
.bs-blog__card-body h3 {
  font-family: var(--bs-font-display); font-weight: 700;
  font-size: 16px; color: var(--bs-navy); margin: 0 0 8px; line-height: 1.35;
}
.bs-blog__card-body p { font-size: 14px; color: var(--bs-muted); margin: 0 0 14px; line-height: 1.55 }
.bs-blog__card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--bs-blue);
}
.bs-blog__card-link svg { width: 14px; height: 14px }
@media (max-width: 960px) { .bs-blog__grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 480px) { .bs-blog__grid { grid-template-columns: 1fr } }

/* ══════════════════════════════════════════════════════
   9 · TESTIMONIALS — 3 cards
   ══════════════════════════════════════════════════════ */
.bs-testimonials { padding: 80px 0; background: var(--bs-white) }
.bs-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
.bs-testimonials__card {
  background: var(--bs-stone); border-radius: var(--bs-r-lg); padding: 32px 24px;
  border: 1px solid var(--bs-border);
  transition: border-color var(--bs-dur), box-shadow var(--bs-dur);
}
.bs-testimonials__card:hover { border-color: var(--bs-blue); box-shadow: var(--bs-shadow) }
.bs-testimonials__stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px }
.bs-testimonials__card > p {
  font-size: 14px; color: var(--bs-text); line-height: 1.65;
  margin: 0 0 20px; font-style: italic;
}
.bs-testimonials__author { display: flex; align-items: center; gap: 12px }
.bs-testimonials__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bs-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bs-font-display); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.bs-testimonials__author strong { display: block; font-size: 14px; font-weight: 600; color: var(--bs-navy) }
.bs-testimonials__author span { display: block; font-size: 12px; color: var(--bs-muted) }
@media (max-width: 960px) { .bs-testimonials__grid { grid-template-columns: 1fr } }

/* ══════════════════════════════════════════════════════
   10 · CTA BANNER
   ══════════════════════════════════════════════════════ */
.bs-cta-banner {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--bs-blue) 0%, #0963b3 50%, var(--bs-navy-2) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.bs-cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.bs-cta-banner .bs-container { text-align: center; position: relative; z-index: 1 }
.bs-cta-banner__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.bs-cta-banner__icon svg { width: 48px; height: 48px; color: rgba(255,255,255,.8) }
.bs-cta-banner h2 {
  font-family: var(--bs-font-display); font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 14px; line-height: 1.2;
}
.bs-cta-banner p { font-size: 17px; opacity: .85; max-width: 560px; margin: 0 auto 32px; line-height: 1.6 }
.bs-cta-banner__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap }
.bs-cta-banner .bs-btn--primary { background: var(--bs-amber); color: #fff }
.bs-cta-banner .bs-btn--primary:hover { background: var(--bs-amber-2); box-shadow: 0 4px 14px rgba(201,120,34,.4) }
.bs-cta-banner .bs-btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.35) }
.bs-cta-banner .bs-btn--secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5) }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.bs-footer { background: var(--bs-navy); color: rgba(255,255,255,.8); padding: 64px 0 0 }
.bs-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 28px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.bs-footer__brand p { font-size: 14px; line-height: 1.6; margin: 16px 0 0; opacity: .7 }
.bs-footer__social { display: flex; gap: 12px; margin-top: 16px }
.bs-footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background var(--bs-dur);
}
.bs-footer__social a:hover { background: var(--bs-blue) }
.bs-footer__social svg { width: 16px; height: 16px; color: rgba(255,255,255,.7) }
.bs-footer__col h4 {
  font-family: var(--bs-font-display); font-weight: 700; font-size: 15px;
  color: #fff; margin: 0 0 16px;
}
.bs-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px }
.bs-footer__col li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--bs-dur) }
.bs-footer__col li a:hover { color: #fff }
.bs-footer__contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.6) }
.bs-footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .5 }
.bs-footer__bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.bs-footer__bottom p { font-size: 13px; opacity: .5; margin: 0 }
.bs-footer__bottom .bs-footer__disclaimer { font-size: 11px; opacity: .35; line-height: 1.5; max-width: 600px }
@media (max-width: 960px) {
  .bs-footer__grid { grid-template-columns: repeat(2, 1fr) }
  .bs-footer__brand { grid-column: 1 / -1 }
}
@media (max-width: 480px) { .bs-footer__grid { grid-template-columns: 1fr } }

/* ── FLOATING CTA ─────────────────────────────────── */
.bs-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
}
.bs-float__btn {
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--bs-shadow-lg); transition: transform var(--bs-dur);
}
.bs-float__btn:hover { transform: scale(1.08) }
.bs-float__btn svg { width: 22px; height: 22px; color: #fff }
.bs-float__btn--wa { background: #25d366 }
.bs-float__btn--phone { background: var(--bs-blue) }
@media (max-width: 480px) {
  .bs-float { bottom: 16px; right: 16px }
  .bs-float__btn { width: 46px; height: 46px }
  .bs-float__btn svg { width: 20px; height: 20px }
}

/* ── SCROLL REVEAL ────────────────────────────────── */
.bs-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--bs-ease), transform .6s var(--bs-ease) }
.bs-reveal.is-visible { opacity: 1; transform: translateY(0) }

/* ── SCROLLBAR ────────────────────────────────────── */
.bs-page ::-webkit-scrollbar { width: 6px }
.bs-page ::-webkit-scrollbar-track { background: var(--bs-stone) }
.bs-page ::-webkit-scrollbar-thumb { background: var(--bs-border-2); border-radius: 3px }
.bs-page ::-webkit-scrollbar-thumb:hover { background: var(--bs-muted) }
