/* ============================================
   BOMBAY COMPUTERS - MACBOOK REPAIR PAGE CSS
   All selectors prefixed with #bc-page for
   maximum specificity override on WordPress themes
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bc-primary: #008000;
  --bc-primary-dark: #006400;
  --bc-text-dark: #000000;
  --bc-text-medium: #333333;
  --bc-text-light: #666666;
  --bc-bg-white: #ffffff;
  --bc-bg-light: #f8f9fa;
  --bc-bg-lighter: #fafbfc;
  --bc-border: #e0e0e0;
  --bc-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --bc-shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --bc-shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --bc-font: -apple-system, BlinkMacSystemFont, \'SF Pro Display\', \'Segoe UI\', \'Helvetica Neue\', Arial, sans-serif;
  --bc-radius-sm: 6px;
  --bc-radius-md: 12px;
  --bc-radius-lg: 16px;
  --bc-transition: 0.3s ease;
}

/* ============================================
   BASE RESET inside #bc-page
   ============================================ */
#bc-page {
  font-family: var(--bc-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bc-text-medium);
}

#bc-page *,
#bc-page *::before,
#bc-page *::after {
  box-sizing: border-box;
}

/* Force all p, span, li, a, strong inside #bc-page to inherit base size */
#bc-page p,
#bc-page span,
#bc-page li,
#bc-page a,
#bc-page strong,
#bc-page ul,
#bc-page nav,
#bc-page div,
#bc-page section,
#bc-page h1,
#bc-page h2,
#bc-page h3,
#bc-page h4 {
  font-family: var(--bc-font);
}

#bc-page p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--bc-text-medium);
  margin: 0.75rem 0;
}

#bc-page ul {
  margin: 0;
  padding: 0;
}

#bc-page li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--bc-text-medium);
  margin: 0;
}

#bc-page a {
  color: var(--bc-primary);
  text-decoration: none;
}

#bc-page strong {
  font-size: inherit;
  color: var(--bc-text-dark);
}

/* ============================================
   CONTAINER
   ============================================ */
#bc-page .bc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   HEADINGS
   ============================================ */
#bc-page .bc-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bc-text-dark);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

#bc-page .bc-h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--bc-text-dark);
  margin: 0 0 0.75rem 0;
}

#bc-page .bc-h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--bc-text-dark);
  margin: 0 0 0.5rem 0;
}

#bc-page .bc-h4 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bc-text-dark);
  margin: 0 0 0.5rem 0;
}

#bc-page .bc-subtitle {
  font-size: 1.2rem;
  color: var(--bc-text-light);
  margin: 0 0 2rem 0;
  max-width: 600px;
  line-height: 1.6;
}

#bc-page .bc-text-center {
  text-align: center;
}

#bc-page .bc-text-center .bc-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BREADCRUMB
   ============================================ */
#bc-page .bc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.05rem;
  color: var(--bc-text-light);
  gap: 0;
}

#bc-page .bc-breadcrumb a {
  color: var(--bc-text-light);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

#bc-page .bc-breadcrumb a:hover {
  color: var(--bc-primary);
}

#bc-page .bc-sep {
  margin: 0 0.5rem;
  font-size: 1.05rem;
  opacity: 0.5;
  color: var(--bc-text-light);
}

#bc-page .bc-current {
  color: var(--bc-text-dark);
  font-size: 1.05rem;
}

/* ============================================
   HERO
   ============================================ */
#bc-page .bc-hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bc-bg-lighter) 0%, var(--bc-bg-white) 100%);
}

#bc-page .bc-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

#bc-page .bc-hero-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--bc-text-medium);
  margin: 1rem 0 1.5rem 0;
}

#bc-page .bc-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

#bc-page .bc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--bc-text-medium);
}

#bc-page .bc-trust-item span {
  font-size: 1.1rem;
  color: var(--bc-text-medium);
}

#bc-page .bc-trust-item svg {
  flex-shrink: 0;
}

#bc-page .bc-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

#bc-page .bc-hero-image {
  position: relative;
}

#bc-page .bc-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow-md);
}

#bc-page .bc-badge-online {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bc-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--bc-shadow-sm);
}

#bc-page .bc-pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: bc-pulse 2s infinite;
}

