/* ========================================
   HCGDBL BHIWADI — UNIQUE DESIGN
   Font: Poppins | Accent: Navy #161455 / Yellow #ffd400
   Distinct from hcgui (Inter/Navy card-based)
   ======================================== */

:root {
  --bh-primary: #161455;
  --bh-accent: #161455;
  --bh-accent-light: #e8e7f6;
  --bh-dark: #0f172a;
  --bh-text: #334155;
  --bh-muted: #64748b;
  --bh-light: #ffffff;
  --bh-bg: #f8fafc;
  --bh-border: #e2e8f0;
  --bh-yellow: #ffd400;
  --bh-red: #dc2626;
  --bh-radius: 12px;
  --bh-shadow: 0 4px 24px rgba(15,23,42,0.08);
  --bh-shadow-lg: 0 20px 50px rgba(15,23,42,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--bh-text);
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.bh-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========================================
   TOPBAR — gradient strip
   ======================================== */
.bh-topbar {
  background: linear-gradient(135deg, var(--bh-dark) 0%, #1e293b 100%);
  padding: 9px 0;
  font-size: 13px;
}

.bh-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.bh-topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bh-topbar-link {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 12px;
}

.bh-topbar-link:hover { color: #fff; }
.bh-topbar-link .fa-whatsapp { color: #22c55e; }
.bh-topbar-link .fa-phone-alt { color: var(--bh-yellow); }

.bh-topbar-sep {
  color: #475569;
  font-size: 10px;
  user-select: none;
}

/* Emergency Pill */
.bh-emergency-pill {
  background: var(--bh-red);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: bh-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.bh-emergency-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  animation: bh-shimmer 2.5s linear infinite;
}

@keyframes bh-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}

@keyframes bh-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Emergency Side Tab (mobile) */
.bh-emergency-side {
  display: none;
  position: fixed;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 999;
  background: var(--bh-red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px 10px 0 0;
  font-weight: 700;
  font-size: 11px;
  box-shadow: 0 4px 20px rgba(220,38,38,0.4);
  gap: 6px;
  align-items: center;
}

/* ========================================
   HEADER — clean single row
   ======================================== */
.bh-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--bh-border);
  transition: box-shadow 0.3s ease;
}

.bh-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-color: transparent;
}

.bh-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.bh-logo-link { flex-shrink: 0; }

.bh-logo {
  height: 42px;
  width: auto;
}

/* Nav */
.bh-nav { flex: 1; }

.bh-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.bh-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--bh-dark);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  position: relative;
}

.bh-nav-link:hover {
  color: var(--bh-accent);
  background: var(--bh-accent-light);
}

.bh-nav-link i { font-size: 10px; opacity: 0.6; }

/* Dropdown */
.bh-has-drop { position: relative; }

.bh-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: var(--bh-radius);
  box-shadow: var(--bh-shadow-lg);
  border: 1px solid var(--bh-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 110;
  padding: 8px 0;
}

.bh-has-drop:hover > .bh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bh-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-text);
  transition: all 0.2s;
}

.bh-dropdown li a:hover {
  background: var(--bh-accent-light);
  color: var(--bh-accent);
  padding-left: 24px;
}

/* Right actions */
.bh-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Customer Zone */
.bh-cz-wrap { position: relative; }

.bh-cz-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--bh-border);
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--bh-dark);
  transition: all 0.2s;
}

.bh-cz-trigger:hover {
  border-color: var(--bh-accent);
  color: var(--bh-accent);
}

.bh-pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bh-accent);
  animation: bh-blink 1.5s ease-in-out infinite;
}

@keyframes bh-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.bh-cz-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  min-width: 230px;
  border-radius: var(--bh-radius);
  box-shadow: var(--bh-shadow-lg);
  border: 1px solid var(--bh-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 120;
  overflow: hidden;
}

