/* =============================================================
   Bestclean24 — City patterns (bc-city-*)
   Version: 1.8.0
   ============================================================= */


/* =============================================================
   0. PAGE WRAPPER (single-miasto.php)
   ============================================================= */

/* --- Shared content sizing --- */
:root {
  --bc-city-w: 900px;
  --bc-city-px: 2.5rem;
  --bc-city-px-m: 1.5rem;
}

.bc-city-page {
  width: 100%;
  overflow: hidden;
}

/* Override Astra's container constraints on city pages */
.bc-city-page,
.single-miasto .site-content .ast-container,
.single-miasto .site-content .ast-container .content-area,
.single-miasto .site-content .ast-container .site-main {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  width: 100%;
}

/* Remove default WP content padding/margins */
.bc-city-page > .wp-block-html {
  max-width: none;
  padding: 0;
  margin: 0;
}

/*
 * UNIFIED CONTENT WIDTH
 * Everything except hero, trust, emergency, why-us
 * gets the same max-width + horizontal padding.
 * Full-width blocks handle it via their -inner divs.
 */
.bc-city-page .bc-city-process,
.bc-city-page .bc-city-services,
.bc-city-page .bc-city-pricing,
.bc-city-page .bc-city-reviews,
.bc-city-page .bc-city-districts {
  max-width: var(--bc-city-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bc-city-px);
  padding-right: var(--bc-city-px);
}

/* Phone-box & calc are self-contained cards (border-radius, border).
   Width matches content area of padded blocks: max-width minus 2× padding. */
.bc-city-page .bc-phone-box,
.bc-city-page .bc-calc,
.bc-city-page .bc-faq {
  max-width: calc(var(--bc-city-w) - 2 * var(--bc-city-px));
  margin-left: auto;
  margin-right: auto;
}

/* Gutenberg native blocks (headings, paragraphs) */
.bc-city-page > .wp-block-heading,
.bc-city-page > p,
.bc-city-page > .wp-block-paragraph {
  max-width: var(--bc-city-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bc-city-px);
  padding-right: var(--bc-city-px);
}

.bc-city-page > .wp-block-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bc-black, #111);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.bc-city-page > p,
.bc-city-page > .wp-block-paragraph {
  font-size: 0.88rem;
  color: var(--bc-gray, #555);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* Vertical rhythm — consistent spacing between sections */
.bc-city-page .bc-city-process   { padding-top: 2.5rem; padding-bottom: 2rem; }
.bc-city-page .bc-city-services  { padding-top: 2rem;   padding-bottom: 2.5rem; }
.bc-city-page .bc-city-pricing   { padding-top: 2rem;   padding-bottom: 2.5rem; }
.bc-city-page .bc-city-reviews   { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.bc-city-page .bc-city-districts { padding-top: 2rem;   padding-bottom: 2.5rem; }
.bc-city-page .bc-phone-box      { margin-top: 1rem; margin-bottom: 1rem; }
.bc-city-page .bc-calc            { margin-top: 0; margin-bottom: 1rem; }
.bc-city-page .bc-faq             { margin-top: 1rem; margin-bottom: 1.5rem; }

/* Full-width bg blocks — inner divs also use same width */
.bc-city-hero-inner,
.bc-city-trust-inner,
.bc-city-emergency-inner,
.bc-city-why-inner {
  max-width: var(--bc-city-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bc-city-px);
  padding-right: var(--bc-city-px);
}


/* =============================================================
   1. HERO
   ============================================================= */
.bc-city-hero {
  background: var(--bc-blue);
  position: relative;
  overflow: hidden;
}

.bc-city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bc-city-hero-inner {
  padding-top: 2.75rem;
  padding-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}

.bc-city-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bc-white, #fff);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.bc-city-hero-desc {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.bc-city-hero-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.bc-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
  cursor: default;
}

.bc-city-badge:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-1px);
}

.bc-city-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}


/* =============================================================
   2. TRUST BAR
   ============================================================= */
