/* ============================================
   BOMBAY COMPUTERS - PREMIUM HERO SECTION CSS
   ============================================ */

:root {
  --bc-primary: #0066FF;
  --bc-primary-dark: #0052CC;
  --bc-secondary: #00D4AA;
  --bc-dark: #0A0E27;
  --bc-dark-2: #151A35;
  --bc-dark-3: #1F2544;
  --bc-text: #E8ECFB;
  --bc-text-muted: #A0AEC0;
  --bc-accent: #FF3366;
  --bc-success: #00C48C;
  --bc-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bc-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --bc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --bc-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --bc-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
}

@import url(\'https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@400;500;700&display=swap\');

/* ============================================
   HERO SECTION
   ============================================ */

.bc-hero-section {
  position: relative;
  min-height: auto;
  background: linear-gradient(180deg, #0A0E27 0%, #151A35 100%);
  overflow: hidden;
  padding: 0 0 20px !important;
  margin: 0 !important;
  margin-top: -35px !important;
  margin-bottom: 0 !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  font-family: \'DM Sans\', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bc-hero-bg-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: bc-grid-slide 20s linear infinite;
  z-index: 1;
  pointer-events: none !important;
}

@keyframes bc-grid-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(60px); }
}

.bc-hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 2;
  animation: bc-orb-float 8s ease-in-out infinite;
  pointer-events: none !important;
}

.bc-orb-1 { width: 500px; height: 500px; background: var(--bc-gradient-1); top: -200px; right: -100px; animation-delay: 0s; }
.bc-orb-2 { width: 400px; height: 400px; background: var(--bc-gradient-2); bottom: -150px; left: -100px; animation-delay: 4s; }

@keyframes bc-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.bc-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 10;
}

.bc-hero-content {
  position: relative;
  text-align: center;
  animation: bc-fade-in-up 1s ease-out;
  z-index: 20;
}

@keyframes bc-fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.bc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px !important;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--bc-text);
  font-size: 13px !important;
  font-weight: 500;
  margin-bottom: 25px !important;
  animation: bc-fade-in-up 1s ease-out 0.2s backwards;
}

.bc-star-icon { width: 18px; height: 18px; color: #FFD700; }
.bc-separator { color: var(--bc-text-muted); opacity: 0.5; }

.bc-hero-headline {
  font-family: \'Syne\', sans-serif;
  font-size: 42px !important;
  font-weight: 800;
  line-height: 1.2 !important;
  margin: 0 0 20px !important;
  letter-spacing: -0.02em;
  animation: bc-fade-in-up 1s ease-out 0.3s backwards;
}

.bc-white-text { color: #FFFFFF !important; }

.bc-gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #00D4AA 50%, #f5576c 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bc-gradient-shift 4s ease infinite;
}

@keyframes bc-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.bc-hero-subheadline {
  font-size: 17px !important;
  line-height: 1.5 !important;
  color: var(--bc-text-muted);
  max-width: 700px;
  margin: 0 auto 30px !important;
  font-weight: 400;
  animation: bc-fade-in-up 1s ease-out 0.4s backwards;
}

.bc-service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px !important;
  animation: bc-fade-in-up 1s ease-out 0.5s backwards;
}

.bc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--bc-text);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.bc-pill:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(102, 126, 234, 0.4); transform: translateY(-2px); }
.bc-pill-icon { width: 20px; height: 20px; color: var(--bc-secondary); }

.bc-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px !important;
  animation: bc-fade-in-up 1s ease-out 0.6s backwards;
  position: relative;
  z-index: 25;
}

.bc-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 0 26px !important;
  height: 44px !important;
  min-width: 160px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  font-family: \'DM Sans\', sans-serif !important;
  line-height: 44px !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 30 !important;
}

.bc-btn span, .bc-btn svg { display: inline-block !important; vertical-align: middle !important; line-height: normal !important; }
.bc-btn-icon { width: 18px !important; height: 18px !important; flex-shrink: 0 !important; transition: transform 0.3s ease !important; margin: 0 !important; padding: 0 !important; position: relative !important; top: 0 !important; }