.bh-cz-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bh-cz-head {
  background: linear-gradient(135deg, var(--bh-primary), #100e45);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bh-cz-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-text);
  border-bottom: 1px solid var(--bh-border);
  transition: all 0.2s;
}

.bh-cz-link:last-child { border-bottom: none; }

.bh-cz-link:hover {
  background: var(--bh-accent-light);
  color: var(--bh-accent);
  padding-left: 22px;
}

.bh-cz-link i {
  width: 18px;
  text-align: center;
  color: var(--bh-primary);
  font-size: 13px;
}

/* Pay Bill Button */
.bh-pay-btn {
  background: var(--bh-primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(22,20,85,0.2);
}

.bh-pay-btn:hover {
  background: #100e45;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,20,85,0.3);
  color: #fff;
}

/* Hamburger */
.bh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.bh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bh-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Panel */
.bh-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.bh-nav-overlay.active { display: block; opacity: 1; }

.bh-nav-panel-header {
  display: none;
}

.bh-nav-close { display: none; }

/* ========================================
   HERO — fullscreen center-aligned
   ======================================== */
.bh-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.bh-hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bh-hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

.bh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.7) 100%);
  z-index: 2;
}

/* Geometric dot pattern overlay — unique to bhwadi */
.bh-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.bh-hero-body {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-hero-center {
  text-align: center;
  color: #fff;
  max-width: 720px;
}

.bh-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.bh-hero-chip i { color: var(--bh-yellow); }

.bh-hero-center h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.bh-hero-highlight {
  background: linear-gradient(135deg, var(--bh-yellow) 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bh-hero-center > p {
  font-size: 17px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* Price pills */
.bh-hero-prices {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.bh-price-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bh-price-pill i { color: var(--bh-yellow); }
.bh-price-pill strong { font-weight: 700; }

/* Hero buttons */
.bh-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bh-btn-solid {
  background: var(--bh-primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(22,20,85,0.25);
}

.bh-btn-solid:hover {
  background: #100e45;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22,20,85,0.35);
  color: #fff;
}

.bh-btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bh-btn-outline:hover {
  background: #fff;
  color: var(--bh-primary);
  border-color: #fff;
}

/* Hero dots */
.bh-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.bh-hero-dots .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: #fff;
  opacity: 0.4;
  margin: 0 4px;
  border-radius: 10px;
  transition: all 0.3s;
}

.bh-hero-dots .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  background: var(--bh-yellow);
}

/* ========================================
   SERVICES STRIP — horizontal chips scroll
   ======================================== */
.bh-services-strip {
  background: #fff;
  padding: 0;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}

.bh-services-scroll {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--bh-shadow-lg);
  border: 1px solid var(--bh-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bh-services-scroll::-webkit-scrollbar { display: none; }

.bh-srv-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bh-bg);
  border-radius: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-text);
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.bh-srv-chip:hover {
  border-color: var(--bh-accent);
  background: var(--bh-accent-light);
  color: var(--bh-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22,20,85,0.12);
}

.bh-srv-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bh-primary), #100e45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

/* ========================================
   ABOUT SPLIT — image left, text right
   ======================================== */
.bh-about-split {
  padding: 90px 0 80px;
  background: #fff;
}

.bh-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.bh-split-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.bh-split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.bh-floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bh-primary);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(22,20,85,0.25);
}

.bh-fb-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.bh-fb-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Label chip — used across sections */
.bh-label-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bh-accent-light);
  color: var(--bh-primary);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.bh-split-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--bh-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.bh-split-content p {
  font-size: 14.5px;
  color: var(--bh-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Mini Stats */
.bh-mini-stats {
  display: flex;
  gap: 28px;
  margin: 28px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--bh-border);
  border-bottom: 1px solid var(--bh-border);
}

.bh-ms-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--bh-primary);
  line-height: 1.1;
}

.bh-ms-num span {
  font-size: 14px;
  font-weight: 600;
}