.bc-city-trust {
  background: var(--bc-gray-bg, #F5F5F7);
  border-bottom: 1px solid var(--bc-border, #E0E0E0);
}

.bc-city-trust-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bc-city-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--bc-gray, #555);
  transition: all 0.25s;
  cursor: default;
}

.bc-city-trust-item:hover {
  color: var(--bc-blue);
  transform: translateY(-1px);
}

.bc-city-trust-item:hover svg {
  stroke: var(--bc-blue-dark, #0028C8);
  transform: scale(1.1);
}

.bc-city-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--bc-blue);
  flex-shrink: 0;
  transition: all 0.25s;
}


/* =============================================================
   3. EMERGENCY CTA
   ============================================================= */
.bc-city-emergency {
  background: var(--bc-blue);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bc-city-emergency-inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.bc-city-emergency-pulse {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.bc-city-emergency-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  animation: bc-city-pulse 2s infinite;
}

@keyframes bc-city-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.bc-city-emergency-pulse svg {
  width: 20px;
  height: 20px;
  stroke: var(--bc-white, #fff);
}

.bc-city-emergency-text {
  flex: 1;
}

.bc-city-emergency-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.15rem;
}

.bc-city-emergency-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bc-white, #fff);
  letter-spacing: 0.02em;
}

.bc-city-emergency-number a,
.bc-city-emergency-number a:visited,
.bc-city-emergency-number a:active {
  color: var(--bc-white, #fff);
  text-decoration: none;
  transition: all 0.25s;
}

.bc-city-emergency-number a:hover {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bc-city-emergency-btn,
.bc-city-emergency-btn:visited,
.bc-city-emergency-btn:active {
  display: inline-block;
  padding: 0.6rem 1.35rem;
  background: var(--bc-white, #fff);
  color: var(--bc-blue) !important;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s;
}

.bc-city-emergency-btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--bc-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


/* =============================================================
   4. PROCESS (Jak działamy)
   ============================================================= */
.bc-city-process-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 1.25rem;
}

.bc-city-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.bc-city-process-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--bc-border, #E0E0E0);
  z-index: 0;
}

.bc-city-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s;
  cursor: default;
}

.bc-city-process-step:hover {
  transform: translateY(-3px);
}

.bc-city-process-step:hover .bc-city-process-num {
  background: var(--bc-blue-dark, #0028C8);
  box-shadow: 0 4px 16px rgba(0, 49, 244, 0.3);
}

.bc-city-process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bc-blue);
  color: var(--bc-white, #fff);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.65rem;
  transition: all 0.25s;
}

.bc-city-process-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bc-black, #111);
  margin-bottom: 0.2rem;
}

.bc-city-process-sub {
  font-size: 0.65rem;
  color: var(--bc-gray-mid, #888);
  line-height: 1.4;
}


/* =============================================================
   5. SERVICES GRID
   ============================================================= */
.bc-city-services-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 1.25rem;
}

.bc-city-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.bc-city-svc-card {
  border: 1px solid var(--bc-border, #E0E0E0);
  border-radius: var(--bc-radius, 12px);
  padding: 1.35rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.bc-city-svc-card:hover {
  border-color: var(--bc-blue);
  box-shadow: 0 8px 24px rgba(0, 49, 244, 0.08);
  transform: translateY(-2px);
}

.bc-city-svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--bc-blue);
  opacity: 0;
  transition: opacity 0.25s;
}

.bc-city-svc-card:hover::before { opacity: 1; }

.bc-city-svc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 49, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-city-svc-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--bc-blue);
}

.bc-city-svc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bc-black, #111);
  transition: color 0.2s;
}

.bc-city-svc-card:hover .bc-city-svc-title { color: var(--bc-blue); }

.bc-city-svc-desc {
  font-size: 0.72rem;
  color: var(--bc-gray, #555);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bc-city-svc-link {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--bc-blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.bc-city-svc-link svg {
  width: 12px;
  height: 12px;
  stroke: var(--bc-blue);
  transition: transform 0.2s;
}

.bc-city-svc-card:hover .bc-city-svc-link svg {
  transform: translateX(3px);
}


/* =============================================================
   6. PRICING TABLE
   ============================================================= */
.bc-city-pricing-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 1rem;
}