@keyframes bc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* ============================================
   BUTTONS
   ============================================ */
#bc-page .bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--bc-font);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--bc-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--bc-transition);
  white-space: nowrap;
  line-height: 1.4;
}

#bc-page .bc-btn-primary {
  background: var(--bc-primary);
  color: #fff;
}

#bc-page .bc-btn-primary:hover {
  background: var(--bc-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--bc-shadow-md);
  color: #fff;
}

#bc-page .bc-btn-secondary {
  background: var(--bc-text-dark);
  color: #fff;
}

#bc-page .bc-btn-secondary:hover {
  background: var(--bc-text-medium);
  transform: translateY(-2px);
  box-shadow: var(--bc-shadow-md);
  color: #fff;
}

#bc-page .bc-btn-outline {
  background: transparent;
  color: var(--bc-primary);
  border: 2px solid var(--bc-primary);
}

#bc-page .bc-btn-outline:hover {
  background: var(--bc-primary);
  color: #fff;
  transform: translateY(-2px);
}

#bc-page .bc-btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
}

#bc-page .bc-btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   TRUST BAR
   ============================================ */
#bc-page .bc-trust-bar {
  background: var(--bc-bg-white);
  padding: 2rem 0;
  border-top: 1px solid var(--bc-border);
  border-bottom: 1px solid var(--bc-border);
  overflow: hidden;
}

#bc-page .bc-trust-scroll {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#bc-page .bc-trust-scroll::-webkit-scrollbar {
  display: none;
}

#bc-page .bc-trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

#bc-page .bc-trust-badge svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

#bc-page .bc-trust-badge strong {
  display: block;
  font-size: 1.2rem;
  color: var(--bc-text-dark);
  margin-bottom: 0.25rem;
}

#bc-page .bc-trust-badge span {
  display: block;
  font-size: 1.05rem;
  color: var(--bc-text-light);
}

/* ============================================
   PRICING
   ============================================ */
#bc-page .bc-pricing {
  padding: 4rem 0;
  background: var(--bc-bg-white);
}

#bc-page .bc-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

#bc-page .bc-price-card {
  background: var(--bc-bg-white);
  border: 2px solid var(--bc-border);
  border-radius: var(--bc-radius-md);
  padding: 2rem;
  text-align: center;
  transition: all var(--bc-transition);
  position: relative;
}

#bc-page .bc-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-lg);
  border-color: var(--bc-primary);
}

#bc-page .bc-featured {
  border-color: var(--bc-primary);
  box-shadow: var(--bc-shadow-md);
}

#bc-page .bc-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bc-primary);
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#bc-page .bc-price-icon {
  margin-bottom: 1rem;
}

#bc-page .bc-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--bc-primary);
  margin: 1rem 0 0.5rem 0;
}

#bc-page .bc-price-note {
  font-size: 1.05rem;
  color: var(--bc-text-light);
  margin-bottom: 1.5rem;
}

#bc-page .bc-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

#bc-page .bc-feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  color: var(--bc-text-medium);
  line-height: 1.5;
}

#bc-page .bc-feature-list li:before {
  content: \"âœ“\";
  position: absolute;
  left: 0;
  color: var(--bc-primary);
  font-weight: 700;
}

/* ============================================
   MODEL SELECTOR
   ============================================ */
#bc-page .bc-model-selector {
  padding: 4rem 0;
  background: var(--bc-bg-light);
}

#bc-page .bc-model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

#bc-page .bc-model-card {
  background: var(--bc-bg-white);
  border: 2px solid var(--bc-border);
  border-radius: var(--bc-radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--bc-transition);
}

#bc-page .bc-model-card:hover {
  border-color: var(--bc-primary);
  box-shadow: var(--bc-shadow-md);
}

#bc-page .bc-model-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bc-text-dark);
}

#bc-page .bc-model-year {
  font-size: 1.05rem;
  color: var(--bc-text-light);
}

/* ============================================
   SERVICES
   ============================================ */
#bc-page .bc-services {
  padding: 4rem 0;
  background: var(--bc-bg-white);
}

#bc-page .bc-service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

#bc-page .bc-service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bc-bg-lighter);
  border-radius: var(--bc-radius-md);
  border: 1px solid var(--bc-border);
}

