/* =============================================================
   Bhanoo Charitable Trust – Main Stylesheet
   Source: index.html (exact match)
   ============================================================= */

:root {
  --blue:      #0b3d91;
  --blue-dark: #08306b;
  --green:     #1a9e4a;
  --orange:    #f5821f;
  --purple:    #7b3fbf;
  --teal:      #17a2a8;
  --text:      #1c2530;
  --muted:     #6b7684;
  --border:    #e6e9ee;
  --bg-soft:   #eef4ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  padding-bottom: 58px; /* space for sticky CTA bar */
  overflow-x: hidden;
}

a { text-decoration: none !important; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons — override parent theme completely ───────────── */
.btn,
.btn:hover,
.btn:focus,
.btn:visited,
.btn:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: filter .2s, transform .15s;
  box-shadow: none;
  outline: none;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-green         { background: var(--green);  color: #fff !important;           border-color: var(--green) !important; outline: none !important; box-shadow: none !important; }
.btn-outline-green { background: #fff;           color: var(--green) !important;   border-color: var(--green); }
.btn-outline-blue  { background: #fff;           color: var(--blue) !important;    border-color: var(--blue); }
.btn-blue          { background: var(--blue);    color: #fff !important;           border-color: var(--blue); }
.btn-orange        { background: var(--orange);  color: #fff !important;           border-color: var(--orange); }
.btn-orange       { background: var(--orange); color: #fff; }

/* ── HEADER ───────────────────────────────────────────────── */
.bhanoo-header {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.bhanoo-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand / Logo */
.brand { display: flex; align-items: center; gap: 14px; }
.logo-circle {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: none !important;
  border: none !important;
  border-radius: 0;
}
.logo-circle img { width: 100%; height: 100%; object-fit: contain; background: none; }
.logo-circle .heart { color: var(--blue); font-size: 20px; }

.brand-text .title   { font-weight: 800; color: var(--blue); font-size: 19px; letter-spacing: .3px; line-height: 1.1; }
.brand-text .subtitle{ font-weight: 800; color: #1a1a2e; font-size: 19px; line-height: 1.1; }
.brand-text .tagline { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* Custom logo support */
.brand .custom-logo-link img { width: 56px; height: 56px; object-fit: contain; border-radius: 0; background: none !important; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 18px; }
.donate-heart { color: #fff !important; font-style: normal; }
.header-actions .btn {
  flex-direction: row !important;
  padding: 12px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  min-height: unset !important;
  min-width: unset !important;
  border-radius: 8px !important;
  gap: 8px !important;
  letter-spacing: 0.5px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.hamburger { font-size: 22px; color: #333; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-menu { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: inline; }

/* Desktop nav */
.bhanoo-nav-desktop { display: none; }
@media (min-width: 992px) {
  .bhanoo-nav-desktop { display: flex; align-items: center; }
  .bhanoo-nav-desktop ul { display: flex; gap: 26px; list-style: none; }
  .bhanoo-nav-desktop ul li a {
    font-size: 14px; font-weight: 600; color: var(--text);
    position: relative; padding-bottom: 2px;
  }
  .bhanoo-nav-desktop ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--green); transition: width .25s;
  }
  .bhanoo-nav-desktop ul li:hover > a::after,
  .bhanoo-nav-desktop ul li.current-menu-item > a::after { width: 100%; }
  .hamburger { display: none; }
}

/* Mobile drawer */
.bhanoo-nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  z-index: 998;
}
.bhanoo-nav-mobile.open { display: block; }
.bhanoo-nav-mobile ul { list-style: none; }
.bhanoo-nav-mobile ul a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: url('../images/background-home.png') center center / cover no-repeat;
  padding-top: 0;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
}

/* Dissolve container so children become direct hero grid items */
.hero > .container {
  display: contents;
}

.hero-copy {
  padding: 40px 40px 40px max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.hero h1 { font-size: 42px; line-height: 1.2; font-weight: 800; color: #111; }
.hero h1 .accent { color: var(--blue); }
.hero p { margin-top: 16px; color: var(--muted); font-size: 16px; max-width: 460px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 8px; margin-top: 20px; flex-wrap: nowrap; align-items: center; }

/* Hero buttons: icon LEFT + text RIGHT — horizontal compact */
.btn-hero {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 9px 12px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  width: auto !important;
  text-align: left;
  border-radius: 8px !important;
  flex: 1 1 0;
  text-decoration: none !important;
  border-width: 2px !important;
}
.btn-hero .btn-icon {
  font-size: 16px;
  line-height: 1;
  display: block;
  flex-shrink: 0;
}
.btn-hero .btn-text {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .3px;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
  text-decoration: none !important;
}

/* Image column – flush top to bottom, right edge */
.hero-image-wrap {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-image-wrap img {
  width: 100%;
  flex: 1;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  display: block;
}

/* Founder badge overlaid on image bottom */
.founder-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  background: rgba(11, 61, 145, 0.95);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.founder-badge .role { font-weight: 400; font-size: 12px; opacity: .75; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-wrap { margin-top: 10px; }
.stats {
  background: var(--blue);
  border-radius: 16px;
}
.stats .inner { padding: 30px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  color: #fff;
}
.stats-grid .stat-icon  { margin-bottom: 10px; }
.stats-grid .stat-icon svg { width: 32px; height: 32px; display: block; margin: 0 auto; color: #fff; stroke: #fff; fill: none; }
.stats-grid .stat-num   { font-size: 22px; font-weight: 800; }
.stats-grid .stat-label { font-size: 13px; opacity: .9; margin-top: 2px; }

/* ── SECTION BASE ─────────────────────────────────────────── */
.section { padding: 56px 0; }

/* Hide WordPress page title on front page */
.page-title, .entry-title, h1.entry-title,
.page .entry-header, .front-page .entry-header { display: none !important; }

/* Remove gap between header and hero */
.page-content, .entry-content, .entry, article.page,
.site-main, main#primary, main.site-main,
.elementor-section-wrap, .elementor,
body .page > .site-content,
.hfeed .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.hero { margin-top: 0 !important; }
/* Remove Hello Elementor default page padding */
.page-template-default .entry-content,
.page .entry-content { padding: 0 !important; margin: 0 !important; }

.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h2 {
  font-size: 26px; font-weight: 800;
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  white-space: nowrap;
}
.section-heading h2::before,
.section-heading h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--blue));
  max-width: 80px;
}
.section-heading h2::after {
  background: linear-gradient(to left, transparent, var(--blue));
}
/* Heart below heading */
.section-heading::after {
  content: "\2665";
  display: block;
  color: var(--blue);
  font-size: 14px;
  margin-top: 6px;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow .25s, transform .2s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px; color: #fff;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 14px; }
.service-card ul { text-align: left; font-size: 14px; color: #444; }
.service-card ul li { margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.service-card ul li::before { content: "✔"; color: var(--green); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* ── SPONSOR A PATIENT ────────────────────────────────────── */
.sponsor-section { background: var(--bg-soft); }

.sponsor-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 30px; flex-wrap: wrap; gap: 8px;
}
.sponsor-header h2  { font-size: 24px; font-weight: 800; color: var(--blue-dark); }
.sponsor-header .view-all { color: var(--blue); font-weight: 700; font-size: 14px; }

.patients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.patient-card {
  background: #fff;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .2s;
}
.patient-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.1); transform: translateY(-3px); }

.patient-photo { position: relative; height: 180px; }
.patient-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.patient-photo-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #e8eefb, #dde9ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}

.tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: .4px; text-transform: uppercase;
}
.tag.urgent  { background: var(--orange); }
.tag.child   { background: var(--green); }
.tag.eye     { background: var(--purple); }

.patient-body { padding: 16px 18px; }
.patient-body .name    { font-weight: 800; color: var(--blue-dark); font-size: 16px; }
.patient-body .meta    { font-size: 13px; color: var(--muted); margin-top: 2px; }
.patient-body .surgery { font-weight: 700; margin-top: 8px; font-size: 14px; }
.patient-body .required{ font-size: 13px; color: var(--muted); margin-top: 6px; }
.patient-body .amount  { color: var(--orange); font-weight: 800; font-size: 16px; }

.progress-row {
  display: flex; justify-content: space-between;
  font-size: 13px; margin-top: 12px; color: #333;
}
.progress-bar { height: 8px; background: #e6e9ee; border-radius: 6px; margin-top: 6px; overflow: hidden; }
.progress-bar .fill { height: 100%; background: var(--green); border-radius: 6px; transition: width 1.2s ease; }

.patient-body .btn { width: 100%; margin-top: 14px; }
.verified { text-align: center; font-size: 12px; color: var(--green); margin-top: 10px; }

/* ── UPCOMING CAMPS ───────────────────────────────────────── */
.camps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.camp-card {
  border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow .25s, transform .2s;
}
.camp-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.camp-date {
  width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 800;
}
.camp-date .day   { font-size: 18px; line-height: 1; }
.camp-date .month { font-size: 11px; text-transform: uppercase; }
.camp-card h4     { font-weight: 700; font-size: 15px; color: var(--blue-dark); }
.camp-card .loc,
.camp-card .time  { font-size: 13px; color: var(--muted); margin-top: 4px; }
.camp-card .btn   { margin-top: 12px; font-size: 12px; padding: 8px 16px; }

/* ── HEALING / ABOUT ──────────────────────────────────────── */
.healing-section { background: #f0f5ff; padding: 0; }

/* Remove Elementor container padding around healing section */
.elementor-element-f6b3150,
.elementor-element-8c35db2 {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.elementor-element-8c35db2 .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Parent container — override e-con-boxed to full width for healing section */
.elementor-element-2596443 {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.elementor-element-2596443 > .e-con-inner {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

/* New grid layout — full width, no container */
.healing-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

/* Image column — flush left, no radius */
.healing-img-col { position: relative; }
.healing-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.healing-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Stat pills overlaid on image */
.healing-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  width: calc(100% - 32px);
  justify-content: center;
  flex-wrap: wrap;
}
.healing-stat-pill {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  min-width: 90px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  flex: 1;
}
.hsp-num   { display: block; font-size: 18px; font-weight: 800; color: var(--blue); line-height: 1; }
.hsp-label { display: block; font-size: 10px; color: var(--muted); margin-top: 3px; font-weight: 600; }

/* Text column — padded right side */
.healing-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px max(40px, calc((100vw - 1200px) / 2 + 40px)) 60px 60px;
  justify-content: center;
  background: #fff;
}
.healing-tag {
  font-size: 13px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 1px;
}
.healing-title {
  font-size: 36px; font-weight: 800; color: var(--blue-dark);
  line-height: 1.2;
}
.healing-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }

.healing-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.healing-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); font-weight: 500;
}
.hl-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

.healing-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Legacy healing-grid (old HTML widget) */
.healing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0; align-items: stretch;
  border-radius: 16px; overflow: hidden;
}
.healing-text {
  background: #fff; padding: 30px 34px;
  display: flex; flex-direction: column; justify-content: center;
}
.healing-text h3 { font-size: 20px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; }
.healing-text p  { color: var(--muted); font-size: 14px; }
.healing-text .link {
  color: var(--blue); font-weight: 700;
  margin-top: 14px; display: inline-block; font-size: 14px;
}

/* ── PATIENT CARD — no-image placeholder ───────────────────── */
.patient-card-img.no-img {
  min-height: 180px;
  background: linear-gradient(135deg, #dde9ff 0%, #c8d8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.patient-card-img.no-img::after {
  content: "🏥";
  font-size: 48px;
  opacity: .5;
}

/* ── FOOTER CTA BAR (sticky bottom, design-exact) ─────────── */
.bhanoo-cta-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 -2px 14px rgba(0,0,0,.2);
}
.bhanoo-cta-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: #fff; font-weight: 700; font-size: 13px;
  padding: 16px 8px; transition: filter .2s;
  border-right: 1px solid rgba(255,255,255,.15);
  white-space: nowrap;
  text-align: center;
}
.bhanoo-cta-bar a:last-child { border-right: none; }
.bhanoo-cta-bar a:hover { filter: brightness(1.1); color: #fff; }
.bhanoo-cta-bar .fb1 { background: var(--green); }
.bhanoo-cta-bar .fb2 { background: var(--blue); }
.bhanoo-cta-bar .fb3 { background: var(--orange); }
.bhanoo-cta-bar .fb4 { background: #25c058; }

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet (768–900px) */
@media (max-width: 900px) {
  /* Header: logo smaller, text compact */
  .logo-circle { width: 44px; height: 44px; }
  .brand .custom-logo-link img { width: 44px; height: 44px; }
  .brand-text .title   { font-size: 15px; }
  .brand-text .subtitle{ font-size: 15px; }
  .brand-text .tagline { font-size: 11px; }
  .header-actions .btn { padding: 9px 14px !important; font-size: 12px !important; }

  /* Hero: keep 2-col (text left, image right) on tablet/mobile */
  .hero { padding: 0; grid-template-columns: 1fr 1fr; min-height: 420px; }
  .hero-copy        { padding: 28px 16px 28px 20px; }
  .hero h1          { font-size: 22px; }
  .hero p           { font-size: 13px; max-width: 100%; }
  .hero-buttons { gap: 6px; margin-top: 14px; flex-wrap: wrap; }
  .hero-buttons .btn-hero {
    flex-direction: row !important;
    padding: 7px 10px !important;
    gap: 5px !important;
    border-radius: 8px !important;
    flex: 0 0 auto !important;
  }
  .hero-buttons .btn-hero .btn-icon { font-size: 14px !important; }
  .hero-buttons .btn-hero .btn-text {
    font-size: 9px !important;
    white-space: normal;
    line-height: 1.2;
  }
  .hero-image-wrap img { object-position: top center; }
  .founder-badge    { font-size: 11px; padding: 8px 12px; bottom: 10px; width: calc(100% - 20px); border-radius: 10px; white-space: normal; }

  /* Stats */
  .stats-wrap        { padding: 0; margin-top: 0; }
  .stats             { border-radius: 0; }
  /* Stats: all 6 in one row on mobile */
  .stats-grid        { grid-template-columns: repeat(6,1fr); gap: 0; }
  .stats-grid > div  { padding: 6px 4px; }
  .stats-grid .stat-icon svg { width: 22px; height: 22px; }
  .stats-grid .stat-num   { font-size: 13px; }
  .stats-grid .stat-label { font-size: 9px; }
  .stats .inner      { padding: 16px 8px; }

  /* Layout grids */
  .services-grid       { grid-template-columns: repeat(2,1fr); }
  .patients-grid       { grid-template-columns: 1fr; }
  .camps-grid          { grid-template-columns: 1fr; }
  .healing-grid        { grid-template-columns: 1fr; }
  .healing-grid-new    { grid-template-columns: 1fr; }
  .healing-img-wrap img{ min-height: 280px; height: 280px; }
  .healing-title       { font-size: 26px; }
  .healing-text-col    { padding: 40px 24px; }
  .healing-actions .btn{ flex: 1; justify-content: center; }

  /* CTA bar: 2x2 on tablet */
  .bhanoo-cta-bar    { grid-template-columns: repeat(4,1fr); height: auto; }
  .bhanoo-cta-bar a  { padding: 10px 4px; font-size: 9px; gap: 3px; flex-direction: column; white-space: nowrap; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .logo-circle { width: 42px; height: 42px; }
  .brand .custom-logo-link img { width: 42px; height: 42px; }
  .brand { gap: 10px; }
  .brand-text .title    { font-size: 14px; }
  .brand-text .subtitle { font-size: 14px; }
  .brand-text .tagline  { font-size: 11px; display: block; } /* keep tagline visible */

  /* Hero: 2-col maintained on small phones */
  .hero { grid-template-columns: 1fr 1fr; min-height: 360px; }
  .hero h1 { font-size: 18px; }
  .hero p  { font-size: 11px; }
  .hero-copy { padding: 16px 8px 16px 14px; }
  .hero-buttons { gap: 5px !important; margin-top: 10px; flex-wrap: wrap; }
  .hero-buttons .btn-hero {
    flex-direction: row !important;
    padding: 6px 8px !important;
    gap: 4px !important;
  }
  .hero-buttons .btn-hero .btn-icon { font-size: 12px !important; }
  .hero-buttons .btn-hero .btn-text { font-size: 8px !important; }

  /* Stats: full-width edge to edge */
  .stats-wrap { padding: 0; margin-top: 0; }
  .stats      { border-radius: 0; }
  .stats-grid { grid-template-columns: repeat(6,1fr); gap: 0; }
  .stats-grid > div { padding: 8px 3px; }
  .stats-grid .stat-num   { font-size: 11px; }
  .stats-grid .stat-label { font-size: 8px; }
  .stats-grid .stat-icon svg { width: 18px; height: 18px; }
  .stats .inner { padding: 12px 4px; }

  .services-grid { grid-template-columns: 1fr; }
  .section       { padding: 36px 0; }

  /* CTA bar: 4 in a row */
  .bhanoo-cta-bar   { grid-template-columns: repeat(4,1fr); }
  .bhanoo-cta-bar a { padding: 8px 2px; font-size: 8px; letter-spacing: 0; flex-direction: column; gap: 2px; white-space: nowrap; }
}

/* ── GiveWP overrides ─────────────────────────────────────── */
.give-wrap .give-submit {
  background: var(--green) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}
.give-form .give-btn-level-active {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