.bc-city-pricing-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black, #111);
  margin: 0 0 1.25rem;
}

.bc-city-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--bc-border, #E0E0E0);
  border-radius: var(--bc-radius, 12px);
  overflow: hidden;
}

.bc-city-pricing-table th {
  background: var(--bc-gray-bg, #F5F5F7);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-gray, #555);
  padding: 0.65rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--bc-border, #E0E0E0);
}

.bc-city-pricing-table td {
  font-size: 0.78rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--bc-border, #E0E0E0);
  color: var(--bc-black, #111);
}

.bc-city-pricing-table tr:last-child td { border-bottom: none; }

.bc-city-pricing-table tbody tr {
  transition: background 0.2s;
}

.bc-city-pricing-table tbody tr:hover {
  background: rgba(0, 49, 244, 0.06);
}

.bc-city-pricing-table .price {
  font-weight: 800;
  color: var(--bc-blue);
  white-space: nowrap;
}

.bc-city-pricing-table .svc-name { font-weight: 700; }

.bc-city-pricing-note {
  font-size: 0.62rem;
  color: var(--bc-gray-mid, #888);
  margin-top: 0.65rem;
  line-height: 1.5;
}


/* =============================================================
   7. WHY US
   ============================================================= */
.bc-city-why {
  background: var(--bc-gray-bg, #F5F5F7);
  border-top: 1px solid var(--bc-border, #E0E0E0);
  border-bottom: 1px solid var(--bc-border, #E0E0E0);
}

.bc-city-why-inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.bc-city-why-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black, #111);
  margin: 0 0 1.25rem;
}

.bc-city-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.bc-city-why-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  transition: transform 0.25s;
  cursor: default;
}

.bc-city-why-item:hover {
  transform: translateX(4px);
}

.bc-city-why-item:hover .bc-city-why-check {
  box-shadow: 0 3px 12px rgba(0, 49, 244, 0.3);
}

.bc-city-why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: box-shadow 0.25s;
}

.bc-city-why-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--bc-white, #fff);
}

.bc-city-why-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--bc-black, #111);
  line-height: 1.45;
}

.bc-city-why-sub {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--bc-gray-mid, #888);
  margin-top: 0.15rem;
}


/* =============================================================
   8. REVIEWS
   ============================================================= */
.bc-city-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bc-city-reviews-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black, #111);
  margin: 0;
}

.bc-city-reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bc-city-reviews-stars {
  display: flex;
  gap: 2px;
}

.bc-city-reviews-stars svg {
  width: 16px;
  height: 16px;
}

.bc-city-reviews-score {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--bc-black, #111);
}

.bc-city-reviews-count {
  font-size: 0.65rem;
  color: var(--bc-gray-mid, #888);
  font-weight: 500;
}

.bc-city-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.bc-city-review-card {
  border: 1px solid var(--bc-border, #E0E0E0);
  border-radius: var(--bc-radius, 12px);
  padding: 1.25rem 1.5rem;
  transition: all 0.25s;
}

.bc-city-review-card:hover {
  border-color: var(--bc-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 49, 244, 0.08);
}

.bc-city-review-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.bc-city-review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 49, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--bc-blue);
  flex-shrink: 0;
}

.bc-city-review-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bc-black, #111);
}

.bc-city-review-date {
  font-size: 0.58rem;
  color: var(--bc-gray-mid, #888);
}

.bc-city-review-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.5rem;
}

.bc-city-review-stars svg {
  width: 12px;
  height: 12px;
}

.bc-city-review-text {
  font-size: 0.72rem;
  color: var(--bc-gray, #555);
  line-height: 1.6;
}

.bc-city-review-service {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--bc-blue);
  background: rgba(0, 49, 244, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}


/* =============================================================
   9. DISTRICTS
   ============================================================= */
.bc-city-districts-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black, #111);
  margin: 0 0 0.4rem;
}