#bc-page .bc-service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--bc-radius-sm);
  box-shadow: var(--bc-shadow-sm);
}

#bc-page .bc-service-content p {
  font-size: 1.1rem;
  margin: 0.75rem 0;
  line-height: 1.7;
  color: var(--bc-text-medium);
}

#bc-page .bc-service-content strong {
  color: var(--bc-text-dark);
  font-size: 1.1rem;
}

#bc-page .bc-service-note {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: #e6f7e6;
  border-left: 3px solid var(--bc-primary);
  border-radius: var(--bc-radius-sm);
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--bc-text-medium);
}

#bc-page .bc-service-note span {
  font-size: 1.1rem;
  color: var(--bc-text-medium);
}

#bc-page .bc-service-note svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

#bc-page .bc-charger-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

#bc-page .bc-charger-list li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--bc-border);
  font-size: 1.1rem;
  color: var(--bc-text-medium);
  line-height: 1.6;
}

#bc-page .bc-charger-list li:last-child {
  border-bottom: none;
}

#bc-page .bc-charger-list li strong {
  color: var(--bc-text-dark);
  font-size: 1.1rem;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
#bc-page .bc-comparison {
  padding: 4rem 0;
  background: var(--bc-bg-light);
}

#bc-page .bc-comparison-table {
  margin-top: 3rem;
  background: var(--bc-bg-white);
  border-radius: var(--bc-radius-md);
  overflow: hidden;
  box-shadow: var(--bc-shadow-sm);
}

#bc-page .bc-comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--bc-text-dark);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

#bc-page .bc-comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--bc-border);
}

#bc-page .bc-comparison-row:last-child {
  border-bottom: none;
}

#bc-page .bc-comparison-row:hover {
  background: var(--bc-bg-lighter);
}

#bc-page .bc-comp-cell {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
}

#bc-page .bc-comp-feature {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: var(--bc-text-dark);
}

#bc-page .bc-comp-us {
  background: #e6f7e6;
  font-weight: 600;
  color: var(--bc-primary);
}

#bc-page .bc-comp-us strong {
  color: var(--bc-primary);
  font-size: 1.1rem;
}

#bc-page .bc-check {
  margin-left: 0.5rem;
  color: var(--bc-primary);
  font-size: 1.1rem;
}

/* ============================================
   PROBLEM CARDS
   ============================================ */
#bc-page .bc-problems {
  padding: 4rem 0;
  background: var(--bc-bg-white);
}

#bc-page .bc-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

#bc-page .bc-problem-card {
  background: var(--bc-bg-lighter);
  border: 2px solid var(--bc-border);
  border-radius: var(--bc-radius-md);
  padding: 1.5rem;
  transition: all var(--bc-transition);
}

#bc-page .bc-problem-card:hover {
  border-color: var(--bc-primary);
  box-shadow: var(--bc-shadow-md);
}

#bc-page .bc-problem-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

#bc-page .bc-problem-card p {
  color: var(--bc-text-light);
  font-size: 1.1rem;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.6;
}

#bc-page .bc-problem-arrow {
  font-size: 1.5rem;
  color: var(--bc-primary);
  text-align: center;
  margin: 1rem 0;
}

#bc-page .bc-solution {
  background: var(--bc-primary);
  color: #fff;
  padding: 0.75rem;
  border-radius: var(--bc-radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

#bc-page .bc-solution a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
}

/* ============================================
   AREAS
   ============================================ */
#bc-page .bc-areas {
  padding: 4rem 0;
  background: var(--bc-bg-light);
}

#bc-page .bc-radius-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0 3rem 0;
}

#bc-page .bc-radius-item {
  text-align: center;
}

#bc-page .bc-radius-item p {
  font-size: 1.1rem;
  color: var(--bc-text-medium);
  margin: 0.25rem 0 0 0;
  line-height: 1.5;
}

#bc-page .bc-radius-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

#bc-page .bc-radius-green {
  background: #e6f7e6;
  color: var(--bc-primary);
}

#bc-page .bc-radius-blue {
  background: #e3f2fd;
  color: #1976d2;
}

#bc-page .bc-radius-orange {
  background: #fff3e0;
  color: #f57c00;
}

#bc-page .bc-featured-areas {
  margin: 3rem 0;
}

#bc-page .bc-area-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