.bh-ms-label {
  font-size: 12px;
  color: var(--bh-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Text link arrow */
.bh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bh-primary);
  font-weight: 700;
  font-size: 13.5px;
}

.bh-text-link:hover { gap: 10px; }

/* ========================================
   SECTION HEAD — centered
   ======================================== */
.bh-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

.bh-section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--bh-dark);
  margin-bottom: 12px;
}

.bh-section-head p {
  color: var(--bh-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   SEGMENTS — horizontal cards (icon left)
   ======================================== */
.bh-segments {
  padding: 80px 0;
  background: var(--bh-bg);
}

.bh-segment-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bh-seg-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--bh-border);
  transition: all 0.3s ease;
}

.bh-seg-card:hover {
  border-color: var(--bh-accent);
  box-shadow: var(--bh-shadow-lg);
  transform: translateX(6px);
}

.bh-seg-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.bh-seg-cng { background: linear-gradient(135deg, var(--bh-primary), #100e45); }
.bh-seg-png { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bh-seg-ind { background: linear-gradient(135deg, var(--bh-primary), #2d28a0); }

.bh-seg-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-dark);
  margin-bottom: 8px;
}

.bh-seg-body p {
  font-size: 14px;
  color: var(--bh-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ========================================
   COUNTER RIBBON — inline flexbox
   ======================================== */
.bh-counter-ribbon {
  background: linear-gradient(135deg, var(--bh-dark) 0%, var(--bh-primary) 100%);
  padding: 48px 0;
}

.bh-counter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.bh-counter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 36px;
  color: #fff;
}

.bh-counter-item > i {
  font-size: 28px;
  color: var(--bh-yellow);
  opacity: 0.8;
}

.bh-counter-data strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.bh-counter-data span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bh-counter-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ========================================
   MISSION — text left, image right
   ======================================== */
.bh-mission {
  padding: 90px 0;
  background: #fff;
}

.bh-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bh-mission-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--bh-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bh-mission-text > p {
  font-size: 14.5px;
  color: var(--bh-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bh-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.bh-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-dark);
}

.bh-checklist li i {
  width: 24px;
  height: 24px;
  background: var(--bh-accent-light);
  color: var(--bh-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.bh-mission-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--bh-shadow-lg);
}

.bh-mission-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bh-mission-img:hover img {
  transform: scale(1.03);
}

/* ========================================
   CTA — About page call-to-action
   ======================================== */
.bh-cta {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bh-bg), #fff);
}
.bh-cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}
.bh-cta-card {
  background: #fff;
  padding: 34px;
  border-radius: 16px;
  box-shadow: var(--bh-shadow);
  border: 1px solid var(--bh-border);
}
.bh-cta-card h2 {
  font-size: 28px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: var(--bh-dark);
}
.bh-cta-card p { color: var(--bh-muted); line-height: 1.7; }
.bh-cta-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bh-accent-light), #fff);
  padding: 28px;
  box-shadow: var(--bh-shadow-lg);
  border: 1px solid var(--bh-border);
}
.bh-cta-img img { max-width: 100%; height: auto; display: block; filter: saturate(0.98) contrast(1.02); }


/* ========================================
   CONTACT — 2x2 left-accent cards
   ======================================== */
.bh-contact {
  padding: 80px 0;
  background: var(--bh-bg);
}

.bh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bh-ct-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--bh-border);
  border-left: 4px solid var(--bh-primary);
  transition: all 0.25s ease;
}

.bh-ct-card:hover {
  box-shadow: var(--bh-shadow);
  transform: translateY(-3px);
}