.bc-city-districts-sub {
  font-size: 0.76rem;
  color: var(--bc-gray, #555);
  margin: 0 0 1.25rem;
}

.bc-city-districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bc-city-district-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--bc-border, #E0E0E0);
  border-radius: 20px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--bc-gray, #555);
  transition: all 0.2s;
}

.bc-city-district-tag:hover {
  border-color: var(--bc-blue);
  color: var(--bc-blue);
  background: rgba(0, 49, 244, 0.08);
}

.bc-city-district-tag svg {
  width: 11px;
  height: 11px;
}


/* =============================================================
   10. SITUATIONS — kiedy potrzebna usluga
   ============================================================= */
.bc-city-situations {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2rem var(--bc-city-px) 2.5rem;
}
.bc-city-situations-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 0.5rem;
}
.bc-city-situations-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 0.5rem;
}
.bc-city-situations-sub {
  font-size: 0.82rem;
  color: var(--bc-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.bc-city-situations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.bc-city-sit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--bc-gray-bg);
  transition: all 0.25s;
  cursor: default;
}
.bc-city-sit-card:hover {
  background: rgba(0, 49, 244, 0.06);
  transform: translateX(3px);
}
.bc-city-sit-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 49, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.bc-city-sit-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--bc-blue);
  transition: stroke 0.25s;
}
.bc-city-sit-card:hover .bc-city-sit-icon {
  background: var(--bc-blue);
}
.bc-city-sit-card:hover .bc-city-sit-icon svg {
  stroke: #fff;
}
.bc-city-sit-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--bc-black);
  line-height: 1.4;
}
.bc-city-sit-desc {
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--bc-gray-mid);
  margin-top: 0.1rem;
}


/* =============================================================
   11. SPLIT — zdjecie + tekst + statystyki
   ============================================================= */
.bc-city-split {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2rem var(--bc-city-px) 2.5rem;
}
.bc-city-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.bc-city-split-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-gray-bg);
}
.bc-city-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bc-city-split-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.bc-city-split-text {
  font-size: 0.82rem;
  color: var(--bc-gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.bc-city-split-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bc-border);
}
.bc-city-split-stat {
  text-align: center;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s;
  cursor: default;
}
.bc-city-split-stat:hover {
  background: rgba(0, 49, 244, 0.06);
  transform: translateY(-2px);
}
.bc-city-split-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bc-blue);
  line-height: 1;
  transition: transform 0.25s;
}
.bc-city-split-stat:hover .bc-city-split-stat-num {
  transform: scale(1.08);
}
.bc-city-split-stat-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--bc-gray-mid);
  margin-top: 0.2rem;
  transition: color 0.25s;
}
.bc-city-split-stat:hover .bc-city-split-stat-label {
  color: var(--bc-blue);
}


/* =============================================================
   12. SCOPE — co obejmuje usluga (checklist)
   ============================================================= */
.bc-city-scope {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2rem var(--bc-city-px) 2.5rem;
}
.bc-city-scope-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 0.5rem;
}
.bc-city-scope-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 1.25rem;
}
.bc-city-scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bc-city-scope-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--bc-border);
  transition: all 0.25s;
  cursor: default;
}
.bc-city-scope-item:hover {
  border-color: var(--bc-blue);
  background: rgba(0, 49, 244, 0.03);
  transform: translateX(3px);
}
.bc-city-scope-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: box-shadow 0.25s;
}
.bc-city-scope-item:hover .bc-city-scope-check {
  box-shadow: 0 3px 10px rgba(0, 49, 244, 0.3);
}
.bc-city-scope-check svg {
  width: 11px;
  height: 11px;
}
.bc-city-scope-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--bc-black);
  line-height: 1.4;
}
.bc-city-scope-sub {
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--bc-gray-mid);
  margin-top: 0.1rem;
}


/* =============================================================
   13. TIMELINE — etapy realizacji
   ============================================================= */