.bc-btn-primary { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important; color: #fff !important; border: none !important; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important; }
.bc-btn-primary:hover { background: linear-gradient(135deg, #2be175 0%, #14a08f 100%) !important; transform: translateY(-3px) !important; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4) !important; }
.bc-btn-secondary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; border: none !important; color: #fff !important; box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3) !important; }
.bc-btn-secondary:hover { background: linear-gradient(135deg, #7c8ef6 0%, #8b5cb8 100%) !important; transform: translateY(-3px) !important; box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4) !important; }

.bc-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  animation: bc-fade-in-up 1s ease-out 0.7s backwards;
}

.bc-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 20px !important;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bc-form-card {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px !important;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.bc-form-card::before { content: \'\'; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #667eea 0%, #00D4AA 100%); }
.bc-form-title { font-family: \'Syne\', sans-serif; font-size: 22px !important; font-weight: 700; color: var(--bc-text); margin: 0 0 8px !important; text-align: center; }
.bc-form-subtitle { font-size: 14px !important; line-height: 1.5; color: var(--bc-text-muted); margin: 0 0 20px !important; text-align: center; }
.bc-form-card .wpforms-container { margin: 0 !important; }
.bc-form-card .wpforms-field { margin-bottom: 15px !important; }
.bc-form-card input[type=\"text\"], .bc-form-card input[type=\"email\"], .bc-form-card input[type=\"tel\"], .bc-form-card textarea, .bc-form-card select { background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; color: var(--bc-text) !important; border-radius: 8px !important; padding: 12px 16px !important; font-size: 15px !important; width: 100% !important; }
.bc-form-card input::placeholder, .bc-form-card textarea::placeholder { color: var(--bc-text-muted) !important; }
.bc-form-card .wpforms-submit { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important; color: #fff !important; border: none !important; padding: 14px 32px !important; border-radius: 8px !important; font-size: 16px !important; font-weight: 600 !important; cursor: pointer !important; transition: all 0.3s ease !important; width: 100% !important; }
.bc-form-card .wpforms-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important; }
.bc-form-card label { color: var(--bc-text) !important; font-size: 14px !important; font-weight: 500 !important; margin-bottom: 6px !important; }

.bc-feature-card::before { content: \'\'; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--bc-gradient-1); transform: scaleX(0); transition: transform 0.4s ease; }
.bc-feature-card:hover::before { transform: scaleX(1); }
.bc-feature-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(102, 126, 234, 0.3); transform: translateY(-8px); box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15); }
.bc-feature-icon { width: 48px; height: 48px; margin: 0 auto 20px; color: var(--bc-secondary); transition: all 0.4s ease; }
.bc-feature-card:hover .bc-feature-icon { transform: scale(1.1) rotate(5deg); color: #667eea; }
.bc-feature-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.bc-feature-card h3 { font-family: \'Syne\', sans-serif; font-size: 17px !important; font-weight: 700; color: var(--bc-text); margin: 0 0 8px !important; line-height: 1.3 !important; }
.bc-feature-card p { font-size: 14px !important; line-height: 1.5 !important; color: var(--bc-text-muted); margin: 0 !important; }

@media (max-width: 968px) { .bc-features-grid { grid-template-columns: 1fr; gap: 16px; } .bc-form-card { grid-column: span 1; } }

@media (max-width: 768px) {
  .bc-hero-section { padding: 40px 0 50px !important; min-height: auto; margin-top: 0 !important; }
  .bc-hero-container { padding: 0 15px; }
  .bc-hero-headline { font-size: 32px !important; margin-bottom: 16px !important; }
  .bc-trust-badge { font-size: 12px !important; padding: 8px 16px !important; gap: 6px; margin-bottom: 20px !important; }
  .bc-star-icon { width: 16px; height: 16px; }
  .bc-hero-subheadline { font-size: 15px !important; margin-bottom: 24px !important; }
  .bc-service-pills { margin-bottom: 30px !important; }
  .bc-pill { padding: 10px 18px; font-size: 14px; }
  .bc-pill-icon { width: 18px; height: 18px; }
  .bc-cta-group { flex-direction: column; margin-bottom: 40px !important; }
  .bc-btn { width: 100% !important; justify-content: center !important; height: 44px !important; min-width: auto !important; font-size: 14px !important; }
  .bc-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .bc-form-card { grid-column: span 1; padding: 24px 20px !important; }
  .bc-feature-card { padding: 24px 18px !important; }
}

@media (max-width: 480px) {
  .bc-hero-headline { font-size: 28px !important; }
  .bc-service-pills { gap: 8px; }
  .bc-pill { padding: 8px 14px; font-size: 13px; }
}

/* ============================================
   USP SECTION
   ============================================ */

.bc-usp-section { margin-top: 40px !important; padding: 30px 0 0 !important; position: relative; z-index: 15; }
.bc-usp-section::before { content: \'\'; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.5) 20%, rgba(0, 212, 170, 0.5) 50%, rgba(102, 126, 234, 0.5) 80%, transparent 100%); box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
.bc-usp-container { display: flex; justify-content: center; align-items: stretch; gap: 20px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.bc-usp-pill { flex: 1; min-width: 220px; max-width: 260px; background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 28px 20px; text-align: center; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: default; }
.bc-usp-pill::before { content: \'\'; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%); opacity: 0; transition: opacity 0.4s ease; z-index: 0; }
.bc-usp-pill:hover::before { opacity: 1; }
.bc-usp-pill:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.06); border-color: rgba(102, 126, 234, 0.4); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(102, 126, 234, 0.2), 0 0 30px rgba(102, 126, 234, 0.15); }
.bc-usp-icon { width: 48px; height: 48px; margin: 0 auto 16px; position: relative; z-index: 1; }
.bc-usp-icon svg { width: 100%; height: 100%; color: var(--bc-secondary); filter: drop-shadow(0 4px 12px rgba(0, 212, 170, 0.3)); transition: all 0.4s ease; }
.bc-usp-pill:hover .bc-usp-icon svg { color: #00D4AA; filter: drop-shadow(0 6px 16px rgba(0, 212, 170, 0.5)); transform: scale(1.1) rotate(5deg); }
.bc-usp-title { font-family: \'Syne\', sans-serif; font-size: 17px !important; font-weight: 700 !important; color: #FFFFFF !important; margin: 0 0 6px !important; line-height: 1.3 !important; position: relative; z-index: 1; letter-spacing: -0.01em; }
.bc-usp-subtitle { font-size: 13px !important; font-weight: 400 !important; line-height: 1.4 !important; color: var(--bc-text-muted) !important; margin: 0 !important; position: relative; z-index: 1; }

@media (max-width: 968px) { .bc-usp-section { margin-top: 50px !important; } .bc-usp-pill { min-width: calc(50% - 8px); max-width: calc(50% - 8px); padding: 24px 16px; } }
@media (max-width: 480px) { .bc-usp-pill { min-width: 100%; max-width: 100%; } }

/* ============================================
   SERVICES SECTION
   ============================================ */

.bc-services-section { position: relative; background: linear-gradient(180deg, #0A0E27 0%, #151A35 100%); overflow: hidden; padding: 30px 0 80px !important; margin: -1px 0 0 0 !important; margin-left: calc(-50vw + 50%) !important; margin-right: calc(-50vw + 50%) !important; width: 100vw !important; max-width: 100vw !important; font-family: \'DM Sans\', -apple-system, BlinkMacSystemFont, sans-serif; }
.bc-services-bg-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.5; z-index: 1; pointer-events: none !important; }
.bc-services-gradient-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; z-index: 2; pointer-events: none !important; }
.bc-services-orb-1 { width: 600px; height: 600px; background: var(--bc-gradient-1); top: -100px; left: -200px; }
.bc-services-orb-2 { width: 500px; height: 500px; background: var(--bc-gradient-2); bottom: -150px; right: -200px; }
.bc-services-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 20px; z-index: 10; }
.bc-services-header { text-align: center; margin-bottom: 60px; animation: bc-fade-in-up 0.8s ease-out; }
.bc-services-title { font-family: \'Syne\', sans-serif; font-size: 42px !important; font-weight: 800; line-height: 1.2 !important; margin: 0 0 16px !important; letter-spacing: -0.02em; color: #FFFFFF !important; }
.bc-services-subtitle { font-size: 17px !important; line-height: 1.5 !important; color: var(--bc-text-muted); max-width: 650px; margin: 0 auto !important; font-weight: 400; }

.bc-service-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; animation: bc-fade-in-up 0.8s ease-out; position: relative; padding: 40px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; background: rgba(255, 255, 255, 0.02); z-index: 20; }
.bc-service-item:last-child { margin-bottom: 0; }
.bc-service-item:nth-child(even) .bc-service-image { order: 2; }
.bc-service-item:nth-child(even) .bc-service-content { order: 1; }

.bc-macbook-layout { display: block !important; overflow: hidden; }
.bc-macbook-image { float: right !important; width: 45% !important; margin: 0 0 24px 40px !important; order: unset !important; }
.bc-macbook-content { display: block !important; order: unset !important; }
.bc-laptop-layout { display: block !important; overflow: hidden; }
.bc-laptop-image { float: left !important; width: 45% !important; margin: 0 40px 24px 0 !important; order: unset !important; }
.bc-laptop-content { display: block !important; order: unset !important; }
.bc-clearfix { clear: both; display: block; height: 0; overflow: hidden; }

.bc-service-image { position: relative; border-radius: 20px; overflow: hidden; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.4s ease; }
.bc-service-image:hover { transform: translateY(-8px); border-color: rgba(102, 126, 234, 0.3); box-shadow: 0 16px 50px rgba(102, 126, 234, 0.2); }
.bc-service-image::before { content: \'\'; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%); opacity: 0; transition: opacity 0.4s ease; z-index: 1; }
.bc-service-image:hover::before { opacity: 1; }
.bc-service-image img { width: 100%; height: auto; display: block; border-radius: 20px; transition: transform 0.4s ease; }
.bc-service-image:hover img { transform: scale(1.05); }
.bc-service-content { position: relative; }
.bc-service-content h2 { font-family: \'Syne\', sans-serif; font-size: 32px !important; font-weight: 700; color: #FFFFFF !important; margin: 0 0 16px !important; line-height: 1.3 !important; letter-spacing: -0.01em; }
.bc-service-description { font-size: 16px !important; line-height: 1.7 !important; color: var(--bc-text-muted) !important; margin: 0 0 24px !important; text-align: justify; }
.bc-service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.bc-service-feature { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; transition: all 0.3s ease; }
.bc-service-feature:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(102, 126, 234, 0.3); transform: translateX(8px); }
.bc-service-feature-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--bc-secondary); margin-top: 2px; }
.bc-service-feature-icon svg { width: 100%; height: 100%; stroke-width: 2; }
.bc-service-feature-text { font-size: 15px !important; font-weight: 500; color: var(--bc-text) !important; line-height: 1.4 !important; margin: 0 !important; }
.bc-service-brands { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.bc-brand-badge { display: inline-flex; align-items: center; padding: 8px 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: var(--bc-text); font-size: 13px; font-weight: 500; transition: all 0.3s ease; }
.bc-brand-badge:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(102, 126, 234, 0.4); transform: translateY(-2px); }
.bc-service-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; padding: 16px; background: rgba(0, 212, 170, 0.05); border-left: 3px solid var(--bc-secondary); border-radius: 8px; align-items: center; }
.bc-meta-item { display: flex; align-items: center; gap: 8px; color: var(--bc-text); font-size: 14px; font-weight: 500; white-space: nowrap; line-height: 1; }
.bc-meta-icon { width: 18px; height: 18px; color: var(--bc-secondary); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bc-meta-icon svg { width: 18px; height: 18px; display: block; }
.bc-service-cta { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; padding: 0 32px !important; height: 50px !important; font-size: 16px !important; font-weight: 600 !important; border-radius: 12px !important; text-decoration: none !important; transition: all 0.3s ease !important; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important; color: #fff !important; border: none !important; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important; position: relative !important; z-index: 30 !important; pointer-events: auto !important; cursor: pointer !important; font-family: \'DM Sans\', sans-serif !important; }
.bc-service-cta:hover { background: linear-gradient(135deg, #2be175 0%, #14a08f 100%) !important; transform: translateY(-3px) !important; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4) !important; }
.bc-service-cta svg { width: 20px !important; height: 20px !important; }

@media (max-width: 968px) {
  .bc-services-section { padding: 60px 0 !important; }
  .bc-services-title { font-size: 36px !important; }
  .bc-service-item { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; padding: 30px; }
  .bc-macbook-image { float: none !important; width: 100% !important; margin: 0 0 24px 0 !important; }
  .bc-laptop-image { float: none !important; width: 100% !important; margin: 0 0 24px 0 !important; }
  .bc-service-content h2 { font-size: 28px !important; }
  .bc-service-features { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  .bc-services-container { padding: 0 15px; }
  .bc-services-title { font-size: 32px !important; }
  .bc-service-content h2 { font-size: 26px !important; }
  .bc-service-description { font-size: 15px !important; }
  .bc-service-cta { width: 100%; height: 48px !important; font-size: 15px !important; }
  .bc-service-item { margin-bottom: 50px; padding: 24px; }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.bc-reviews-section { position: relative; min-height: auto; background: linear-gradient(180deg, #0A0E27 0%, #151A35 100%); overflow: hidden; padding: 80px 0 0 !important; margin: 0 !important; margin-bottom: -97px !important; margin-left: calc(-50vw + 50%) !important; margin-right: calc(-50vw + 50%) !important; width: 100vw !important; max-width: 100vw !important; font-family: \'DM Sans\', -apple-system, BlinkMacSystemFont, sans-serif; }
.bc-reviews-container { position: relative; max-width: 1200px; margin: 0 auto !important; padding: 0 20px !important; z-index: 10; }
.bc-reviews-header { text-align: center; margin-bottom: 50px !important; animation: bc-fade-in-up 1s ease-out; }
.bc-reviews-title { font-family: \'Syne\', sans-serif; font-size: 42px !important; font-weight: 800; line-height: 1.2 !important; margin: 0 0 16px !important; color: var(--bc-text); letter-spacing: -0.02em; }
.bc-reviews-subtitle { font-size: 17px !important; line-height: 1.5 !important; color: var(--bc-text-muted); max-width: 700px; margin: 0 auto 30px !important; font-weight: 400; }
.bc-rating-summary { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; max-width: 400px; margin: 0 auto 40px; }
.bc-rating-stars { display: flex; gap: 6px; }
.bc-rating-star { width: 28px !important; height: 28px !important; color: #FFD700; }
.bc-rating-star-half { position: relative; overflow: hidden; }
.bc-rating-star-half::after { content: \'\'; position: absolute; top: 0; left: 50%; right: 0; bottom: 0; background: var(--bc-dark); }
.bc-rating-text { display: flex; align-items: baseline; gap: 8px; color: var(--bc-text); }
.bc-rating-score { font-family: \'Syne\', sans-serif; font-size: 32px !important; font-weight: 700; color: #FFD700; }
.bc-rating-total { font-size: 15px !important; color: var(--bc-text-muted); }

.bc-reviews-section .bc-reviews-container .bc-reviews-grid,
section.bc-reviews-section div.bc-reviews-container div.bc-reviews-grid,
div.bc-reviews-grid { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 24px !important; margin: 0 auto 50px auto !important; max-width: 100% !important; width: 100% !important; box-sizing: border-box !important; float: none !important; clear: both !important; }

.bc-reviews-grid .bc-review-card,
div.bc-reviews-grid div.bc-review-card { width: 80% !important; max-width: 80% !important; min-width: 80% !important; flex: 0 0 80% !important; float: none !important; clear: none !important; display: flex !important; flex-direction: column !important; box-sizing: border-box !important; margin: 0 !important; }

.bc-review-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 24px !important; transition: all 0.4s ease; position: relative; overflow: hidden; text-align: left !important; box-sizing: border-box !important; display: flex !important; flex-direction: column !important; }
.bc-review-card::before { content: \'\'; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #667eea 0%, #00D4AA 100%); opacity: 0; transition: opacity 0.3s ease; }
.bc-review-card:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(102, 126, 234, 0.3); transform: translateY(-5px); box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2); }
.bc-review-card:hover::before { opacity: 1; }
.bc-review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px !important; }
.bc-review-stars { display: flex; gap: 4px; }
.bc-review-stars svg { width: 16px !important; height: 16px !important; color: #FFD700; }
.bc-review-avatar { width: 50px !important; height: 50px !important; border-radius: 50% !important; border: 2px solid rgba(102, 126, 234, 0.3) !important; object-fit: cover !important; display: block !important; flex-shrink: 0 !important; }
img.bc-review-avatar { max-width: 50px !important; max-height: 50px !important; min-width: 50px !important; min-height: 50px !important; }
.bc-review-author { margin-bottom: 12px !important; }
.bc-review-name { font-family: \'Syne\', sans-serif; font-size: 18px !important; font-weight: 700; color: var(--bc-text); margin: 0 0 4px !important; line-height: 1.3 !important; }
.bc-review-service { display: inline-block; padding: 4px 12px; background: rgba(0, 212, 170, 0.1); border: 1px solid rgba(0, 212, 170, 0.2); border-radius: 6px; color: var(--bc-secondary); font-size: 12px !important; font-weight: 500; }
.bc-review-text { font-size: 14px !important; line-height: 1.6 !important; color: var(--bc-text-muted) !important; margin: 0 0 12px !important; text-align: justify; flex-grow: 1; }
.bc-review-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px !important; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.bc-review-verified { display: flex; align-items: center; gap: 6px; color: var(--bc-success); font-size: 13px !important; font-weight: 500; }
.bc-review-verified svg { width: 16px !important; height: 16px !important; stroke-width: 2; }
.bc-review-date { font-size: 13px !important; color: var(--bc-text-muted); }

@media (max-width: 768px) {
  .bc-reviews-section { padding: 50px 0 !important; }
  .bc-reviews-container { padding: 0 15px !important; }
  .bc-reviews-title { font-size: 32px !important; }
  .bc-reviews-grid .bc-review-card, div.bc-reviews-grid div.bc-review-card { width: 90% !important; max-width: 90% !important; min-width: 90% !important; flex: 0 0 90% !important; }
}

/* ============================================
   40/60 CTA STRIP — WhatsApp + WPForms
   ============================================ */

.bc-cta-strip {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  margin: 0 auto 60px auto !important;
  max-width: 90% !important;
  width: 90% !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  position: relative !important;
  z-index: 20 !important;
}

/* LEFT 40% — WhatsApp */
.bc-cta-wa {
  flex: 0 0 40% !important;
  width: 40% !important;
  background: linear-gradient(160deg, #0d2b1f 0%, #0a1f17 100%) !important;
  border-right: 1px solid rgba(37, 211, 102, 0.2) !important;
  padding: 48px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  position: relative !important;
  overflow: hidden !important;
}

.bc-cta-wa::before {
  content: \'\' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #25D366 0%, #128C7E 100%) !important;
}

.bc-cta-wa::after {
  content: \'\' !important;
  position: absolute !important;
  bottom: -60px !important; right: -60px !important;
  width: 200px !important; height: 200px !important;
  border-radius: 50% !important;
  background: rgba(37, 211, 102, 0.06) !important;
  pointer-events: none !important;
}

.bc-cta-wa-icon {
  width: 64px !important;
  height: 64px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
  flex-shrink: 0 !important;
}

.bc-cta-wa-icon svg {
  width: 34px !important;
  height: 34px !important;
  fill: #ffffff !important;
}

.bc-cta-wa-title {
  font-family: \'Syne\', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

.bc-cta-wa-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 0 24px !important;
}

.bc-cta-wa-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 32px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.bc-cta-wa-list li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.bc-cta-wa-list li svg {
  width: 18px !important;
  height: 18px !important;
  color: #25D366 !important;
  flex-shrink: 0 !important;
}

.bc-cta-wa-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  font-family: \'DM Sans\', sans-serif !important;
  margin-top: auto !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 30 !important;
  position: relative !important;
}

.bc-cta-wa-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5) !important;
  background: linear-gradient(135deg, #2be175 0%, #14a08f 100%) !important;
}

.bc-cta-wa-btn svg {
  width: 22px !important;
  height: 22px !important;
  fill: #ffffff !important;
  flex-shrink: 0 !important;
}

/* RIGHT 60% — WPForms */
.bc-cta-form {
  flex: 0 0 60% !important;
  width: 60% !important;
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 48px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
}

.bc-cta-form::before {
  content: \'\' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #667eea 0%, #00D4AA 100%) !important;
}

.bc-cta-form-title {
  font-family: \'Syne\', sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

.bc-cta-form-subtitle {
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: var(--bc-text-muted) !important;
  margin: 0 0 28px !important;
}

/* WPForms styling inside the CTA form panel */
.bc-cta-form .wpforms-container { margin: 0 !important; }
.bc-cta-form .wpforms-field { margin-bottom: 16px !important; }
.bc-cta-form label { color: var(--bc-text) !important; font-size: 14px !important; font-weight: 500 !important; margin-bottom: 6px !important; display: block !important; }
.bc-cta-form input[type=\"text\"],
.bc-cta-form input[type=\"email\"],
.bc-cta-form input[type=\"tel\"],
.bc-cta-form textarea,
.bc-cta-form select {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--bc-text) !important;
  border-radius: 10px !important;
  padding: 13px 16px !important;
  font-size: 15px !important;
  width: 100% !important;
  transition: border-color 0.3s ease !important;
  font-family: \'DM Sans\', sans-serif !important;
}
.bc-cta-form input:focus,
.bc-cta-form textarea:focus,
.bc-cta-form select:focus {
  border-color: rgba(102, 126, 234, 0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}
.bc-cta-form input::placeholder,
.bc-cta-form textarea::placeholder { color: var(--bc-text-muted) !important; }
.bc-cta-form .wpforms-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 32px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  font-family: \'DM Sans\', sans-serif !important;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3) !important;
}
.bc-cta-form .wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4) !important;
}

/* Responsive — stack on mobile */
@media (max-width: 768px) {
  .bc-cta-strip {
    flex-direction: column !important;
    max-width: 95% !important;
    width: 95% !important;
  }
  .bc-cta-wa {
    flex: none !important;
    width: 100% !important;
    padding: 36px 24px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(37, 211, 102, 0.2) !important;
  }
  .bc-cta-form {
    flex: none !important;
    width: 100% !important;
    padding: 36px 24px !important;
  }
  .bc-cta-wa-title { font-size: 22px !important; }
  .bc-cta-form-title { font-size: 22px !important; }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.bc-faq-section { margin: 60px auto 0 auto !important; max-width: 80% !important; width: 80% !important; padding: 0 !important; }
.bc-faq-header { text-align: center; margin-bottom: 50px !important; }
.bc-faq-title { font-family: \'Syne\', sans-serif; font-size: 42px !important; font-weight: 800; color: var(--bc-text); margin: 0 0 15px !important; line-height: 1.2 !important; }
.bc-faq-subtitle { font-size: 17px !important; line-height: 1.5 !important; color: var(--bc-text-muted); margin: 0 !important; }
.bc-faq-grid { display: flex !important; flex-direction: column !important; gap: 24px !important; align-items: center !important; }
.bc-faq-card { width: 100% !important; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 30px !important; transition: all 0.4s ease; position: relative; overflow: hidden; text-align: left !important; box-sizing: border-box !important; }
.bc-faq-card::before { content: \'\'; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #667eea 0%, #00D4AA 100%); opacity: 0; transition: opacity 0.3s ease; }
.bc-faq-card:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(102, 126, 234, 0.3); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2); }
.bc-faq-card:hover::before { opacity: 1; }
.bc-faq-icon { width: 48px; height: 48px; background: rgba(102, 126, 234, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px !important; }
.bc-faq-icon svg { width: 24px !important; height: 24px !important; color: var(--bc-secondary); }
.bc-faq-question { font-family: \'Syne\', sans-serif; font-size: 20px !important; font-weight: 700; color: var(--bc-text); margin: 0 0 12px !important; line-height: 1.4 !important; }
.bc-faq-answer { font-size: 15px !important; line-height: 1.7 !important; color: var(--bc-text-muted) !important; margin: 0 !important; }

/* ============================================
   GLOBAL LINK & BUTTON FIX
   ============================================ */

.bc-hero-section a, .bc-services-section a, .bc-usp-section a, .bc-reviews-section a, .bc-faq-section a { position: relative !important; z-index: 30 !important; pointer-events: auto !important; cursor: pointer !important; }
.bc-service-description a, .bc-service-feature-text a { color: #FFFFFF !important; text-decoration: underline !important; transition: all 0.3s ease !important; }
.bc-service-description a:hover, .bc-service-feature-text a:hover { color: var(--bc-secondary) !important; text-decoration: none !important; }
[class*=\"-bg-\"], [class*=\"-orb\"], [class*=\"-grid\"] { pointer-events: none !important; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.bc-float-whatsapp {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) !important;
  z-index: 9999 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  animation: bc-float-pulse 2.5s ease-in-out infinite !important;
}

.bc-float-whatsapp svg { width: 32px !important; height: 32px !important; fill: #ffffff !important; flex-shrink: 0 !important; position: relative !important; z-index: 1 !important; }
.bc-float-whatsapp:hover { transform: scale(1.12) !important; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7) !important; animation: none !important; }
.bc-float-whatsapp::before { content: \'\' !important; position: absolute !important; width: 100% !important; height: 100% !important; border-radius: 50% !important; background: rgba(37, 211, 102, 0.4) !important; animation: bc-float-ring 2.5s ease-out infinite !important; z-index: 0 !important; }

@keyframes bc-float-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes bc-float-ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 768px) {
  .bc-float-whatsapp { bottom: 20px !important; right: 20px !important; width: 54px !important; height: 54px !important; }
  .bc-float-whatsapp svg { width: 28px !important; height: 28px !important; }
}