.bh-ct-wa { border-left-color: #22c55e; }
.bh-ct-sos { border-left-color: var(--bh-red); }

.bh-ct-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.bh-ct-phone .bh-ct-icon { background: var(--bh-accent-light); color: var(--bh-primary); }
.bh-ct-wa .bh-ct-icon { background: #dcfce7; color: #16a34a; }
.bh-ct-email .bh-ct-icon { background: #dbeafe; color: #2563eb; }
.bh-ct-sos .bh-ct-icon { background: #fee2e2; color: var(--bh-red); }

.bh-ct-detail h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bh-dark);
  margin-bottom: 4px;
}

.bh-ct-detail a {
  color: var(--bh-primary);
  font-weight: 600;
  font-size: 14px;
}

.bh-ct-detail a:hover { color: var(--bh-primary); }

/* ========================================
   FOOTER — wave top, 4-col grid
   ======================================== */
.bh-footer {
  background: var(--bh-dark);
  color: #fff;
  position: relative;
  padding-top: 0;
}

.bh-footer-wave {
  color: var(--bh-bg);
  line-height: 0;
  margin-bottom: 40px;
}

.bh-footer-wave svg {
  width: 100%;
  height: 50px;
}

.bh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bh-footer-brand p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.bh-footer-logo {
  height: 44px;
  width: auto;
}

.bh-footer-social {
  display: flex;
  gap: 10px;
}

.bh-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 15px;
  transition: all 0.25s;
}

.bh-footer-social a:hover {
  background: var(--bh-yellow);
  color: var(--bh-dark);
  transform: translateY(-3px);
}

.bh-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.bh-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--bh-yellow);
  border-radius: 2px;
}

.bh-footer-col ul li {
  margin-bottom: 10px;
}

.bh-footer-col ul li a {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.bh-footer-col ul li a:hover {
  color: var(--bh-yellow);
  padding-left: 4px;
}

/* Footer contact info */
.bh-footer-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.bh-footer-info i {
  color: var(--bh-yellow);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.bh-footer-info p,
.bh-footer-info p a {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

.bh-footer-info p a:hover { color: var(--bh-yellow); }

.bh-cin {
  margin-top: 12px;
  font-size: 11px !important;
  color: #64748b !important;
}

/* Footer bottom */
.bh-footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.2);
}

.bh-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bh-footer-bottom-inner p {
  color: #64748b;
  font-size: 12px;
}

.bh-footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bh-footer-legal a {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 500;
}

.bh-footer-legal a:hover { color: var(--bh-yellow); }

/* ========================================
   WHATSAPP FAB
   ======================================== */
.bh-wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all 0.2s;
}

.bh-wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  color: #fff;
}

/* ========================================
   PAGE HERO — interior pages
   ======================================== */
.bh-page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bh-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bh-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.4) 0%, rgba(15,23,42,0.75) 100%);
  z-index: 1;
}

.bh-page-hero .bh-container {
  position: relative;
  z-index: 2;
}

.bh-page-hero-content {
  padding-bottom: 40px;
}

.bh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 10px;
}

.bh-breadcrumb a {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.bh-breadcrumb a:hover { color: var(--bh-yellow); }

.bh-breadcrumb i { font-size: 9px; color: rgba(255,255,255,0.3); }

.bh-breadcrumb span {
  color: #fff;
  font-weight: 600;
}

.bh-page-hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.bh-page-hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-top: 6px;
}

/* ========================================
   ABOUT PAGE — unique classes
   ======================================== */
.bh-about-main { padding: 80px 0; }

.bh-about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.bh-about-intro h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--bh-primary);
  margin-bottom: 18px;
}

.bh-about-intro p {
  font-size: 14.5px;
  color: var(--bh-text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.bh-stats-card {
  background: linear-gradient(135deg, var(--bh-primary), #100e45);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bh-stat-item { text-align: center; }

.bh-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.bh-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
}

/* Segments (about page) */
.bh-segments-section {
  padding: 60px 0;
  background: var(--bh-bg);
}

.bh-segment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.bh-seg-about-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--bh-border);
  transition: all 0.25s;
}

.bh-seg-about-card:hover {
  border-color: var(--bh-accent);
  box-shadow: var(--bh-shadow-lg);
  transform: translateY(-4px);
}

.bh-seg-about-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
}