.bc-city-timeline {
  background: var(--bc-gray-bg);
  border-top: 1px solid var(--bc-border);
  border-bottom: 1px solid var(--bc-border);
}
.bc-city-timeline-inner {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2.5rem var(--bc-city-px);
}
.bc-city-timeline-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 0.5rem;
}
.bc-city-timeline-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 0.4rem;
}
.bc-city-timeline-sub {
  font-size: 0.82rem;
  color: var(--bc-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.bc-city-timeline-list {
  position: relative;
  padding-left: 2rem;
}
.bc-city-timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--bc-border);
}
.bc-city-timeline-step {
  position: relative;
  padding-bottom: 1.5rem;
}
.bc-city-timeline-step:last-child {
  padding-bottom: 0;
}
.bc-city-timeline-dot {
  position: absolute;
  left: -2rem;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bc-blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--bc-blue);
  z-index: 1;
  transition: all 0.25s;
}
.bc-city-timeline-step:hover .bc-city-timeline-dot {
  box-shadow: 0 0 0 2px var(--bc-blue), 0 0 12px rgba(0, 49, 244, 0.3);
  transform: scale(1.15);
}
.bc-city-timeline-step-time {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--bc-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}
.bc-city-timeline-step-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.bc-city-timeline-step:hover .bc-city-timeline-step-title {
  color: var(--bc-blue);
}
.bc-city-timeline-step-desc {
  font-size: 0.74rem;
  color: var(--bc-gray);
  line-height: 1.6;
}


/* =============================================================
   14. SERVICE PRICING — cennik uslugi (tabela)
   ============================================================= */
.bc-city-service-pricing {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2rem var(--bc-city-px) 2.5rem;
}
.bc-city-service-pricing-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 0.5rem;
}
.bc-city-service-pricing-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 0.4rem;
}
.bc-city-service-pricing-sub {
  font-size: 0.82rem;
  color: var(--bc-gray);
  margin-bottom: 1.25rem;
}
.bc-city-service-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
}
.bc-city-service-pricing-table th {
  background: var(--bc-gray-bg);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-gray-mid);
  padding: 0.75rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--bc-border);
}
.bc-city-service-pricing-table td {
  font-size: 0.78rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--bc-border);
  color: var(--bc-gray);
}
.bc-city-service-pricing-table tr:last-child td {
  border-bottom: none;
}
.bc-city-service-pricing-table tbody tr {
  transition: background 0.2s;
}
.bc-city-service-pricing-table tbody tr:hover {
  background: rgba(0, 49, 244, 0.06);
}
.bc-city-service-pricing-table td:first-child {
  font-weight: 700;
  color: var(--bc-black);
}
.bc-city-service-pricing-table td:last-child {
  font-weight: 700;
  color: var(--bc-blue);
}
.bc-city-service-pricing-note {
  font-size: 0.64rem;
  color: var(--bc-gray-mid);
  margin-top: 0.75rem;
  padding: 0.5rem 0;
  border-top: 1px dashed var(--bc-border);
}


/* =============================================================
   15. SAFETY — standardy bezpieczenstwa
   ============================================================= */
.bc-city-safety {
  background: var(--bc-gray-bg);
  border-top: 1px solid var(--bc-border);
  border-bottom: 1px solid var(--bc-border);
}
.bc-city-safety-inner {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2.5rem var(--bc-city-px);
}
.bc-city-safety-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 0.4rem;
}
.bc-city-safety-sub {
  font-size: 0.82rem;
  color: var(--bc-gray);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.bc-city-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bc-city-safety-card {
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: all 0.25s;
  cursor: default;
}
.bc-city-safety-card:hover {
  border-color: var(--bc-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 49, 244, 0.06);
}
.bc-city-safety-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 49, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  transition: background 0.25s;
}
.bc-city-safety-card:hover .bc-city-safety-icon {
  background: var(--bc-blue);
}
.bc-city-safety-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--bc-blue);
  transition: stroke 0.25s;
}
.bc-city-safety-card:hover .bc-city-safety-icon svg {
  stroke: #fff;
}
.bc-city-safety-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bc-black);
  margin-bottom: 0.25rem;
}
.bc-city-safety-desc {
  font-size: 0.68rem;
  color: var(--bc-gray);
  line-height: 1.55;
}