#bc-page .bc-area-card {
  background: var(--bc-bg-white);
  border: 2px solid var(--bc-border);
  border-radius: var(--bc-radius-md);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--bc-transition);
  display: block;
}

#bc-page .bc-area-card:hover {
  border-color: var(--bc-primary);
  box-shadow: var(--bc-shadow-md);
  transform: translateY(-2px);
}

#bc-page .bc-area-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

#bc-page .bc-area-card .bc-h4 {
  font-size: 1.2rem;
  color: var(--bc-text-dark);
}

#bc-page .bc-area-card p {
  color: var(--bc-text-light);
  font-size: 1.05rem;
  margin: 0.5rem 0;
}

#bc-page .bc-area-link {
  color: var(--bc-primary) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  display: inline-block !important;
  margin-top: 0.5rem !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#bc-page .bc-all-areas {
  margin-top: 3rem;
}

#bc-page .bc-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

#bc-page .bc-area-tag {
  background: var(--bc-bg-white);
  border: 1px solid var(--bc-border);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.05rem;
  color: var(--bc-text-medium);
  transition: all 0.15s ease;
}

#bc-page .bc-area-tag:hover {
  border-color: var(--bc-primary);
  color: var(--bc-primary);
}

#bc-page .bc-area-tag-more {
  background: var(--bc-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ============================================
   MAP SECTION
   ============================================ */
#bc-page .bc-map-section {
  padding: 4rem 0;
  background: var(--bc-bg-white);
}

#bc-page .bc-map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

#bc-page .bc-map-info {
  background: var(--bc-bg-lighter);
  padding: 2rem;
  border-radius: var(--bc-radius-md);
}

#bc-page .bc-address {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #fff;
  border-radius: var(--bc-radius-sm);
}

#bc-page .bc-address svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

#bc-page .bc-address p {
  margin: 0.25rem 0;
  line-height: 1.6;
  color: var(--bc-text-medium);
  font-size: 1.05rem;
}

#bc-page .bc-address strong {
  font-size: 1.05rem;
  color: var(--bc-text-dark);
}

#bc-page .bc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#bc-page .bc-contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: var(--bc-radius-sm);
}

#bc-page .bc-contact-item svg {
  flex-shrink: 0;
}

#bc-page .bc-contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--bc-text-dark);
  font-size: 1.05rem;
}

#bc-page .bc-contact-item a {
  color: var(--bc-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

#bc-page .bc-contact-item a:hover {
  text-decoration: underline;
}

#bc-page .bc-contact-item p {
  font-size: 1.05rem;
  color: var(--bc-text-medium);
  margin: 0;
  line-height: 1.5;
}

#bc-page .bc-map-embed {
  height: 400px;
  border-radius: var(--bc-radius-md);
  overflow: hidden;
  box-shadow: var(--bc-shadow-md);
}

#bc-page .bc-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   FAQ
   ============================================ */
#bc-page .bc-faq {
  padding: 4rem 0;
  background: var(--bc-bg-light);
}

#bc-page .bc-faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

#bc-page .bc-faq-item {
  background: var(--bc-bg-white);
  border-radius: var(--bc-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--bc-shadow-sm);
}

#bc-page .bc-faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bc-text-dark);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

#bc-page .bc-faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

#bc-page .bc-faq-answer p {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: var(--bc-text-medium);
  font-size: 1.1rem;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
#bc-page .bc-related {
  padding: 4rem 0;
  background: var(--bc-bg-white);
}

#bc-page .bc-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

#bc-page .bc-related-card {
  background: var(--bc-bg-lighter);
  border: 2px solid var(--bc-border);
  border-radius: var(--bc-radius-md);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--bc-transition);
  display: block;
}

#bc-page .bc-related-card:hover {
  border-color: var(--bc-primary);
  box-shadow: var(--bc-shadow-md);
  transform: translateY(-2px);
}

#bc-page .bc-related-card .bc-h4 {
  font-size: 1.2rem;
  color: var(--bc-text-dark);
}

#bc-page .bc-related-card p {
  color: var(--bc-text-light);
  font-size: 1.05rem;
  margin: 0.75rem 0 1rem 0;
  line-height: 1.6;
}

