/* ===================== OFEROWANE ZABIEGI — centered, single row ===================== */
.bc-services-section { background: var(--bc-white) !important; padding: clamp(30px, 4vw, 60px) 0 !important; }
.bc-services-container { max-width: 1100px; margin: 0 auto; text-align: center; padding: 0 20px; }
.bc-categories-grid {
  display: flex; justify-content: center; gap: clamp(20px, 3vw, 50px);
  flex-wrap: nowrap; margin-top: 16px;
}
.bc-category { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; transition: transform 0.3s; flex-shrink: 0; }
.bc-category:hover { transform: translateY(-3px); }
.bc-category-icon { width: clamp(60px, 6.5vw, 95px); height: clamp(60px, 6.5vw, 95px); object-fit: contain; }
.bc-category span {
  font-family: var(--font-b); font-size: clamp(11px, 0.95vw, 14px); color: var(--bc-brown-accent);
  text-transform: capitalize; letter-spacing: 0.05em;
}

/* ===================== SERVICES SECTION ===================== */
.bc-services-section {
  background: var(--bc-white) !important;
  padding: clamp(40px, 6vw, 90px) 0 clamp(40px, 6vw, 90px) !important;
}
.bc-services-inner {
  max-width: 1200px !important;
  width: 90% !important;
  margin: 0 auto;
  text-align: center;
}
.bc-section-title {
  font-family: var(--font-h) !important;
  font-size: clamp(24px, 2.8vw, 40px) !important;
  font-weight: 400 !important;
  color: var(--bc-dark) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 8px !important;
}
.bc-section-subtitle {
  font-family: var(--font-b) !important;
  font-size: clamp(14px, 1.2vw, 18px) !important;
  font-weight: 300 !important;
  color: var(--bc-text-light) !important;
  margin-bottom: clamp(30px, 4vw, 60px) !important;
}
.bc-services-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: clamp(20px, 3vw, 50px) !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.bc-service-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px;
  width: clamp(120px, 18vw, 200px);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.3s ease !important;
}
.bc-service-card:hover {
  transform: translateY(-4px);
}
.bc-service-icon {
  width: clamp(100px, 14vw, 160px) !important;
  height: clamp(100px, 14vw, 160px) !important;
  border-radius: 10px;
  background: transparent;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s !important;
  overflow: hidden;
}
.bc-service-card:hover .bc-service-icon {
  background: #FFFFFF;
  box-shadow: 0px 2px 6px rgba(57, 48, 41, 0.25);
  transform: scale(1.02);
}
.bc-service-icon img {
  width: 65% !important;
  height: 65% !important;
  object-fit: contain !important;
}
.bc-service-label {
  font-family: var(--font-b) !important;
  font-size: clamp(14px, 1.2vw, 20px) !important;
  font-weight: 400 !important;
  color: var(--bc-brown-dark) !important;
  text-align: center !important;
  letter-spacing: 0.05em !important;
  line-height: 1.3 !important;
}
.bc-section-sep {
  padding: 0 !important;
}
@media (max-width: 767px) {
  .bc-services-row { gap: 20px !important; }
  .bc-service-card { width: calc(50% - 15px); }
  .bc-service-icon { width: 100px !important; height: 100px !important; }
}
@media (max-width: 478px) {
  .bc-service-card { width: calc(50% - 12px); }
  .bc-service-icon { width: 80px !important; height: 80px !important; border-radius: 12px; }
}

@media (max-width: 991px) {
  .bc-categories-grid { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 767px) {
  .bc-categories-grid { flex-direction: column; align-items: center; }
  .bc-category { width: 60%; flex-direction: row; gap: 12px; }
  .bc-category-icon { width: 50px; height: 50px; }
}

/* === FIX: Center sections globally === */
.bc-services-section .brxe-container,
.bc-services-container {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
/* Fix: section headings and subtitles force center */
.bc-services-section .bc-section-heading,
.bc-services-section .bc-section-subtitle {
  width: 100%; text-align: center !important;
}