/* =============================================================
   16. OTHER SERVICES — inne uslugi w miescie
   ============================================================= */
.bc-city-other {
  max-width: var(--bc-city-w);
  margin: 0 auto;
  padding: 2rem var(--bc-city-px) 2.5rem;
}
.bc-city-other-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-blue);
  margin-bottom: 0.5rem;
}
.bc-city-other-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bc-black);
  margin-bottom: 1.25rem;
}
.bc-city-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.bc-city-other-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bc-border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.bc-city-other-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--bc-blue);
  opacity: 0;
  transition: opacity 0.25s;
}
.bc-city-other-card:hover {
  border-color: var(--bc-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 49, 244, 0.08);
}
.bc-city-other-card:hover::before {
  opacity: 1;
}
.bc-city-other-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 49, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bc-city-other-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--bc-blue);
}
.bc-city-other-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--bc-black);
  flex: 1;
  transition: color 0.2s;
}
.bc-city-other-card:hover .bc-city-other-title {
  color: var(--bc-blue);
}
.bc-city-other-arrow {
  width: 16px;
  height: 16px;
  stroke: var(--bc-gray-mid);
  transition: all 0.25s;
  flex-shrink: 0;
}
.bc-city-other-card:hover .bc-city-other-arrow {
  stroke: var(--bc-blue);
  transform: translateX(3px);
}


/* =============================================================
   MOBILE
   ============================================================= */
@media (max-width: 700px) {

  :root {
    --bc-city-px: var(--bc-city-px-m, 1.5rem);
  }

  .bc-city-page > .wp-block-heading,
  .bc-city-page > p,
  .bc-city-page > .wp-block-paragraph { padding-left: 1.5rem; padding-right: 1.5rem; }

  .bc-city-page .bc-city-process,
  .bc-city-page .bc-city-services,
  .bc-city-page .bc-city-pricing,
  .bc-city-page .bc-city-reviews,
  .bc-city-page .bc-city-districts {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bc-city-hero-inner,
  .bc-city-trust-inner,
  .bc-city-emergency-inner,
  .bc-city-why-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bc-city-hero-inner        { padding-top: 2rem; padding-bottom: 1.75rem; }
  .bc-city-hero-title         { font-size: 1.6rem; }

  /* Cards need side margin on mobile to not touch edges */
  .bc-city-page .bc-phone-box,
  .bc-city-page .bc-calc,
  .bc-city-page .bc-faq {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .bc-city-trust-inner        { gap: 1rem; }

  .bc-city-emergency-inner    { flex-wrap: wrap; }
  .bc-city-emergency-number   { font-size: 1.1rem; }
  .bc-city-emergency-btn      { width: 100%; text-align: center; }

  .bc-city-process-grid       { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .bc-city-process-grid::before { display: none; }

  .bc-city-services-grid      { grid-template-columns: 1fr; }

  .bc-city-pricing-table th,
  .bc-city-pricing-table td   { padding: 0.6rem 0.75rem; font-size: 0.72rem; }

  .bc-city-reviews-grid       { grid-template-columns: 1fr; }

  /* New blocks — mobile */
  .bc-city-situations-grid    { grid-template-columns: 1fr; }

  .bc-city-split-grid         { grid-template-columns: 1fr; gap: 1.25rem; }
  .bc-city-split-stats        { gap: 1rem; flex-wrap: wrap; }
  .bc-city-split-stat-num     { font-size: 1.15rem; }

  .bc-city-scope-grid         { grid-template-columns: 1fr; }

  .bc-city-service-pricing-table th,
  .bc-city-service-pricing-table td { padding: 0.6rem 0.75rem; font-size: 0.72rem; }

  .bc-city-safety-grid        { grid-template-columns: 1fr; }

  .bc-city-other-grid         { grid-template-columns: 1fr; }

}