.bh-seg-about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-dark);
  margin-bottom: 10px;
}

.bh-seg-about-card p {
  font-size: 14px;
  color: var(--bh-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Objective banner */
.bh-objective-bar {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--bh-primary), #100e45);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.bh-objective-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bh-objective-bar p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Group Company */
.bh-group-section {
  padding: 80px 0;
  background: var(--bh-bg);
}

.bh-gc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bh-border);
  box-shadow: var(--bh-shadow);
}

.bh-gc-header {
  padding: 28px 32px 0;
}

.bh-gc-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--bh-dark);
  margin-bottom: 6px;
}

.bh-gc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 20px 32px;
}

.bh-gc-body p {
  font-size: 14px;
  color: var(--bh-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.bh-gc-image {
  border-radius: 14px;
  overflow: hidden;
}

.bh-gc-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.bh-gc-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--bh-border);
}

.bh-gc-addr-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--bh-primary), #100e45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.bh-gc-addr-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--bh-dark);
  margin-bottom: 4px;
}

.bh-gc-addr-info p {
  font-size: 13px;
  color: var(--bh-muted);
  line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .bh-split-grid { grid-template-columns: 1fr; }
  .bh-split-image { order: -1; }
  .bh-mission-grid { grid-template-columns: 1fr; }
  .bh-footer-grid { grid-template-columns: 1fr 1fr; }
  .bh-about-intro-grid { grid-template-columns: 1fr; }
  .bh-gc-body { grid-template-columns: 1fr; }
  .bh-segment-grid { grid-template-columns: 1fr; }
  .bh-counter-item { padding: 10px 20px; }
  .bh-hero-center h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  /* Topbar */
  .bh-topbar-email, .bh-topbar-phone span { display: none; }
  .bh-topbar-phone i { margin-right: 0; }
  .bh-hide-sm { display: none; }
  .bh-emergency-pill i { margin: 0; }
  .bh-emergency-side { display: flex; }

  /* Header */
  .bh-header-row { height: 60px; }
  .bh-logo { height: 36px; }
  .bh-hamburger { display: flex; }
  .bh-cz-trigger span:not(.bh-pulse-dot) { display: none; }
  .bh-cz-trigger { padding: 6px 8px; }
  .bh-pay-btn span { display: none; }
  .bh-pay-btn { padding: 8px 12px; }

  /* Mobile navigation */
  .bh-nav-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .bh-nav-panel-logo { height: 32px; width: auto; filter: brightness(0) invert(1); }
  .bh-nav-close { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: none; border-radius: 8px; color: #fff; font-size: 16px; cursor: pointer; }
  .bh-nav-close:hover { background: rgba(255,255,255,0.15); }

  .bh-nav-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--bh-dark);
    z-index: 999;
    transition: right 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
  }

  .bh-nav-panel.active { right: 0; }

  .bh-nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px;
  }

  .bh-nav-link {
    color: #e2e8f0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    justify-content: space-between;
    font-size: 14px;
    border-radius: 0;
  }

  .bh-nav-link:hover {
    color: var(--bh-yellow);
    background: transparent;
  }

  .bh-has-drop > .bh-nav-link i { transition: transform 0.3s; }
  .bh-has-drop.open > .bh-nav-link i { transform: rotate(180deg); }

  .bh-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    display: none;
    padding: 0;
  }

  .bh-has-drop.open > .bh-dropdown { display: block; }

  .bh-dropdown li a {
    color: #cbd5e1;
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: none;
  }

  .bh-dropdown li a:hover {
    background: rgba(255,212,0,0.06);
    color: var(--bh-yellow);
  }

  /* Hero */
  .bh-hero { height: 500px; }
  .bh-hero-center h1 { font-size: 30px; }
  .bh-hero-center > p { font-size: 15px; }

  /* Services */
  .bh-services-strip { margin-top: -24px; }
  .bh-services-scroll { padding: 12px 14px; gap: 8px; }

  /* Segments */
  .bh-seg-card { flex-direction: column; gap: 16px; }

  /* Counter */
  .bh-counter-row { flex-wrap: wrap; justify-content: center; }
  .bh-counter-sep { display: none; }
  .bh-counter-item { width: 50%; justify-content: center; padding: 16px 12px; }

  /* Contact */
  .bh-contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .bh-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bh-footer-bottom-inner { flex-direction: column; align-items: flex-start; text-align: left; }

  /* Page Hero */
  .bh-page-hero { height: 220px; }
  .bh-page-hero-content h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  .bh-container { padding: 0 16px; }
  .bh-hero { height: 440px; }
  .bh-hero-center h1 { font-size: 26px; }
  .bh-hero-btns { flex-direction: column; align-items: center; }
  .bh-btn-solid, .bh-btn-outline { width: 100%; justify-content: center; }
  .bh-price-pill { font-size: 12px; padding: 6px 14px; }
  .bh-split-content h2 { font-size: 24px; }
  .bh-section-head h2 { font-size: 24px; }
  .bh-mini-stats { flex-direction: column; gap: 16px; }
  .bh-counter-item { width: 100%; }
  .bh-wa-fab { width: 48px; height: 48px; font-size: 22px; right: 14px; bottom: 14px; }
}