#bc-page .bc-link-arrow {
  color: var(--bc-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

#bc-page .bc-related-card .bc-link-arrow {
  display: inline-block !important;
  color: var(--bc-primary) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  margin-top: 0.5rem !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================
   CONTACT FORM
   ============================================ */
#bc-page .bc-contact-form {
  padding: 4rem 0;
  background: var(--bc-bg-light);
}

#bc-page .bc-form-container {
  max-width: 600px;
  margin: 2rem auto 0;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
#bc-page .bc-whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--bc-transition);
  z-index: 1000;
}

#bc-page .bc-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
  color: #fff;
}

#bc-page .bc-whatsapp-text {
  font-size: 1.05rem;
  color: #fff;
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
#bc-page .bc-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bc-bg-white);
  border-top: 2px solid var(--bc-border);
  display: none;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

#bc-page .bc-mobile-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

#bc-page .bc-mobile-btn span {
  font-size: 0.85rem;
}

#bc-page .bc-mobile-whatsapp {
  color: #25d366;
  border-right: 1px solid var(--bc-border);
}

#bc-page .bc-mobile-call {
  color: var(--bc-primary);
}

#bc-page .bc-mobile-btn:active {
  background: var(--bc-bg-light);
}

/* ============================================
   RESPONSIVE - Tablet 768px+
   ============================================ */
@media (min-width: 768px) {
  #bc-page .bc-container {
    padding: 0 2rem;
  }

  #bc-page .bc-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  #bc-page .bc-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #bc-page .bc-model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  #bc-page .bc-service-item {
    grid-template-columns: 80px 1fr auto;
    align-items: start;
  }

  #bc-page .bc-comparison-table {
    display: block;
  }

  #bc-page .bc-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #bc-page .bc-radius-info {
    grid-template-columns: repeat(3, 1fr);
  }

  #bc-page .bc-area-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  #bc-page .bc-map-container {
    grid-template-columns: 400px 1fr;
  }

  #bc-page .bc-map-embed {
    height: 500px;
  }

  #bc-page .bc-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #bc-page .bc-mobile-bar {
    display: none;
  }

  #bc-page .bc-whatsapp-float {
    bottom: 30px;
    right: 30px;
  }
}

/* ============================================
   RESPONSIVE - Desktop 1024px+
   ============================================ */
@media (min-width: 1024px) {
  #bc-page .bc-hero {
    padding: 6rem 0;
  }

  #bc-page .bc-pricing,
  #bc-page .bc-services,
  #bc-page .bc-comparison,
  #bc-page .bc-problems,
  #bc-page .bc-areas,
  #bc-page .bc-faq,
  #bc-page .bc-related {
    padding: 6rem 0;
  }

  #bc-page .bc-model-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  #bc-page .bc-problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE - Mobile only &lt;768px
   ============================================ */
@media (max-width: 767px) {
  #bc-page .bc-mobile-bar {
    display: flex;
  }

  #bc-page .bc-whatsapp-float {
    bottom: 70px;
    padding: 1rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  #bc-page .bc-whatsapp-text {
    display: none;
  }

  #bc-page .bc-comparison-header {
    display: none;
  }

  #bc-page .bc-comparison-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    margin-bottom: 1rem;
  }

  #bc-page .bc-comp-cell {
    justify-content: flex-start;
    text-align: left;
    padding: 0.5rem 0;
  }

  #bc-page .bc-comp-cell:before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 0.5rem;
  }

  #bc-page .bc-comp-feature:before {
    content: &quot;&quot;;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes bc-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#bc-page .bc-hero,
#bc-page .bc-pricing,
#bc-page .bc-services {
  animation: bc-fadeIn 0.6s ease-out;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  #bc-page .bc-whatsapp-float,
  #bc-page .bc-mobile-bar,
  #bc-page .bc-cta-group,
  #bc-page .bc-btn {
    display: none;
  }

  #bc-page .bc-hero,
  #bc-page .bc-pricing,
  #bc-page .bc-services,
  #bc-page .bc-comparison,
  #bc-page .bc-faq {
    page-break-inside: avoid;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
#bc-page .bc-btn:focus,
#bc-page .bc-area-card:focus,
#bc-page .bc-related-card:focus {
  outline: 3px solid var(--bc-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  #bc-page *,
  #bc-page *::before,
  #bc-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}