/* ================================================
   ECNG PUDUCHERRY — ecng.css
   East Coast Natural Gas Distribution Pvt. Ltd.
   Teal theme: #006E51 | Gold: #ffb300
   ================================================ */

/* ── Topbar ─────────────────────────────────────── */
.ec-topbar {
  background: #0d2b1e;
  padding: 8px 0;
  font-size: 12.5px;
}
.ec-topbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.ec-topbar-link {
  color: #a8d5c4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color 0.2s;
}
.ec-topbar-link:hover { color: #fff; }
.ec-topbar-sep { color: rgba(255,255,255,0.2); }
.ec-emergency-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dc2626;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .ec-topbar-sep, .ec-topbar-link.ec-hide-sm { display: none; }
}

/* ── Header ─────────────────────────────────────── */
.ec-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,110,81,0.10);
  transition: box-shadow 0.3s;
  /* needed so the mobile nav dropdown positions relative to header */
  overflow: visible;
}
.ec-header-row { position: relative; }
.ec-header.scrolled { box-shadow: 0 4px 30px rgba(0,110,81,0.18); }

.ec-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.ec-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ── Desktop Nav (inline) ────────────────────────── */
.ec-nav { flex: 1; display: flex; justify-content: center; }
.ec-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}
.ec-nav-item { position: relative; }
.ec-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--bh-text, #334155);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.ec-nav-link:hover,
.ec-nav-item:hover > .ec-nav-link {
  background: var(--bh-accent-light, #e0f4ef);
  color: var(--bh-primary, #006E51);
}

.ec-nav-dropdown {
  display: none;
  position: absolute;
  left: 0; top: 100%;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--bh-border, #d1ece5);
  border-top: 3px solid var(--bh-primary, #006E51);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(0,110,81,0.13);
  z-index: 998;
  padding: 6px;
  padding-top: 10px;
  animation: fadeDown 0.2s ease;
  list-style: none;
}
.ec-nav-item:hover .ec-nav-dropdown { display: block; }
.ec-nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-text, #334155);
  border-radius: 7px;
  transition: background 0.15s;
}
.ec-nav-dropdown li a:hover {
  background: var(--bh-accent-light, #e0f4ef);
  color: var(--bh-primary, #006E51);
}

/* Nested sub-dropdown (Group Companies) */
.ec-nav-has-sub {
  position: relative;
}
.ec-nav-subdropdown {
  position: absolute;
  left: 100%;
  top: 0;
  display: none !important;
  border-top: 3px solid var(--bh-primary, #006E51) !important;
  min-width: 210px;
}
.ec-nav-has-sub:hover > .ec-nav-subdropdown {
  display: block !important;
}
.ec-nav-has-sub > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.ec-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Customer Zone */
.ec-cz-wrap { position: relative; }
.ec-cz-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bh-bg, #f4fbf8);
  border: 1.5px solid var(--bh-border, #d1ece5);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-dark, #0d2b1e);
  cursor: pointer;
  transition: all 0.2s;
}
.ec-cz-btn:hover {
  background: var(--bh-accent-light, #e0f4ef);
  border-color: var(--bh-primary, #006E51);
  color: var(--bh-primary, #006E51);
}
.ec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{ box-shadow:0 0 0 3px rgba(22,163,74,0.2); }
  50%{ box-shadow:0 0 0 6px rgba(22,163,74,0.1); }
}
.ec-cz-dropdown {
  display: none;
  position: absolute;
  right: 0; top: calc(100% + 8px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--bh-border, #d1ece5);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,110,81,0.12);
  padding: 8px;
  z-index: 999;
  animation: fadeDown 0.2s ease;
}
.ec-cz-wrap:hover .ec-cz-dropdown,
.ec-cz-wrap:focus-within .ec-cz-dropdown { display: block; }
@keyframes fadeDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.ec-cz-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bh-muted, #64748b);
  padding: 8px 12px 6px;
}
.ec-cz-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-text, #334155);
  transition: background 0.15s;
}
.ec-cz-dropdown a i { color: var(--bh-primary, #006E51); width: 16px; }
.ec-cz-dropdown a:hover { background: var(--bh-accent-light, #e0f4ef); }

.ec-pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bh-primary, #006E51);
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.ec-pay-btn:hover { background: #004d38; transform: translateY(-1px); }

.ec-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: var(--bh-bg, #f4fbf8);
  border: 1.5px solid var(--bh-border, #d1ece5);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.ec-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--bh-dark, #0d2b1e);
  border-radius: 2px;
  transition: all 0.3s;
}

/* (ec-nav-bar removed — nav is now inline in single-row header) */

/* ── Mobile Nav Panel ────────────────────────────── */
.ec-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}
.ec-nav-panel.open { pointer-events: all; }
.ec-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,30,0.55);
  opacity: 0;
  transition: opacity 0.3s;
}
.ec-nav-panel.open .ec-nav-overlay { opacity: 1; }
.ec-nav-inner {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 280px;
  background: #fff;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.ec-nav-panel.open .ec-nav-inner { transform: translateX(0); }
.ec-nav-inner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bh-border, #d1ece5);
  background: var(--bh-bg, #f4fbf8);
}
.ec-nav-inner-head img { height: 40px; }
.ec-nav-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--bh-dark, #0d2b1e);
  cursor: pointer;
  padding: 6px;
}
.ec-mobile-nav-list { list-style: none; padding: 12px 0; margin: 0; }
.ec-mobile-nav-list li a {
  display: block;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-text, #334155);
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.ec-mobile-nav-list li a:hover {
  background: var(--bh-accent-light, #e0f4ef);
  border-left-color: var(--bh-primary, #006E51);
  color: var(--bh-primary, #006E51);
}

/* ── Hero Carousel ───────────────────────────────── */
.ec-hero-swiper-wrap {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.ec-hero-swiper,
.ec-hero-swiper .swiper-wrapper,
.ec-hero-swiper .swiper-slide {
  height: 580px;
}
.ec-hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* gradient overlay so text is readable */
.ec-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,43,30,0.80) 0%, rgba(0,110,81,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
/* text content sits above the overlay */
.ec-hero-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.ec-hero-content {
  max-width: 640px;
  color: #fff;
}
.ec-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.ec-hero-content h1 {
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ec-hero-highlight { color: var(--bh-yellow, #ffb300); }
.ec-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 0 26px;
}
/* price strip */
.ec-hero-price-strip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,43,30,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ec-hero-price-strip .ec-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
}
.ec-hero-price-strip .ec-price-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--bh-yellow, #ffb300);
  line-height: 1;
}
.ec-strip-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
  margin: 0 6px;
}
.ec-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Swiper navigation & pagination in hero */
.ec-hero-next,
.ec-hero-prev {
  color: #fff;
  top: 50%;
}
.ec-hero-next::after,
.ec-hero-prev::after { font-size: 18px; font-weight: 900; }
.ec-hero-dots {
  bottom: 22px;
  z-index: 3;
}
.ec-hero-dots .swiper-pagination-bullet {
  background: rgba(255,255,255,0.55);
  opacity: 1;
  width: 8px; height: 8px;
}
.ec-hero-dots .swiper-pagination-bullet-active {
  background: var(--bh-yellow, #ffb300);
  width: 22px;
  border-radius: 4px;
}

/* buttons */
.ec-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bh-primary, #006E51);
  color: #fff;
  border: 2px solid var(--bh-primary, #006E51);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.ec-btn-primary:hover { background: #004d38; border-color: #004d38; transform: translateY(-2px); }
.ec-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--bh-primary, #006E51);
  border: 2px solid var(--bh-primary, #006E51);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.ec-btn-ghost:hover { background: var(--bh-accent-light, #e0f4ef); transform: translateY(-2px); }
.ec-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.ec-btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* ── Stats Bar ───────────────────────────────────── */
.ec-stats-bar {
  background: var(--bh-primary, #006E51);
  padding: 0;
}
.ec-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ec-stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.ec-stat-cell:last-child { border-right: none; }
.ec-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--bh-yellow, #ffb300);
  line-height: 1;
  margin-bottom: 4px;
}
.ec-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-align: center;
}

/* ── Shared Label Chip ───────────────────────────── */
.ec-label-chip {
  display: inline-block;
  background: var(--bh-accent-light, #e0f4ef);
  color: var(--bh-primary, #006E51);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ec-label-chip.light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── About Section ───────────────────────────────── */
.ec-about {
  padding: 90px 0;
  background: #fff;
}
.ec-about .bh-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.ec-about-head { grid-column: 1; }
.ec-about-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--bh-dark, #0d2b1e);
  line-height: 1.15;
  margin: 0 0 16px;
}
.ec-about-head p {
  font-size: 15px;
  color: var(--bh-muted, #64748b);
  line-height: 1.8;
  margin: 0 0 24px;
}
.ec-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bh-primary, #006E51);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s;
}
.ec-link-arrow:hover { gap: 14px; }
.ec-about-visual {
  grid-column: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,110,81,0.12);
}
.ec-about-visual img { width: 100%; height: 320px; object-fit: cover; display: block; }
.ec-about-feature-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ec-about-feat-card {
  background: var(--bh-bg, #f4fbf8);
  border: 1px solid var(--bh-border, #d1ece5);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ec-about-feat-card:hover { box-shadow: 0 8px 30px rgba(0,110,81,0.1); transform: translateY(-3px); }
.ec-feat-icon {
  width: 48px; height: 48px;
  background: var(--bh-primary, #006E51);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  margin-bottom: 16px;
}
.ec-about-feat-card h4 {
  font-size: 16px; font-weight: 800;
  color: var(--bh-dark, #0d2b1e);
  margin: 0 0 8px;
}
.ec-about-feat-card p { font-size: 13.5px; color: var(--bh-muted, #64748b); line-height: 1.7; margin: 0; }

/* ── Services Row List ───────────────────────────── */
.ec-services {
  padding: 90px 0;
  background: var(--bh-bg, #f4fbf8);
}
.ec-services-head { margin-bottom: 40px; }
.ec-services-head h2 { font-size: 32px; font-weight: 800; color: var(--bh-dark, #0d2b1e); margin: 0; }
.ec-svc-list { display: flex; flex-direction: column; gap: 0; }
.ec-svc-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--bh-border, #d1ece5);
  border-radius: 14px;
  margin-bottom: 10px;
  transition: all 0.2s;
  text-decoration: none;
}
.ec-svc-row:hover {
  border-color: var(--bh-primary, #006E51);
  box-shadow: 0 6px 24px rgba(0,110,81,0.1);
  transform: translateX(4px);
}
.ec-svc-num {
  font-size: 28px; font-weight: 900;
  color: var(--bh-border, #d1ece5);
  min-width: 48px; flex-shrink: 0;
  line-height: 1;
}
.ec-svc-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--bh-accent-light, #e0f4ef);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--bh-primary, #006E51);
  transition: background 0.2s;
}
.ec-svc-row:hover .ec-svc-icon {
  background: var(--bh-primary, #006E51);
  color: #fff;
}
.ec-svc-info { flex: 1; }
.ec-svc-info strong { display: block; font-size: 15px; font-weight: 700; color: var(--bh-dark, #0d2b1e); margin-bottom: 3px; }
.ec-svc-info p { font-size: 13px; color: var(--bh-muted, #64748b); margin: 0; line-height: 1.6; }
.ec-svc-arr { color: var(--bh-border, #d1ece5); font-size: 16px; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.ec-svc-row:hover .ec-svc-arr { color: var(--bh-primary, #006E51); transform: translateX(4px); }

/* ── Segments ────────────────────────────────────── */
.ec-segments { padding: 90px 0; background: #fff; }
.ec-segments-head { margin-bottom: 40px; }
.ec-segments-head h2 { font-size: 32px; font-weight: 800; color: var(--bh-dark, #0d2b1e); margin: 0; }
.ec-seg-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ec-seg-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--bh-border, #d1ece5);
  box-shadow: 0 4px 20px rgba(0,110,81,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ec-seg-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,110,81,0.13); }
.ec-seg-card-accent {
  background: var(--seg-color, #006E51);
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.ec-seg-card-accent i { font-size: 28px; opacity: 0.9; }
.ec-seg-card-accent strong { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.ec-seg-card-body {
  padding: 24px 28px 28px;
  background: #fff;
}
.ec-seg-card-body h3 { font-size: 18px; font-weight: 800; color: var(--bh-dark, #0d2b1e); margin: 0 0 10px; }
.ec-seg-card-body p { font-size: 14px; color: var(--bh-muted, #64748b); line-height: 1.75; margin: 0 0 16px; }
.ec-seg-card-body ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.ec-seg-card-body ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--bh-text, #334155);
}
.ec-seg-card-body ul li i { color: var(--bh-primary, #006E51); font-size: 13px; }
.ec-seg-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--bh-primary, #006E51); font-size: 13px; font-weight: 700;
  transition: gap 0.2s;
}
.ec-seg-link:hover { gap: 10px; }

/* ── Why ECNG ────────────────────────────────────── */
.ec-why {
  padding: 90px 0;
  background: var(--bh-bg, #f4fbf8);
}
.ec-why-head { margin-bottom: 48px; }
.ec-why-head h2 { font-size: 32px; font-weight: 800; color: var(--bh-dark, #0d2b1e); margin: 8px 0 0; line-height: 1.2; }
.ec-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ec-why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--bh-border, #d1ece5);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.ec-why-card:hover { box-shadow: 0 8px 32px rgba(0,110,81,0.1); }
.ec-why-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--bh-primary, #006E51), #004d38);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.ec-why-text h4 { font-size: 16px; font-weight: 800; color: var(--bh-dark, #0d2b1e); margin: 0 0 8px; }
.ec-why-text p { font-size: 13.5px; color: var(--bh-muted, #64748b); line-height: 1.7; margin: 0; }

/* ── CTA Banner ──────────────────────────────────── */
.ec-cta {
  background: linear-gradient(135deg, #0d2b1e 0%, var(--bh-primary, #006E51) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.ec-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,179,0,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.ec-cta-inner {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ec-cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 16px;
}
.ec-cta-inner p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.75; margin: 0 0 36px; }
.ec-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ec-btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s;
}
.ec-btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ── Contact Card ────────────────────────────────── */
.ec-contact { padding: 90px 0; background: #fff; }
.ec-contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bh-bg, #f4fbf8);
  border: 1px solid var(--bh-border, #d1ece5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,110,81,0.08);
}
.ec-contact-left {
  padding: 48px 44px;
  background: linear-gradient(135deg, #0d2b1e 0%, var(--bh-primary, #006E51) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ec-contact-left h3 {
  font-size: 22px; font-weight: 800;
  color: #fff; margin: 0 0 4px;
  display: flex; align-items: center; gap: 10px;
}
.ec-contact-left h3 i { color: var(--bh-yellow, #ffb300); }
.ec-contact-left p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 4px; }
.ec-contact-left a {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.ec-contact-left a:hover { color: var(--bh-yellow, #ffb300); }
.ec-contact-left a i { width: 18px; color: var(--bh-yellow, #ffb300); }
.ec-emrg-link {
  background: rgba(220,38,38,0.15) !important;
  border: 1px solid rgba(220,38,38,0.4) !important;
  color: #fca5a5 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  gap: 8px;
  margin-top: 4px;
}
.ec-emrg-link:hover { background: rgba(220,38,38,0.25) !important; color: #fff !important; }

.ec-contact-right {
  padding: 48px 44px;
  background: #fff;
}
.ec-contact-right h4 { font-size: 18px; font-weight: 800; color: var(--bh-dark, #0d2b1e); margin: 0 0 24px; }
.ec-contact-form { display: flex; flex-direction: column; gap: 14px; }
.ec-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ec-cf-group { display: flex; flex-direction: column; gap: 5px; }
.ec-cf-group label { font-size: 12px; font-weight: 700; color: var(--bh-dark, #0d2b1e); text-transform: uppercase; letter-spacing: 0.5px; }
.ec-cf-group input,
.ec-cf-group select,
.ec-cf-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--bh-border, #d1ece5);
  border-radius: 10px;
  font-size: 13px;
  color: var(--bh-text, #334155);
  background: var(--bh-bg, #f4fbf8);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: none;
}
.ec-cf-group input:focus,
.ec-cf-group select:focus,
.ec-cf-group textarea:focus { border-color: var(--bh-primary, #006E51); background: #fff; }
.ec-cf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--bh-primary, #006E51);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.ec-cf-btn:hover { background: #004f3a; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .ec-hero-swiper-wrap,
  .ec-hero-swiper,
  .ec-hero-swiper .swiper-wrapper,
  .ec-hero-swiper .swiper-slide { height: 460px; }
  .ec-about .bh-container { grid-template-columns: 1fr; }
  .ec-about-visual { grid-column: 1; }
  .ec-about-feature-cards { grid-template-columns: 1fr 1fr; }
  .ec-seg-stack { grid-template-columns: 1fr 1fr; }

  /* ── Responsive single nav ── */
  .ec-hamburger { display: flex; }
  .ec-emergency-badge { display: none; }
  .ec-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    border-top: 3px solid var(--bh-primary, #006E51);
    box-shadow: 0 8px 32px rgba(0,110,81,0.15);
    padding: 6px 0 14px;
    z-index: 999;
  }
  .ec-nav.ec-nav--open { display: flex; }
  .ec-nav-list { flex-direction: column; width: 100%; gap: 0; }
  .ec-nav-item { width: 100%; border-bottom: 1px solid var(--bh-border, #d1ece5); }
  .ec-nav-item:last-child { border-bottom: none; }
  .ec-nav-link { padding: 13px 20px; border-radius: 0; justify-content: space-between; }
  .ec-nav-item:hover > .ec-nav-link { background: none; color: var(--bh-text, #334155); }
  .ec-nav-item > .ec-nav-link:hover { background: var(--bh-accent-light, #e0f4ef); color: var(--bh-primary, #006E51); }
  .ec-nav-dropdown {
    display: none;
    position: static;
    border: none; border-top: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0; min-width: 0;
    animation: none;
    background: var(--bh-bg, #f4fbf8);
  }
  .ec-nav-item:hover > .ec-nav-dropdown { display: none; }
  .ec-nav-item.ec-open > .ec-nav-dropdown { display: block; }
  .ec-nav-has-sub:hover > .ec-nav-subdropdown { display: none !important; }
  .ec-nav-has-sub.ec-open > .ec-nav-subdropdown { display: block !important; }
  .ec-nav-subdropdown { position: static; left: auto; top: auto; border-top: none !important; }
  .ec-nav-dropdown li a { padding: 10px 20px 10px 36px; }
  .ec-nav-subdropdown li a { padding: 10px 20px 10px 52px; }

  /* Hamburger → X animation */
  .ec-hamburger.ec-nav--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .ec-hamburger.ec-nav--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .ec-hamburger.ec-nav--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
@media (max-width: 768px) {
  .ec-hero-swiper-wrap,
  .ec-hero-swiper,
  .ec-hero-swiper .swiper-wrapper,
  .ec-hero-swiper .swiper-slide { height: 380px; }
  .ec-hero-content h1 { font-size: 28px; letter-spacing: -0.5px; }
  .ec-hero-sub { font-size: 14px; }
  .ec-hero-btns { flex-direction: column; gap: 10px; }
  .ec-hero-btns a { width: 100%; justify-content: center; }
  .ec-hero-price-strip { flex-wrap: wrap; gap: 8px; }
  .ec-stats-inner { grid-template-columns: repeat(2,1fr); }
  .ec-seg-stack { grid-template-columns: 1fr; }
  .ec-why-grid { grid-template-columns: 1fr; }
  .ec-contact-card { grid-template-columns: 1fr; }
  .ec-cf-row { grid-template-columns: 1fr; }
  .ec-about-feature-cards { grid-template-columns: 1fr; }
  .ec-cz-wrap { display: none; }
  .ec-svc-row { padding: 14px 16px; gap: 12px; transform: none !important; }
  .ec-svc-num { display: none; }
  .ec-svc-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }
  .ec-svc-info strong { font-size: 14px; }
  .ec-svc-info p { font-size: 12.5px; }
  .ec-svc-arr { display: none; }
  .ec-services-head h2 { font-size: 26px; }
  .ec-services-head h2, .ec-segments-head h2, .ec-why-head h2 { font-size: 24px; }
  .ec-cta-inner h2 { font-size: 26px; }
  .ec-cta-btns { flex-direction: column; align-items: center; }
  .ec-cta-btns a { width: 100%; justify-content: center; }
  .ec-about { padding: 60px 0; }
  .ec-services, .ec-segments, .ec-why, .ec-contact, .ec-cta { padding: 60px 0; }
}
@media (max-width: 480px) {
  .ec-hero-swiper-wrap,
  .ec-hero-swiper,
  .ec-hero-swiper .swiper-wrapper,
  .ec-hero-swiper .swiper-slide { height: 300px; }
  .ec-hero-content h1 { font-size: 24px; }
  .ec-hero-chip { font-size: 10px; padding: 5px 12px; }
  .ec-hero-btns a { padding: 10px 18px; font-size: 13px; }
  .ec-stats-inner { grid-template-columns: 1fr 1fr; }
  .ec-stat-cell { padding: 20px 12px; }
  .ec-stat-num { font-size: 24px; }
  .ec-contact-left, .ec-contact-right { padding: 28px 20px; }
  .ec-cf-btn { width: 100%; justify-content: center; }
  .bh-ticker-label { padding: 0 10px; font-size: 10px; }
  .bh-tick-item { font-size: 11px; padding: 0 14px; }
}