/* ========================================
   ACCESSIBILITY & UTILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

html { scroll-behavior: smooth; }

::selection {
  background: var(--bh-primary);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bh-primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========================================
   HERO — REDESIGNED v2
   ======================================== */

/* Compact minimalist hero */
.bh-hero {
  height: auto;
  min-height: 520px;
}

/* Left-aligned hero content */
.bh-hero-content {
  text-align: left;
  color: #fff;
  max-width: 620px;
}

.bh-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.bh-hero-sub {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.72;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ========================================
   PRICE TICKER STRIP
   ======================================== */
.bh-ticker-wrap {
  background: var(--bh-dark);
  display: flex;
  align-items: center;
  height: 42px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.bh-ticker-label {
  background: var(--bh-yellow);
  color: var(--bh-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}

.bh-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.bh-ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: bh-ticker 28s linear infinite;
}

@keyframes bh-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bh-ticker-wrap:hover .bh-ticker-inner { animation-play-state: paused; }

.bh-tick-item {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bh-tick-item i { color: var(--bh-yellow); font-size: 11px; }
.bh-tick-item strong { color: #fff; font-weight: 700; }

.bh-tick-sep {
  color: rgba(255,255,255,0.15);
  font-size: 6px;
  flex-shrink: 0;
}

/* ========================================
   SERVICES GRID SECTION
   ======================================== */
.bh-services-section {
  padding: 90px 0;
  background: var(--bh-bg);
}

.bh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bh-svc-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--bh-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  color: var(--bh-text);
}

.bh-svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bh-primary), #100e45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 3px 3px 0 0;
}

.bh-svc-card:hover {
  border-color: var(--bh-primary);
  box-shadow: 0 16px 40px rgba(22,20,85,0.1);
  transform: translateY(-6px);
  color: var(--bh-text);
}

.bh-svc-card:hover::after { transform: scaleX(1); }

.bh-svc-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.bh-ico-navy   { background: linear-gradient(135deg, var(--bh-primary), #100e45); }
.bh-ico-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bh-ico-teal   { background: linear-gradient(135deg, #0d9488, #0f766e); }
.bh-ico-green  { background: linear-gradient(135deg, #16a34a, #15803d); }
.bh-ico-purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.bh-ico-red    { background: linear-gradient(135deg, #dc2626, #b91c1c); }

.bh-svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-dark);
  margin: 0;
}

.bh-svc-card p {
  font-size: 13.5px;
  color: var(--bh-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.bh-svc-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bh-primary);
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 6px;
}

.bh-svc-footer i { font-size: 11px; transition: transform 0.2s ease; }
.bh-svc-card:hover .bh-svc-footer i { transform: translateX(4px); }

/* ========================================
   SEGMENTS GRID V2
   ======================================== */
.bh-segments { background: #fff; }

.bh-seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bh-seg-card-v2 {
  background: var(--bh-bg);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1.5px solid var(--bh-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.bh-seg-card-v2:hover {
  border-color: var(--bh-primary);
  box-shadow: 0 20px 50px rgba(22,20,85,0.1);
  transform: translateY(-6px);
  background: #fff;
}

.bh-seg-v2-featured {
  background: #fff;
  border-color: var(--bh-primary);
  box-shadow: 0 8px 32px rgba(22,20,85,0.1);
}

.bh-seg-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bh-seg-tag {
  display: inline-block;
  background: var(--bh-accent-light);
  color: var(--bh-primary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
}

.bh-seg-tag-warm { background: #fef3c7; color: #92400e; }

.bh-seg-card-v2 h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bh-dark);
  line-height: 1.3;
}

.bh-seg-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bh-seg-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--bh-text);
  line-height: 1.5;
}

.bh-seg-ul li i {
  color: var(--bh-primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bh-seg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bh-primary);
  font-weight: 700;
  font-size: 13px;
  border-top: 1px solid var(--bh-border);
  padding-top: 16px;
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.bh-seg-link:hover { gap: 10px; }
.bh-seg-link-warm { color: #d97706; }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.bh-why {
  padding: 90px 0;
  background: var(--bh-bg);
}

.bh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bh-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1.5px solid var(--bh-border);
  text-align: center;
  transition: all 0.28s ease;
}

.bh-why-card:hover {
  border-color: var(--bh-primary);
  box-shadow: 0 12px 36px rgba(22,20,85,0.1);
  transform: translateY(-5px);
}

.bh-why-ico {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--bh-primary), #100e45);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bh-yellow);
  margin: 0 auto 20px;
}

.bh-why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bh-dark);
  margin-bottom: 10px;
}

.bh-why-card p {
  font-size: 13.5px;
  color: var(--bh-muted);
  line-height: 1.7;
}

/* ========================================
   CTA BANNER
   ======================================== */
.bh-cta-banner {
  background: linear-gradient(135deg, var(--bh-dark) 0%, #1a184a 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.bh-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,212,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.bh-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.bh-cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.bh-cta-text p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

.bh-cta-acts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.bh-ctab-primary {
  background: var(--bh-yellow);
  color: var(--bh-dark);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.bh-ctab-primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,212,0,0.35);
  color: var(--bh-dark);
}

.bh-ctab-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.bh-ctab-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ========================================
   RESPONSIVE — new sections
   ======================================== */
@media (max-width: 1024px) {
  .bh-hero-content h1 { font-size: 38px; }
  .bh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-seg-grid { grid-template-columns: 1fr; }
  .bh-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bh-hero { height: auto; min-height: 420px; }
  .bh-hero-content h1 { font-size: 28px; letter-spacing: -0.5px; }
  .bh-hero-sub { font-size: 13.5px; }
  .bh-services-section { padding: 60px 0; }
  .bh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-seg-grid { grid-template-columns: 1fr; }
  .bh-why { padding: 60px 0; }
  .bh-why-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .bh-cta-text h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .bh-hero { height: auto; min-height: 380px; }
  .bh-hero-content h1 { font-size: 24px; }
  .bh-services-grid { grid-template-columns: 1fr; }
  .bh-why-grid { grid-template-columns: 1fr; }
  .bh-cta-acts { width: 100%; flex-direction: column; }
  .bh-ctab-primary,
  .bh-ctab-secondary { width: 100%; justify-content: center; }
  .bh-ticker-label { padding: 0 12px; font-size: 10px; }
}
