:root{
  /* Brand palette derived from your logo */
  --hb-green: #1F4D3A;
  --hb-green-2: #3E7C59;
  --hb-gold: #C9A24D;
  --hb-gold-2:#E6D3A3;

  --hb-ink:  #0F172A;
  --hb-text: #1F2937;
  --hb-muted:#6B7A71;

  --hb-bg:   #F6F4EE;
  --hb-card: #FFFFFF;
  --hb-line: #D8E1DA;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(16,24,40,.10);
  --shadow-sm: 0 10px 30px rgba(16,24,40,.08);
}

* { font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
body { background: var(--hb-bg); color: var(--hb-text); }
.container { max-width: 1180px; }

/* Brand logo polish */
.brand-logo{ border-radius:10px; }

/* Premium buttons */
.btn-hb{
  background: linear-gradient(135deg, var(--hb-green), var(--hb-green-2));
  color:#fff; border:0;
  box-shadow: 0 14px 30px rgba(31,77,58,.22);
  border-radius: 999px;
  padding: .9rem 1.25rem;
  font-weight: 700;
}
.btn-hb:hover{ filter: brightness(1.03); color:#fff; }

.btn-hb-outline{
  border-radius: 999px;
  border: 1.5px solid rgba(31,77,58,.35);
  color: var(--hb-green);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  padding: .9rem 1.25rem;
  font-weight: 700;
}
.btn-hb-outline:hover{
  background: rgba(31,77,58,.08);
  color: var(--hb-green);
}

/* =========================
   TOPBAR (Premium)
========================= */
.topbar--premium{
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.78),
    rgba(255,255,255,.62)
  );
  border-bottom: 1px solid rgba(216,225,218,.75);
  backdrop-filter: blur(14px);
}

.topbar--premium .topbar__item{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .30rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(216,225,218,.7);
}

.topbar--premium .topbar__icon{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  flex: 0 0 auto;
}

.topbar--premium .topbar__text{
  color: #42504a;
  font-weight: 700;
  letter-spacing: .01em;
  font-size: .86rem;
}

.topbar--premium .topbar__dot{
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(31,77,58,.35);
  margin: 0 .15rem;
}

.topbar--premium .topbar__link{
  text-decoration: none;
}

.topbar--premium .topbar__link:hover{
  background: rgba(31,77,58,.06);
  border-color: rgba(31,77,58,.22);
}

.social-pill{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(216,225,218,.7);
  color: #41524a;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.social-pill:hover{
  transform: translateY(-1px);
  background: rgba(31,77,58,.08);
  border-color: rgba(31,77,58,.22);
  color: var(--hb-green);
}

/* Mobile polish: compact topbar */
@media (max-width: 576px){
  .topbar--premium .topbar__item{
    padding: .25rem .45rem;
  }
  .topbar--premium .topbar__text{
    font-size: .82rem;
  }
}


/* ======================================================
   NAVBAR – PREMIUM + LARGE READABLE LOGO (FINAL)
====================================================== */

.navbar-premium{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216,225,218,.9);
  transition: box-shadow .25s ease, background .25s ease;
  z-index: 999;
}

/* ---------- LOGO CONTAINER (VERY IMPORTANT) ---------- */
/* This ensures circular logo is BIG and readable */
.logo-badge{
  width: 86px;              /* BIG container */
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;     /* solid background so logo pops */
  border-radius: 18px;     /* premium rounded square */

  border: 1px solid rgba(216,225,218,.9);
  box-shadow:
    0 12px 30px rgba(16,24,40,.18),
    inset 0 0 0 1px rgba(255,255,255,.7);
}

/* ---------- ACTUAL LOGO IMAGE ---------- */
.navbar-logo{
  width: 72px;              /* LARGE LOGO */
  height: 72px;
  object-fit: contain;      /* NEVER crop logo */
  border-radius: 999px;     /* keep logo circular */
}

/* Prevent Bootstrap from shrinking brand */
.navbar-brand{
  padding: 0;
  margin-right: 1.5rem;
}

/* ---------- NAV LINKS ---------- */
.navbar-premium .nav-link{
  position: relative;
  font-weight: 800;
  font-size: .95rem;
  color: #334155;
  padding: .7rem 1.1rem;
  transition: color .2s ease;
}

.navbar-premium .nav-link:hover{
  color: var(--hb-green);
}

/* Underline hover effect */
.navbar-premium .nav-link::after{
  content:"";
  position:absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: .3rem;
  height: 2px;
  background: var(--hb-green);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform .25s ease;
}

.navbar-premium .nav-link:hover::after{
  transform: scaleX(1);
}

/* ---------- CTA BUTTON ---------- */
.btn-hb-nav{
  padding: .75rem 1.45rem;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(31,77,58,.32);
}

/* ---------- SCROLL SHADOW ---------- */
.navbar-premium.scrolled{
  box-shadow: 0 18px 44px rgba(16,24,40,.18);
}

/* ======================================================
   MOBILE OPTIMIZATION
====================================================== */
@media (max-width: 991px){

  .navbar-premium .navbar-collapse{
    padding: 1rem 0;
  }

  .navbar-premium .nav-link{
    padding: .9rem 0;
    font-size: 1rem;
  }

  .btn-hb-nav{
    width: 100%;
    margin-top: .5rem;
  }

  /* Slightly smaller but still readable on mobile */
  .logo-badge{
    width: 74px;
    height: 74px;
  }

  .navbar-logo{
    width: 60px;
    height: 60px;
  }
}


/* ======================================================
   HERO – Premium
====================================================== */
.hero--premium{
  position: relative;
  padding: 110px 0 86px;
  overflow: hidden;
  color: #fff;
}

/* Background layers */
.hero--premium .hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 15% 20%, rgba(201,162,77,.35), transparent 60%),
    radial-gradient(900px 380px at 85% 30%, rgba(62,124,89,.38), transparent 58%),
    linear-gradient(120deg, rgba(31,77,58,.86), rgba(15,23,42,.62)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Soft glow blobs */
.hero__glow{
  position:absolute;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
}
.hero__glow--a{
  width: 420px; height: 420px;
  left: -140px; top: -120px;
  background: rgba(201,162,77,.55);
}
.hero__glow--b{
  width: 520px; height: 520px;
  right: -200px; top: 80px;
  background: rgba(62,124,89,.55);
}

/* Premium badge */
.hero-badge--premium{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(230,211,163,.38);
  backdrop-filter: blur(10px);
  font-weight: 800;
  color: rgba(255,255,255,.92);
}
.hero-badge__icon{
  width: 28px; height: 28px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(201,162,77,.18);
  border: 1px solid rgba(230,211,163,.28);
}

/* Title */
.hero__title{
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
  margin: 0;
  text-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.hero__title-accent{
  color: rgba(230,211,163,.95);
}

/* Lead */
.hero__lead{
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(255,255,255,.86);
}

/* CTA adjustments */
.btn-hb-hero{
  padding: .95rem 1.35rem;
  box-shadow: 0 18px 45px rgba(31,77,58,.30);
}
.btn-hb-outline-hero{
  padding: .95rem 1.35rem;
  border-color: rgba(230,211,163,.38);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
}
.btn-hb-outline-hero:hover{
  background: rgba(255,255,255,.16);
  color: #fff;
}

/* Stats */
.stat-pill--premium{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(230,211,163,.22);
  backdrop-filter: blur(10px);
  padding: .85rem 1.05rem;
  min-width: 150px;
}
.stat-number{
  font-size: 1.45rem;
  line-height: 1.05;
  color: rgba(255,255,255,.95);
}
.stat-pill--premium small{
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

/* Trust mini-row */
.hero__trust{
  display:flex;
  flex-wrap: wrap;
  gap: .9rem 1.2rem;
}
.hero__trust-item{
  display:inline-flex;
  align-items:center;
  gap: .55rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .88rem;
}
.hero__trust-item i{ color: rgba(230,211,163,.95); }

/* Premium glass card */
.glass--premium{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

/* Inputs */
.form-label-hero{
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .85rem;
}
.input-hero{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(216,225,218,.85);
  border-radius: 16px;
}
.input-hero:focus{
  border-color: rgba(201,162,77,.55);
  box-shadow: 0 0 0 .22rem rgba(201,162,77,.18);
}

.badge-pill{
  border-radius: 999px !important;
  padding: .45rem .7rem;
}

.btn-hb-hero-submit{
  border-radius: 16px;
  padding: .9rem 1.05rem;
}

.hero-form-foot{
  display:flex;
  align-items:center;
  gap: .55rem;
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: .88rem;
}

/* Mobile spacing */
@media (max-width: 991px){
  .hero--premium{
    padding: 92px 0 70px;
  }
  .stat-pill--premium{
    min-width: 140px;
  }
}


/* Sections */
.section{ padding: 82px 0; }
.section-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.section-sub{ color: var(--hb-muted); max-width: 740px; }

.section-white{
  background:#fff;
  border-top:1px solid rgba(216,225,218,.85);
  border-bottom:1px solid rgba(216,225,218,.85);
}

/* Cards */
.hb-card{
  background: var(--hb-card);
  border: 1px solid rgba(216,225,218,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.hb-card:hover{ transform: translateY(-2px); transition: .25s ease; }

.hb-card-flat{ box-shadow:none !important; }

.icon-chip{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.15);
  color: var(--hb-green);
  font-size: 1.2rem;
}

.img-round{ border-radius: var(--radius); box-shadow: var(--shadow); }

.fw-black{ font-weight: 900; }

/* Programs */
.program-img{ height: 210px; object-fit: cover; width: 100%; }
.program-badge{
  position:absolute; top:14px; left:14px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(216,225,218,.8);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--hb-green);
  font-size: .82rem;
}

.badge-soft{
  background: rgba(255,255,255,.88) !important;
  border: 1px solid rgba(216,225,218,.9) !important;
}

/* ======================================================
   TRUST STRIP – Premium
====================================================== */
.trust-strip--premium{
  position: relative;
  background: transparent;
}

/* Premium container */
.trust-strip__inner{
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.78),
    rgba(255,255,255,.62)
  );
  border: 1px solid rgba(216,225,218,.85);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 16px 40px rgba(16,24,40,.10);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

/* Thin premium gradient line on top */
.trust-strip__inner::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,162,77,.0), rgba(201,162,77,.8), rgba(31,77,58,.85), rgba(201,162,77,.0));
  opacity: .9;
}

/* Left title group */
.trust-title{
  display:flex;
  align-items:flex-start;
  gap: .75rem;
}
.trust-title__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.16);
  color: var(--hb-green);
  font-size: 1.2rem;
  flex: 0 0 auto;
}
.trust-title__text{
  color: var(--hb-ink);
  letter-spacing: -0.02em;
}
.trust-title__sub{
  color: var(--hb-muted) !important;
  font-weight: 700;
}

/* Meta row */
.trust-meta{
  display:flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items:center;
  color: #475569;
}
.trust-meta__item{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-weight: 800;
  font-size: .88rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(216,225,218,.75);
}
.trust-meta__item i{
  color: var(--hb-green);
}
.trust-meta__sep{
  width: 5px; height: 5px;
  border-radius: 999px;
  background: rgba(31,77,58,.30);
  display:inline-block;
}

/* Premium pills on right */
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(216,225,218,.85);
  color: #334155;
  font-weight: 900;
  font-size: .88rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.trust-pill i{
  color: var(--hb-green);
}
.trust-pill:hover{
  transform: translateY(-1px);
  background: rgba(31,77,58,.06);
  border-color: rgba(31,77,58,.22);
}

/* Optional partner dots row */
.partner-row{
  display:flex;
  align-items:center;
  gap: .55rem;
  opacity: .85;
}
.partner-dot{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,.70);
  border: 1px dashed rgba(107,122,113,.45);
}
.partner-text{
  font-size: .82rem;
  font-weight: 800;
  color: var(--hb-muted);
  margin-left: .25rem;
}

/* Mobile polish */
@media (max-width: 991px){
  .trust-strip__inner{
    padding: 16px;
  }
  .partner-row{
    justify-content: flex-start !important;
  }
}


/* Timeline */
.timeline-step{ display:flex; gap:14px; }
.timeline-dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--hb-gold);
  margin-top: 7px;
  box-shadow: 0 0 0 6px rgba(201,162,77,.18);
  flex: 0 0 auto;
}
.timeline-line{
  border-left: 2px dashed rgba(201,162,77,.45);
  padding-left: 22px;
  margin-left: 5px;
}

/* CTA band */
.cta{
  background: radial-gradient(1200px 450px at 20% 10%, rgba(201,162,77,.25), transparent 55%),
              radial-gradient(1200px 450px at 90% 30%, rgba(31,77,58,.25), transparent 55%),
              linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
  border-top: 1px solid rgba(216,225,218,.8);
  border-bottom: 1px solid rgba(216,225,218,.8);
}

/* Gallery */
.gallery img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(216,225,218,.7);
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}
.gallery img:hover{ transform: translateY(-3px); }

/* ======================================================
   FAQ – Premium
====================================================== */
.faq--premium{
  position: relative;
  overflow: hidden;
}

/* Different background than other sections */
.faq--premium .faq__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 15% 20%, rgba(31,77,58,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 30%, rgba(201,162,77,.10), transparent 58%),
    linear-gradient(180deg, #ffffff, #f7f8f5);
  pointer-events:none;
}

/* Left helper card */
.faq-side{
  background:#fff;
  border:1px solid rgba(216,225,218,.9);
  border-radius: 22px;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 16px 44px rgba(16,24,40,.10);
}
.faq-side__item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding: .85rem .9rem;
  border-radius: 16px;
  border: 1px solid rgba(216,225,218,.75);
  background: rgba(255,255,255,.85);
  margin-bottom: .75rem;
}
.faq-side__item i{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.16);
  color: var(--hb-green);
}

/* Accordion container */
.faq-card{
  background:#fff;
  border:1px solid rgba(216,225,218,.9);
  border-radius: 26px;
  padding: 1rem;
  box-shadow: 0 22px 60px rgba(16,24,40,.12);
}

/* Accordion items */
.faq-item{
  border: 0;
  border-radius: 18px !important;
  overflow:hidden;
  margin: .75rem 0;
  background: #fff;
  border: 1px solid rgba(216,225,218,.9);
}

/* Buttons */
.faq-btn{
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 1.05rem 1.05rem;
  color: #0f172a;
}
.faq-btn:hover{
  background: rgba(31,77,58,.04) !important;
}

/* remove default bootstrap arrow */
.faq-btn::after{
  background-image: none !important;
  transform: none !important;
  content: "\F282"; /* bootstrap icon chevron-down */
  font-family: bootstrap-icons !important;
  font-size: 1.05rem;
  color: var(--hb-green);
  font-weight: 900;
}

/* when open */
.faq-btn:not(.collapsed){
  color: var(--hb-green);
}
.faq-btn:not(.collapsed)::after{
  content: "\F286"; /* chevron-up */
  color: var(--hb-green);
}

/* question icon */
.faq-qicon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  margin-right: .75rem;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.16);
  color: var(--hb-green);
}

/* Body */
.faq-body{
  padding: 0 1.05rem 1.05rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.65;
}

/* Mobile */
@media (max-width: 991px){
  .faq-card{ padding: .8rem; }
  .faq-btn{ padding: .95rem; }
}


/* Small polish */
.kbd-sep{
  width: 4px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  display:inline-block; margin: 0 .55rem;
}

/* Misc helpers */
.metric{
  font-weight:900;
  font-size:1.6rem;
  color: var(--hb-green);
}
.stars{ color: var(--hb-gold); }
.hb-border{ border-color:rgba(216,225,218,.75)!important; }

.map-box{
  height:220px;
  border-radius:14px;
  border:1px dashed rgba(107,122,113,.45);
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.6);
}

/* ======================================================
   FOOTER – Professional (Clean, Institutional)
====================================================== */
.footer-pro{
  background: #0b2e1a;
  color: rgba(255,255,255,.82);
  padding: 4rem 0 1.5rem;
}

.footer-pro__brand{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.footer-pro__logo{
  height: 64px;
  width: auto;
  background:#fff;
  padding: 6px;
  border-radius: 14px;
}

.footer-pro__desc{
  margin-top: 1rem;
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  max-width: 420px;
}

.footer-pro__mini{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top: 1rem;
}
.footer-pro__pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .6rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.footer-pro__title{
  font-weight: 900;
  color:#fff;
  margin-bottom: .9rem;
  letter-spacing: -0.01em;
}

.footer-pro__links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-pro__links li{ margin-bottom: .55rem; }
.footer-pro__links a{
  text-decoration:none;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}
.footer-pro__links a:hover{
  color: var(--hb-gold);
}

/* Contact */
.footer-pro__contact{
  display:grid;
  gap:.75rem;
  margin-bottom: 1rem;
}
.footer-pro__contact-item{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
}
.footer-pro__contact-item i{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.footer-pro__label{
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  font-weight: 800;
}
.footer-pro__value{
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.80);
}

/* Social */
.footer-pro__social{
  display:flex;
  gap:.6rem;
  margin: .75rem 0 1rem;
}
.footer-pro__social a{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  transition: .2s ease;
}
.footer-pro__social a:hover{
  background: rgba(201,162,77,.18);
  border-color: rgba(201,162,77,.35);
  color: var(--hb-gold);
}

/* Updates */
.footer-pro__updates{
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.footer-pro__updates-title{
  font-weight: 900;
  color:#fff;
}
.footer-pro__updates-sub{
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  margin-top: .25rem;
}
.footer-pro__updates-form{
  display:flex;
  gap:.6rem;
  margin-top: .75rem;
}
.footer-pro__updates-form .form-control{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  border-radius: 12px;
}
.footer-pro__updates-form .form-control::placeholder{
  color: rgba(255,255,255,.55);
}

/* Divider & bottom */
.footer-pro__divider{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 2rem 0 1rem;
}
.footer-pro__bottom{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.85rem;
  color: rgba(255,255,255,.60);
}
.footer-pro__bottom-right{
  color: rgba(255,255,255,.55);
}

/* Mobile */
@media (max-width: 768px){
  .footer-pro{ padding: 3.2rem 0 1.2rem; }
  .footer-pro__logo{ height: 56px; }
  .footer-pro__updates-form{ flex-direction: column; }
  .footer-pro__updates-form .btn{ width: 100%; }
}



/* ======================================================
   ABOUT – Premium + Distinct Background
====================================================== */
.about--premium{
  position: relative;
  overflow: hidden;
}

/* Different background than trust strip */
.about--premium .about__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 500px at 20% 15%, rgba(62,124,89,.14), transparent 60%),
    radial-gradient(1000px 500px at 85% 25%, rgba(201,162,77,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55));
  pointer-events:none;
}

/* subtle pattern to separate visually */
.about--premium::after{
  content:"";
  position:absolute;
  inset:-20px;
  background-image: radial-gradient(rgba(31,77,58,.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .12;
  pointer-events:none;
}

/* Kicker */
.about-kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(216,225,218,.85);
  box-shadow: 0 10px 24px rgba(16,24,40,.08);
  font-weight: 900;
  color: var(--hb-green);
}
.about-kicker__icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.14);
}

/* Cards */
.about-card{
  display:flex;
  gap:.85rem;
  align-items:flex-start;
  padding: 1.1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 14px 36px rgba(16,24,40,.10);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  height: 100%;
}
.about-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.92);
  border-color: rgba(31,77,58,.22);
}
.about-card__icon{
  width: 46px;
  height: 46px;
  display:grid;
  place-items:center;
  border-radius: 16px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-size: 1.2rem;
  flex: 0 0 auto;
}
.about-card__title{
  font-weight: 900;
  color: var(--hb-ink);
  letter-spacing: -0.01em;
}
.about-card__sub{
  margin-top: .25rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--hb-muted);
}

/* Media layout */
.about-media{
  position: relative;
}

.about-media__main{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(16,24,40,.16);
  border: 1px solid rgba(216,225,218,.9);
}
.about-media__main img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1.02);
}

/* overlay gradient for premium depth */
.about-media__main::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.22));
  pointer-events:none;
}

/* Chips on image */
.about-chip{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.5rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 12px 28px rgba(16,24,40,.14);
  font-weight: 900;
  color: #334155;
  font-size: .88rem;
}
.about-chip i{ color: var(--hb-green); }
.about-chip--a{ left: 16px; bottom: 16px; }
.about-chip--b{ right: 16px; bottom: 16px; }

/* Grid images below */
.about-media__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.about-media__tile{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 18px 44px rgba(16,24,40,.10);
}
.about-media__tile img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .25s ease;
}
.about-media__tile:hover img{
  transform: scale(1.03);
}

/* Floating metric card */
.about-metric{
  position: absolute;
  left: 18px;
  top: 18px;
  display:flex;
  align-items:center;
  gap:.75rem;
  padding: .75rem .9rem;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 18px 44px rgba(16,24,40,.14);
}
.about-metric__num{
  font-weight: 950;
  font-size: 1.4rem;
  color: var(--hb-green);
  line-height: 1;
}
.about-metric__text .fw-black{ letter-spacing: -0.01em; }

/* Mobile */
@media (max-width: 991px){
  .about-media__main img{ height: 300px; }
  .about-metric{ position: static; margin-top: 12px; }
  .about-chip--a, .about-chip--b{ bottom: 12px; }
}

/* ======================================================
   LAND LEASING – Premium
====================================================== */
.leasing--premium{
  position: relative;
  overflow: hidden;
}

/* Background distinct from Programs */
.leasing--premium .leasing__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 80% 20%, rgba(31,77,58,.14), transparent 60%),
    radial-gradient(900px 420px at 10% 30%, rgba(201,162,77,.14), transparent 58%),
    linear-gradient(180deg, #f7f8f5, #ffffff);
  pointer-events:none;
}

/* Kicker */
.leasing-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.4rem .75rem;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(216,225,218,.9);
  font-weight:900;
  color: var(--hb-green);
  box-shadow: 0 10px 24px rgba(16,24,40,.08);
}

/* Benefits */
.leasing-benefits{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.leasing-benefit{
  display:flex;
  gap:.9rem;
  align-items:flex-start;
  padding:1.1rem 1.15rem;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(216,225,218,.9);
  box-shadow: 0 16px 42px rgba(16,24,40,.10);
  transition: transform .2s ease;
}
.leasing-benefit:hover{
  transform: translateY(-2px);
}
.leasing-benefit__icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background: rgba(31,77,58,.10);
  border:1px solid rgba(31,77,58,.16);
  color: var(--hb-green);
  font-size:1.15rem;
}
.leasing-benefit__title{
  font-weight:900;
  letter-spacing:-0.01em;
}
.leasing-benefit__desc{
  font-size:.92rem;
  font-weight:600;
  color: var(--hb-muted);
}

/* Process box */
.leasing-process{
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(216,225,218,.9);
  padding:1.6rem 1.6rem 1.8rem;
  box-shadow: 0 24px 64px rgba(16,24,40,.14);
}

/* Timeline */
.leasing-timeline{
  position: relative;
  padding-left: 26px;
}
.leasing-timeline::before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  bottom:0;
  width:2px;
  background: linear-gradient(
    180deg,
    rgba(201,162,77,.0),
    rgba(201,162,77,.7),
    rgba(31,77,58,.7),
    rgba(201,162,77,.0)
  );
}

.leasing-step{
  position:relative;
  display:flex;
  gap:1rem;
  padding-bottom:1.6rem;
}
.leasing-step:last-child{ padding-bottom:0; }

.leasing-step__dot{
  position:absolute;
  left:-26px;
  top:.25rem;
  width:14px;
  height:14px;
  border-radius:999px;
  background: var(--hb-green);
  box-shadow: 0 0 0 6px rgba(31,77,58,.18);
}

.leasing-step__title{
  font-weight:900;
}
.leasing-step__desc{
  font-size:.9rem;
  font-weight:600;
  color: var(--hb-muted);
}

/* Mobile */
@media (max-width: 991px){
  .leasing-process{
    padding:1.4rem;
  }
}


/* ======================================================
   IMPACT – Premium
====================================================== */
.impact--premium{
  position: relative;
  overflow: hidden;
}

/* Background – different from others */
.impact--premium .impact__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 450px at 20% 20%, rgba(201,162,77,.14), transparent 60%),
    radial-gradient(900px 450px at 80% 30%, rgba(31,77,58,.14), transparent 58%),
    linear-gradient(180deg, #ffffff, #f5f6f2);
  pointer-events:none;
}

/* Kicker */
.impact-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.4rem .75rem;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(216,225,218,.9);
  font-weight:900;
  color: var(--hb-green);
  box-shadow: 0 10px 24px rgba(16,24,40,.08);
}

/* Metric cards */
.impact-metric{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(216,225,218,.9);
  padding:1.3rem 1.4rem;
  box-shadow: 0 18px 48px rgba(16,24,40,.12);
}
.impact-metric__num{
  font-size:1.7rem;
  font-weight:950;
  letter-spacing:-0.01em;
  color: var(--hb-green);
}
.impact-metric__label{
  margin-top:.15rem;
  font-size:.9rem;
  font-weight:700;
  color: var(--hb-muted);
}

/* Small note */
.impact-note{
  display:flex;
  gap:.5rem;
  align-items:flex-start;
  font-size:.88rem;
  font-weight:700;
  color:#475569;
}
.impact-note i{
  color: var(--hb-green);
  margin-top:.15rem;
}

/* Right panel */
.impact-panel{
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(216,225,218,.9);
  padding:1.6rem 1.6rem 1.8rem;
  box-shadow: 0 26px 70px rgba(16,24,40,.14);
}
.impact-panel__head{
  border-bottom:1px solid rgba(216,225,218,.8);
  padding-bottom:.75rem;
}

/* Updates */
.impact-updates{
  display:grid;
  gap:1.1rem;
}
.impact-update{
  display:flex;
  gap:.9rem;
  align-items:flex-start;
}
.impact-update__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background: rgba(31,77,58,.10);
  border:1px solid rgba(31,77,58,.16);
  color: var(--hb-green);
  font-size:1.15rem;
  flex:0 0 auto;
}
.impact-update__title{
  font-weight:900;
}
.impact-update__desc{
  font-size:.9rem;
  font-weight:600;
  color: var(--hb-muted);
}

/* Mobile */
@media (max-width: 991px){
  .impact-panel{
    padding:1.4rem;
  }
}

/* ======================================================
   GALLERY – Premium Uniform Grid
====================================================== */
.gallery--uniform{
  background: linear-gradient(180deg, #ffffff, #f7f8f5);
}

/* Uniform item */
.gallery-item{
  height: 220px; /* SAME HEIGHT FOR ALL */
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 14px 36px rgba(16,24,40,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* CRITICAL */
  transition: transform .35s ease;
}

.gallery-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(16,24,40,.18);
}

.gallery-item:hover img{
  transform: scale(1.06);
}

/* Modal */
.gallery-modal{
  background: transparent;
  border: none;
  box-shadow: none;
}

.gallery-modal img{
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  background: #000;
}

/* Close button */
.gallery-close{
  position: absolute;
  top: -40px;
  right: 0;
  filter: invert(1);
  opacity: .9;
}

/* Mobile */
@media (max-width: 576px){
  .gallery-item{
    height: 180px;
  }
}

/* ======================================================
   TESTIMONIALS & PARTNERS – PREMIUM
====================================================== */

.section-soft{
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f3 100%);
}

/* Eyebrow */
.section-eyebrow{
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hb-green);
  margin-bottom: .4rem;
}

/* Testimonials */
.testimonial-stack{
  display: grid;
  gap: 1.2rem;
}

.testimonial-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 14px 40px rgba(16,24,40,.10);
}

.testimonial-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}

.testimonial-role{
  font-weight: 800;
  color: #0f172a;
}

.testimonial-text{
  font-size: .95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.stars{
  color: var(--hb-gold);
  font-size: .9rem;
}

/* Partner box */
.partner-box{
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: 0 18px 48px rgba(16,24,40,.12);
}

.partner-title{
  font-weight: 900;
  margin-bottom: .3rem;
}

.partner-card{
  background: #f9faf7;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(216,225,218,.7);
  height: 100%;
}

.partner-card h6{
  font-weight: 800;
  margin-bottom: .25rem;
}

.partner-card p{
  font-size: .85rem;
  color: #6b7280;
  margin: 0;
}

.partner-note{
  font-size: .75rem;
  color: #6b7280;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px){
  .partner-box{
    padding: 1.5rem;
  }
}

/* ======================================================
   CONTACT – PREMIUM
====================================================== */
.contact--premium{
  position: relative;
  overflow: hidden;
}

.contact-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(31,77,58,.12), transparent 60%),
    radial-gradient(900px 420px at 90% 30%, rgba(201,162,77,.12), transparent 58%),
    linear-gradient(180deg, #ffffff, #f6f7f4);
  pointer-events:none;
}

/* Left cards */
.contact-card{
  background:#fff;
  border-radius: 22px;
  border:1px solid rgba(216,225,218,.9);
  box-shadow: 0 18px 48px rgba(16,24,40,.12);
  padding: 1.2rem;
}
.contact-item{
  display:flex;
  gap:.9rem;
  align-items:flex-start;
  padding: .85rem;
  border-radius: 16px;
  border:1px solid rgba(216,225,218,.75);
  background: rgba(255,255,255,.9);
  margin-bottom:.75rem;
}
.contact-item:last-child{ margin-bottom:0; }

.contact-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(31,77,58,.10);
  border:1px solid rgba(31,77,58,.18);
  color: var(--hb-green);
  font-size:1.1rem;
}

/* Map */
.contact-map{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(216,225,218,.9);
  box-shadow: 0 18px 48px rgba(16,24,40,.12);
  padding:1rem;
}
.map-head{
  display:flex;
  gap:.5rem;
  align-items:center;
  font-weight:800;
  color:#0f172a;
}
.map-box{
  height:220px;
  margin-top:.75rem;
  border-radius:16px;
  border:1px dashed rgba(107,122,113,.45);
  display:grid;
  place-items:center;
  background: rgba(249,250,247,.9);
}

/* Form card */
.contact-form-card{
  background:#fff;
  border-radius:26px;
  border:1px solid rgba(216,225,218,.9);
  box-shadow: 0 24px 64px rgba(16,24,40,.14);
  padding: 2rem;
}

/* Badge */
.badge-soft-green{
  background: rgba(31,77,58,.12);
  color: var(--hb-green);
  font-weight:800;
  border-radius:999px;
  padding:.45rem .8rem;
  border:1px solid rgba(31,77,58,.2);
}

/* Mobile */
@media (max-width: 768px){
  .contact-form-card{ padding:1.5rem; }
}

/* ======================================================
   ABOUT PAGE (page hero + content)
====================================================== */
.page-hero{
  position: relative;
  padding: 70px 0 48px;
  overflow: hidden;
}
.page-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(31,77,58,.92), rgba(15,23,42,.62)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.page-hero__crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: .95rem;
}
.page-hero__crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.page-hero__crumbs a:hover{ color: var(--hb-gold); }
.page-hero__sep{ margin: 0 .55rem; opacity:.7; }

.page-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 14px;
  line-height: 1.08;
}
.page-hero__lead{
  color: rgba(255,255,255,.86);
  margin-top: 14px;
  max-width: 680px;
  font-size: 1.05rem;
}
.page-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top: 1rem;
}

.page-hero__card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.page-hero__card-title{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  margin-bottom: .75rem;
}
.page-hero__mini{
  display:grid;
  gap:.8rem;
}
.page-hero__mini-item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.page-hero__mini-item i{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(201,162,77,.20);
  border: 1px solid rgba(201,162,77,.26);
  color:#fff;
}
.page-hero__note{
  margin-top: .9rem;
  color: rgba(255,255,255,.78);
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  font-size: .9rem;
}

/* Story section */
.about-page__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216,225,218,.9);
}
.about-page__media img{
  width:100%;
  height: 420px;
  object-fit: cover;
}
.about-page__media-badges{
  position:absolute;
  left: 16px;
  bottom: 16px;
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
}
.about-page__badge{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.35rem .6rem;
  border-radius:999px;
  font-weight: 800;
  font-size:.82rem;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(216,225,218,.9);
  color: var(--hb-green);
}
.about-page__list{ display:grid; gap:.55rem; }
.about-page__li{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
  padding:.7rem .85rem;
  border-radius: 16px;
  background:#fff;
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: var(--shadow-sm);
}
.about-page__li i{ color: var(--hb-green); margin-top: 2px; }

/* Mission/Vision cards */
.mv-card{
  display:flex;
  gap:.9rem;
  padding: 1.25rem;
  border-radius: 22px;
  background:#fff;
  border: 1px solid rgba(216,225,218,.9);
  box-shadow: var(--shadow-sm);
  height:100%;
}
.mv-icon{
  width: 52px; height: 52px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.18);
  color: var(--hb-green);
  font-size: 1.25rem;
}
.mv-title{ font-weight: 900; margin-bottom: .35rem; }
.mv-text{ color: #475569; margin:0; line-height: 1.65; font-weight: 600; }

/* Values cards */
.value-card{
  background:#fff;
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  height:100%;
}
.value-icon{
  width: 54px; height: 54px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.18);
  color: var(--hb-green);
  font-size: 1.3rem;
  margin-bottom:.75rem;
}
.value-title{ font-weight: 900; margin-bottom:.35rem; }
.value-text{ color:#475569; margin:0; line-height:1.6; font-weight:600; }

@media (max-width: 768px){
  .about-page__media img{ height: 320px; }
}




/* ======================================================
   PROGRAMS PAGE (Unique CSS Prefix: hb-prog-)
   Safe to paste in style.css (won't affect other pages)
====================================================== */
.hb-prog-hero{
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
}
.hb-prog-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(31,77,58,.92), rgba(15,23,42,.62)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.hb-prog-hero__glow{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(45px);
  opacity: .22;
}
.hb-prog-hero__glow--a{ left:-140px; top:-180px; background: var(--hb-gold); }
.hb-prog-hero__glow--b{ right:-180px; bottom:-220px; background: var(--hb-green); }

.hb-prog-crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .95rem;
}
.hb-prog-crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.hb-prog-crumbs a:hover{ color: var(--hb-gold); }
.hb-prog-crumbs__sep{ margin: 0 .55rem; opacity:.7; }

.hb-prog-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hb-prog-hero__lead{
  color: rgba(255,255,255,.86);
  max-width: 720px;
  font-size: 1.05rem;
  font-weight: 600;
}
.hb-prog-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.hb-prog-chip{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

.hb-prog-hero__side{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.hb-prog-side__title{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  margin-bottom: .75rem;
}
.hb-prog-side__item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom:.7rem;
}
.hb-prog-side__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(201,162,77,.20);
  border: 1px solid rgba(201,162,77,.26);
  color:#fff;
  font-size: 1.12rem;
}
.hb-prog-side__head{ color:#fff; font-weight: 900; }
.hb-prog-side__sub{ color: rgba(255,255,255,.78); font-weight: 600; font-size:.92rem; }

.hb-prog-side__note{
  margin-top: .2rem;
  color: rgba(255,255,255,.78);
  display:flex;
  gap:.6rem;
  align-items:center;
  font-size: .9rem;
}

/* Cards */
.hb-prog-card{
  background: #fff;
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  height: 100%;
  transition: .22s ease;
}
.hb-prog-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hb-prog-card__media{
  position: relative;
  overflow:hidden;
}
.hb-prog-card__media img{
  width:100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: .35s ease;
}
.hb-prog-card:hover .hb-prog-card__media img{ transform: scale(1.07); }

.hb-prog-card__tag{
  position:absolute;
  top: 14px; left: 14px;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(216,225,218,.9);
  color: var(--hb-green);
}

.hb-prog-card__body{ padding: 1.1rem 1.1rem 1.2rem; }
.hb-prog-card__title{ font-weight: 900; letter-spacing:-0.01em; margin-bottom:.4rem; }
.hb-prog-card__text{
  color: #475569;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: .9rem;
}
.hb-prog-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom: 1rem;
}
.hb-prog-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.35rem .6rem;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-weight: 900;
  font-size: .82rem;
}
.hb-prog-card__cta{ margin-top: .1rem; }

/* Process */
.hb-prog-process__wrap{
  background: #fff;
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}
.hb-prog-steps{
  border-left: 2px dashed rgba(201,162,77,.45);
  padding-left: 18px;
}
.hb-prog-step{
  display:flex;
  gap:.9rem;
  align-items:flex-start;
  margin-bottom: 1.05rem;
}
.hb-prog-step__dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--hb-gold);
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(201,162,77,.18);
  flex: 0 0 auto;
}
.hb-prog-step__title{ font-weight: 900; color:#0f172a; }
.hb-prog-step__desc{ color:#64748b; font-weight: 600; font-size: .95rem; }

@media (max-width: 768px){
  .hb-prog-hero{ padding: 62px 0 46px; }
  .hb-prog-card__media img{ height: 200px; }
}




/* ======================================================
   LAND LEASING PAGE (Unique CSS Prefix: hb-lease-)
   Safe to paste in style.css (won't affect other pages)
====================================================== */

.hb-lease-hero{
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
}
.hb-lease-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(31,77,58,.92), rgba(15,23,42,.62)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.hb-lease-hero__glow{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(45px);
  opacity: .22;
}
.hb-lease-hero__glow--a{ left:-140px; top:-180px; background: var(--hb-gold); }
.hb-lease-hero__glow--b{ right:-180px; bottom:-220px; background: var(--hb-green); }

.hb-lease-crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .95rem;
}
.hb-lease-crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.hb-lease-crumbs a:hover{ color: var(--hb-gold); }
.hb-lease-crumbs__sep{ margin: 0 .55rem; opacity:.7; }

.hb-lease-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hb-lease-hero__lead{
  color: rgba(255,255,255,.86);
  max-width: 760px;
  font-size: 1.05rem;
  font-weight: 600;
}
.hb-lease-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.hb-lease-chip{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

/* Right hero side card */
.hb-lease-hero__side{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.hb-lease-side__title{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  margin-bottom: .75rem;
}
.hb-lease-side__item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom:.7rem;
}
.hb-lease-side__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(201,162,77,.20);
  border: 1px solid rgba(201,162,77,.26);
  color:#fff;
  font-size: 1.12rem;
}
.hb-lease-side__head{ color:#fff; font-weight: 900; }
.hb-lease-side__sub{ color: rgba(255,255,255,.78); font-weight: 600; font-size:.92rem; }
.hb-lease-side__note{
  margin-top: .2rem;
  color: rgba(255,255,255,.78);
  display:flex;
  gap:.6rem;
  align-items:center;
  font-size: .92rem;
}

/* Form section */
.hb-lease-section{
  background:
    radial-gradient(1200px 450px at 20% 10%, rgba(201,162,77,.12), transparent 55%),
    radial-gradient(1200px 450px at 90% 30%, rgba(31,77,58,.10), transparent 55%);
}

.hb-lease-card{
  background:#fff;
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}
.hb-lease-card__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.hb-lease-eyebrow{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:.34rem .7rem;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-weight: 900;
  font-size: .85rem;
}
.hb-lease-title{
  font-weight: 900;
  letter-spacing:-0.02em;
  margin: .4rem 0 .15rem;
}
.hb-lease-sub{
  color:#64748b;
  font-weight: 600;
  margin:0;
  max-width: 720px;
}
.hb-lease-badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .65rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(201,162,77,.12);
  border: 1px solid rgba(201,162,77,.22);
  color: #0f172a;
}

/* Inputs */
.hb-lease-label{
  font-weight: 900;
  color:#0f172a;
}
.hb-lease-input{
  border-radius: 16px;
  border: 1px solid rgba(216,225,218,.95);
  font-weight: 650;
}
.hb-lease-input:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
  border-color: rgba(31,77,58,.45);
}

.hb-lease-help{
  margin-top: .35rem;
  font-size: .85rem;
  color:#64748b;
  font-weight: 600;
}

.hb-lease-divider{
  border: 1px solid rgba(216,225,218,.95);
  border-radius: 16px;
  padding: .7rem .9rem;
  background: rgba(246,244,238,.85);
  color:#0f172a;
  font-weight: 900;
  display:flex;
  align-items:center;
}

.hb-lease-consent{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(31,77,58,.05);
  font-weight: 700;
  color:#0f172a;
}

.hb-lease-submit{
  border-radius: 999px;
  padding: .95rem 1.2rem;
}

/* Right aside */
.hb-lease-aside{
  background:#fff;
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
  position: sticky;
  top: 110px;
}
.hb-lease-aside__head{
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(216,225,218,.8);
  margin-bottom: .8rem;
}
.hb-lease-aside__item{
  display:flex;
  gap:.8rem;
  align-items:flex-start;
  padding:.85rem .85rem;
  border-radius: 18px;
  border: 1px solid rgba(216,225,218,.8);
  background: rgba(246,244,238,.75);
  margin-bottom: .75rem;
}
.hb-lease-aside__item i{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-size: 1.15rem;
}
.hb-lease-aside__label{ font-weight: 900; color:#0f172a; }
.hb-lease-aside__value{ font-weight: 800; color:#334155; }

.hb-lease-aside__note{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  padding:.85rem .9rem;
  border-radius: 18px;
  background: rgba(201,162,77,.10);
  border: 1px solid rgba(201,162,77,.20);
  color:#0f172a;
  font-weight: 700;
  margin-top: .2rem;
}

@media (max-width: 992px){
  .hb-lease-aside{ position: static; top: auto; }
}

/* ======================================================
   CAREER PAGE (Unique CSS Prefix: hb-career-)
   Safe to paste in style.css (won't affect other pages)
====================================================== */

.hb-career-hero{
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
}
.hb-career-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(31,77,58,.92), rgba(15,23,42,.62)),
    url("https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.hb-career-hero__glow{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(45px);
  opacity: .22;
}
.hb-career-hero__glow--a{ left:-140px; top:-180px; background: var(--hb-gold); }
.hb-career-hero__glow--b{ right:-180px; bottom:-220px; background: var(--hb-green); }

.hb-career-crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .95rem;
}
.hb-career-crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.hb-career-crumbs a:hover{ color: var(--hb-gold); }
.hb-career-crumbs__sep{ margin: 0 .55rem; opacity:.7; }

.hb-career-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hb-career-hero__lead{
  color: rgba(255,255,255,.86);
  max-width: 760px;
  font-size: 1.05rem;
  font-weight: 600;
}
.hb-career-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.hb-career-chip{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

/* Right hero side card */
.hb-career-side{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.hb-career-side__title{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  margin-bottom: .75rem;
}
.hb-career-side__item{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  padding:.75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom:.7rem;
}
.hb-career-side__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(201,162,77,.20);
  border: 1px solid rgba(201,162,77,.26);
  color:#fff;
  font-size: 1.12rem;
}
.hb-career-side__head{ color:#fff; font-weight: 900; }
.hb-career-side__sub{ color: rgba(255,255,255,.78); font-weight: 600; font-size:.92rem; }
.hb-career-side__note{
  margin-top: .2rem;
  color: rgba(255,255,255,.78);
  display:flex;
  gap:.6rem;
  align-items:center;
  font-size: .92rem;
}

/* Section */
.hb-career-section{
  background:
    radial-gradient(1200px 450px at 20% 10%, rgba(201,162,77,.10), transparent 55%),
    radial-gradient(1200px 450px at 90% 30%, rgba(31,77,58,.10), transparent 55%);
}

.hb-career-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.hb-career-eyebrow{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:.34rem .7rem;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-weight: 900;
  font-size: .85rem;
}
.hb-career-title{
  font-weight: 900;
  letter-spacing:-0.02em;
  margin: .45rem 0 .15rem;
}
.hb-career-sub{
  color:#64748b;
  font-weight: 600;
  margin:0;
  max-width: 760px;
}

.hb-career-search .input-group-text{
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.9);
}
.hb-career-search .form-control{
  border-radius: 0 18px 18px 0;
  border: 1px solid rgba(216,225,218,.95);
  font-weight: 700;
}
.hb-career-search .form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
  border-color: rgba(31,77,58,.45);
}

.hb-career-card{
  background:#fff;
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
  height: 100%;
  transition: .25s ease;
}
.hb-career-card:hover{
  transform: translateY(-3px);
}
.hb-career-card__top{
  display:flex;
  gap:.5rem;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items:center;
  margin-bottom: .8rem;
}
.hb-career-pill{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .65rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
}
.hb-career-pill--soft{
  background: rgba(201,162,77,.10);
  border-color: rgba(201,162,77,.22);
  color: #0f172a;
}
.hb-career-card__title{
  font-weight: 900;
  margin: 0 0 .35rem;
  letter-spacing: -0.01em;
}
.hb-career-card__desc{
  color:#64748b;
  font-weight: 650;
  margin:0;
}
.hb-career-card__meta{
  margin-top: .9rem;
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  color:#334155;
  font-weight: 800;
  font-size: .92rem;
}
.hb-career-card__meta i{ color: var(--hb-green); margin-right: .35rem; }

.hb-career-note{
  display:flex;
  gap:.7rem;
  align-items:center;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(216,225,218,.9);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  color:#0f172a;
  font-weight: 750;
}

/* FAQ/Steps */
.hb-career-faq{
  background:#fff;
  border-top: 1px solid rgba(216,225,218,.85);
  border-bottom: 1px solid rgba(216,225,218,.85);
}
.hb-career-faqCard{
  border: 1px solid rgba(216,225,218,.9);
  border-radius: 26px;
  padding: 1.1rem;
  background: rgba(246,244,238,.65);
  box-shadow: var(--shadow-sm);
}
.hb-career-step{
  display:flex;
  gap: .9rem;
  padding: .9rem .8rem;
  border-radius: 20px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(216,225,218,.85);
  margin-bottom: .8rem;
}
.hb-career-step:last-child{ margin-bottom: 0; }
.hb-career-step__dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-top: .45rem;
  background: var(--hb-gold);
  box-shadow: 0 0 0 6px rgba(201,162,77,.18);
  flex: 0 0 auto;
}
.hb-career-step__title{ font-weight: 900; color:#0f172a; }
.hb-career-step__desc{ font-weight: 650; color:#64748b; }

/* Modal */
.hb-career-modal{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(216,225,218,.9);
}
.hb-career-modal__head{
  padding: 1.1rem 1.2rem;
  background:
    linear-gradient(115deg, rgba(31,77,58,.95), rgba(15,23,42,.70));
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 1rem;
}
.hb-career-modal__eyebrow{
  display:inline-flex;
  padding:.28rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 900;
  font-size: .82rem;
}
.hb-career-modal__title{
  font-weight: 900;
  margin:.45rem 0 .1rem;
}
.hb-career-modal__sub{ color: rgba(255,255,255,.82); font-weight: 650; }
.hb-career-modal__close{
  filter: invert(1);
  opacity: .9;
  margin-top: .3rem;
}
.hb-career-modal__body{
  padding: 1.1rem 1.2rem;
  background: #fff;
}

.hb-career-label{ font-weight: 900; color:#0f172a; }
.hb-career-input{
  border-radius: 16px;
  border: 1px solid rgba(216,225,218,.95);
  font-weight: 650;
}
.hb-career-input:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
  border-color: rgba(31,77,58,.45);
}
.hb-career-help{
  margin-top: .35rem;
  font-size: .85rem;
  color:#64748b;
  font-weight: 600;
}
.hb-career-divider{
  border: 1px solid rgba(216,225,218,.95);
  border-radius: 16px;
  padding: .7rem .9rem;
  background: rgba(246,244,238,.85);
  color:#0f172a;
  font-weight: 900;
  display:flex;
  align-items:center;
}
.hb-career-consent{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(31,77,58,.05);
  font-weight: 700;
  color:#0f172a;
}

@media (max-width: 992px){
  .hb-career-note{ flex-wrap: wrap; }
  .hb-career-note .btn{ width: 100%; }
}


/* ======================================================
   GALLERY PAGE (Unique CSS Prefix: hb-gal-)
   Safe to paste in style.css (won't affect other pages)
====================================================== */

.hb-gal-hero{
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
}
.hb-gal-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(31,77,58,.92), rgba(15,23,42,.55)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.hb-gal-hero__glow{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(45px);
  opacity: .22;
}
.hb-gal-hero__glow--a{ left:-140px; top:-180px; background: var(--hb-gold); }
.hb-gal-hero__glow--b{ right:-180px; bottom:-220px; background: var(--hb-green); }

.hb-gal-crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .95rem;
}
.hb-gal-crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.hb-gal-crumbs a:hover{ color: var(--hb-gold); }
.hb-gal-crumbs__sep{ margin: 0 .55rem; opacity:.7; }

.hb-gal-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hb-gal-hero__lead{
  color: rgba(255,255,255,.86);
  max-width: 820px;
  font-size: 1.05rem;
  font-weight: 650;
}
.hb-gal-hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.hb-gal-badge{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

/* CTA card */
.hb-gal-cta{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.hb-gal-cta__title{
  color:#fff;
  font-weight: 900;
}
.hb-gal-cta__sub{
  color: rgba(255,255,255,.78);
  font-weight: 650;
  margin-top: .3rem;
}
.hb-gal-cta__note{
  display:flex;
  gap:.55rem;
  align-items:center;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  font-size: .92rem;
}

/* Section */
.hb-gal-section{
  background:
    radial-gradient(1200px 450px at 20% 10%, rgba(201,162,77,.10), transparent 55%),
    radial-gradient(1200px 450px at 90% 30%, rgba(31,77,58,.10), transparent 55%);
}

.hb-gal-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.hb-gal-eyebrow{
  display:inline-flex;
  padding:.34rem .7rem;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-weight: 900;
  font-size: .85rem;
}
.hb-gal-title{
  font-weight: 900;
  letter-spacing:-0.02em;
  margin: .45rem 0 .15rem;
}
.hb-gal-sub{
  color:#64748b;
  font-weight: 650;
  margin:0;
  max-width: 760px;
}

.hb-gal-search .input-group-text{
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.9);
}
.hb-gal-search .form-control{
  border-radius: 0 18px 18px 0;
  border: 1px solid rgba(216,225,218,.95);
  font-weight: 700;
}
.hb-gal-search .form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
  border-color: rgba(31,77,58,.45);
}

/* Filter chips */
.hb-gal-filters{
  display:flex;
  gap:.5rem;
  flex-wrap: wrap;
}
.hb-gal-filter{
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.78);
  font-weight: 900;
  color:#0f172a;
  border-radius: 999px;
  padding:.42rem .85rem;
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  transition: .2s ease;
}
.hb-gal-filter:hover{
  transform: translateY(-1px);
}
.hb-gal-filter.active{
  background: rgba(31,77,58,.10);
  border-color: rgba(31,77,58,.22);
  color: var(--hb-green);
}

/* Uniform cards */
.hb-gal-card{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216,225,218,.85);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  height: 210px; /* uniform height */
  background: #0f172a;
}
@media (max-width: 992px){
  .hb-gal-card{ height: 190px; }
}
@media (max-width: 576px){
  .hb-gal-card{ height: 170px; }
}

.hb-gal-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.hb-gal-card:hover img{
  transform: scale(1.08);
}

.hb-gal-card__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding: .85rem;
  opacity: 0;
  transition: opacity .25s ease;
}
.hb-gal-card:hover .hb-gal-card__overlay{
  opacity: 1;
}

.hb-gal-card__cap{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.hb-gal-tag{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.28rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight: 900;
  font-size: .78rem;
  width: fit-content;
}
.hb-gal-card__title{
  color:#fff;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.hb-gal-zoom{
  width: 42px; height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(201,162,77,.22);
  border: 1px solid rgba(201,162,77,.32);
  color:#fff;
  font-size: 1.05rem;
}

/* Empty state */
.hb-gal-empty{
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.78);
  border-radius: 22px;
  padding: 1.1rem;
  display:flex;
  gap:.8rem;
  align-items:flex-start;
  box-shadow: var(--shadow-sm);
}
.hb-gal-empty i{
  font-size: 1.4rem;
  color: var(--hb-green);
}
.hb-gal-empty__title{
  font-weight: 900;
  color:#0f172a;
}
.hb-gal-empty__sub{
  font-weight: 650;
  color:#64748b;
}

/* Modal */
.hb-gal-modal{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(216,225,218,.9);
  background: #0b1220;
}
.hb-gal-modal__close{
  position:absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
  filter: invert(1);
  opacity: .92;
}
.hb-gal-modal__wrap{
  padding: 14px;
}
.hb-gal-modal img{
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
}
.hb-gal-modal__cap{
  padding: 0 16px 16px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  text-align:center;
}

/* ======================================================
   FAQ PAGE (Unique CSS Prefix: hb-faq-)
   Safe to paste in style.css (won't affect other pages)
====================================================== */

.hb-faq-hero{
  position: relative;
  padding: 74px 0 54px;
  overflow:hidden;
}
.hb-faq-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(31,77,58,.92), rgba(15,23,42,.58)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.hb-faq-hero__glow{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(45px);
  opacity: .20;
}
.hb-faq-hero__glow--a{ left:-160px; top:-200px; background: var(--hb-gold); }
.hb-faq-hero__glow--b{ right:-200px; bottom:-220px; background: var(--hb-green); }

.hb-faq-crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 900;
  font-size: .95rem;
}
.hb-faq-crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.hb-faq-crumbs a:hover{ color: var(--hb-gold); }
.hb-faq-crumbs__sep{ margin: 0 .55rem; opacity:.7; }

.hb-faq-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hb-faq-hero__lead{
  color: rgba(255,255,255,.86);
  max-width: 860px;
  font-size: 1.05rem;
  font-weight: 650;
}
.hb-faq-hero__badges{
  display:flex; flex-wrap:wrap; gap:.5rem;
}
.hb-faq-badge{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

/* Right mini card */
.hb-faq-mini{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.hb-faq-mini__title{ color:#fff; font-weight:900; }
.hb-faq-mini__sub{ color: rgba(255,255,255,.78); font-weight:650; margin-top:.25rem; }
.hb-faq-mini__note{
  display:flex; gap:.55rem; align-items:center;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  font-size: .92rem;
}

/* Section bg */
.hb-faq-section{
  background:
    radial-gradient(1200px 450px at 18% 10%, rgba(201,162,77,.10), transparent 55%),
    radial-gradient(1200px 450px at 90% 35%, rgba(31,77,58,.10), transparent 55%);
}

.hb-faq-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.hb-faq-eyebrow{
  display:inline-flex;
  padding:.34rem .7rem;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-weight: 900;
  font-size: .85rem;
}
.hb-faq-title{
  font-weight: 900;
  letter-spacing:-0.02em;
  margin: .35rem 0 .12rem;
}
.hb-faq-sub{
  color:#64748b;
  font-weight: 650;
  margin:0;
  max-width: 820px;
}

/* Search */
.hb-faq-search .input-group-text{
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.9);
}
.hb-faq-search .form-control{
  border-radius: 0 18px 18px 0;
  border: 1px solid rgba(216,225,218,.95);
  font-weight: 700;
}
.hb-faq-search .form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
  border-color: rgba(31,77,58,.45);
}

/* Filters */
.hb-faq-filters{ display:flex; gap:.5rem; flex-wrap:wrap; }
.hb-faq-filter{
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.78);
  font-weight: 900;
  color:#0f172a;
  border-radius: 999px;
  padding:.42rem .85rem;
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  transition: .2s ease;
}
.hb-faq-filter:hover{ transform: translateY(-1px); }
.hb-faq-filter.active{
  background: rgba(31,77,58,.10);
  border-color: rgba(31,77,58,.22);
  color: var(--hb-green);
}

/* Left panel */
.hb-faq-side{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(216,225,218,.95);
  border-radius: 22px;
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.hb-faq-side__head{
  display:flex; gap:.8rem; align-items:flex-start;
}
.hb-faq-side__icon{
  width: 44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.18);
  color: var(--hb-green);
  font-size: 1.1rem;
}
.hb-faq-side__title{ font-weight: 900; }
.hb-faq-side__sub{ font-weight: 650; color:#64748b; font-size: .92rem; }

.hb-faq-side__item{
  display:flex; gap:.75rem; align-items:flex-start;
  padding: .75rem;
  border-radius: 18px;
  border: 1px solid rgba(216,225,218,.8);
  background: rgba(255,255,255,.6);
  margin-top: .6rem;
}
.hb-faq-side__item i{
  color: var(--hb-green);
  font-size: 1.05rem;
  margin-top:.1rem;
}

/* FAQ card */
.hb-faq-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(216,225,218,.95);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.hb-faq-acc .accordion-item{
  border: 1px solid rgba(216,225,218,.85);
  border-radius: 18px !important;
  overflow:hidden;
  background: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}
.hb-faq-btn{
  background: rgba(255,255,255,.72);
  border: 0;
  box-shadow: none;
  padding: 1rem 1rem;
  font-weight: 900;
}
.hb-faq-btn:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
}
.hb-faq-qicon{
  display:inline-grid;
  place-items:center;
  width: 34px; height:34px;
  border-radius: 12px;
  margin-right: .6rem;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.18);
  color: var(--hb-green);
}
.hb-faq-body{
  color:#334155;
  font-weight: 650;
  line-height: 1.7;
}

/* Empty state */
.hb-faq-empty{
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: .95rem;
  display:flex;
  gap:.75rem;
  align-items:flex-start;
}
.hb-faq-empty i{
  font-size: 1.35rem;
  color: var(--hb-green);
}
.hb-faq-empty__title{ font-weight: 900; color:#0f172a; }
.hb-faq-empty__sub{ font-weight: 650; color:#64748b; }

/* ======================================================
   CONTACT PAGE (Unique CSS Prefix: hb-contact-)
   Safe to paste in style.css (won't affect other pages)
====================================================== */

.hb-contact-hero{
  position: relative;
  padding: 76px 0 56px;
  overflow:hidden;
}
.hb-contact-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(115deg, rgba(15,23,42,.72), rgba(31,77,58,.82)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position:center;
  transform: scale(1.01);
}
.hb-contact-hero__glow{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(45px);
  opacity: .20;
}
.hb-contact-hero__glow--a{ left:-170px; top:-210px; background: var(--hb-gold); }
.hb-contact-hero__glow--b{ right:-210px; bottom:-230px; background: var(--hb-green); }

.hb-contact-crumbs{
  color: rgba(255,255,255,.78);
  font-weight: 900;
  font-size: .95rem;
}
.hb-contact-crumbs a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}
.hb-contact-crumbs a:hover{ color: var(--hb-gold); }
.hb-contact-crumbs__sep{ margin: 0 .55rem; opacity:.7; }

.hb-contact-hero__title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hb-contact-hero__lead{
  color: rgba(255,255,255,.86);
  max-width: 860px;
  font-size: 1.05rem;
  font-weight: 650;
}
.hb-contact-hero__badges{
  display:flex; flex-wrap:wrap; gap:.5rem;
}
.hb-contact-badge{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

/* Mini */
.hb-contact-mini{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  padding: 1.2rem;
}
.hb-contact-mini__title{ color:#fff; font-weight:900; }
.hb-contact-mini__sub{ color: rgba(255,255,255,.78); font-weight:650; margin-top:.25rem; }
.hb-contact-mini__list{
  display:flex; flex-direction:column; gap:.55rem;
}
.hb-contact-mini__item{
  display:flex; gap:.55rem; align-items:center;
  color: rgba(255,255,255,.88);
  font-weight: 800;
}
.hb-contact-mini__item i{ color: rgba(255,255,255,.92); }
.hb-contact-mini__note{
  display:flex; gap:.55rem; align-items:center;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  font-size: .92rem;
}

/* Page section */
.hb-contact-section{
  background:
    radial-gradient(1200px 450px at 15% 10%, rgba(201,162,77,.10), transparent 55%),
    radial-gradient(1200px 450px at 90% 35%, rgba(31,77,58,.10), transparent 55%);
}

.hb-contact-eyebrow{
  display:inline-flex;
  padding:.34rem .7rem;
  border-radius: 999px;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
  font-weight: 900;
  font-size: .85rem;
}
.hb-contact-title{
  font-weight: 900;
  letter-spacing:-0.02em;
  margin: .35rem 0 .12rem;
}
.hb-contact-sub{
  color:#64748b;
  font-weight: 650;
  margin:0;
  max-width: 820px;
}

/* Info */
.hb-contact-info{
  display:flex;
  flex-direction:column;
  gap:.8rem;
}
.hb-contact-info__card{
  display:flex;
  gap:.85rem;
  align-items:flex-start;
  padding: .9rem;
  border-radius: 22px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  text-decoration:none;
  color: inherit;
  transition: .2s ease;
}
.hb-contact-info__card:hover{ transform: translateY(-1px); }
.hb-contact-info__icon{
  width: 46px; height:46px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.18);
  color: var(--hb-green);
  font-size: 1.1rem;
}
.hb-contact-info__title{ font-weight: 900; }
.hb-contact-info__text{ color:#64748b; font-weight:650; font-size: .95rem; }

/* Map */
.hb-contact-map{
  border-radius: 22px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.hb-contact-map__head{
  padding: .9rem 1rem;
  display:flex;
  gap:.6rem;
  align-items:center;
  font-weight: 900;
  color:#0f172a;
  border-bottom: 1px solid rgba(216,225,218,.9);
}
.hb-contact-map__box{
  min-height: 260px;
  display:grid;
  place-items:center;
  padding: 1rem;
}

/* Form card */
.hb-contact-form{
  border-radius: 26px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 80px rgba(15,23,42,.10);
  padding: 1.2rem;
}
@media (min-width: 992px){
  .hb-contact-form{ padding: 1.5rem; }
}
.hb-contact-form__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.hb-contact-form__title{
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing:-0.02em;
}
.hb-contact-form__sub{
  color:#64748b;
  font-weight: 650;
  margin-top:.15rem;
}
.hb-contact-pill{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  padding:.38rem .68rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  background: rgba(31,77,58,.08);
  border: 1px solid rgba(31,77,58,.14);
  color: var(--hb-green);
}

.hb-contact-input{
  border-radius: 18px;
  border: 1px solid rgba(216,225,218,.95);
  font-weight: 700;
}
.hb-contact-input:focus{
  box-shadow: 0 0 0 .25rem rgba(31,77,58,.12);
  border-color: rgba(31,77,58,.45);
}

.hb-contact-submit{
  border-radius: 18px;
}
.hb-contact-form__note{
  display:flex;
  gap:.55rem;
  align-items:center;
  justify-content:center;
  color:#64748b;
  font-weight: 650;
  font-size: .92rem;
}

/* Trust row */
.hb-contact-trust{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  align-items:center;
  justify-content:center;
  padding: .85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216,225,218,.95);
  background: rgba(255,255,255,.70);
}
.hb-contact-trust__item{
  display:inline-flex;
  gap:.45rem;
  align-items:center;
  font-weight: 900;
  color:#0f172a;
  font-size: .92rem;
}
.hb-contact-trust__item i{ color: var(--hb-green); }
.hb-contact-trust__sep{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(100,116,139,.35);
}

/* ======================================================
   TERMS & CONDITIONS PAGE (Unique CSS)
   Prefix: hb-terms-
====================================================== */

.hb-terms-hero{
  padding: 80px 0 60px;
  background:
    linear-gradient(120deg, rgba(15,23,42,.9), rgba(31,77,58,.9)),
    url("https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hb-terms-hero__box{
  max-width: 820px;
}

.hb-terms-badge{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.4rem .8rem;
  border-radius:999px;
  background: rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
  font-weight:700;
  font-size:.85rem;
}

.hb-terms-title{
  font-weight:800;
  margin-top:1rem;
  letter-spacing:-.02em;
}

.hb-terms-sub{
  color: rgba(255,255,255,.9);
  margin-top:.75rem;
  font-weight:500;
}

.hb-terms-meta{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1rem;
  font-size:.9rem;
  opacity:.9;
}

/* Content */
.hb-terms-section{
  background:#f8fafc;
}

.hb-terms-card{
  background:#fff;
  border-radius:24px;
  padding:2rem;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.hb-terms-item{
  margin-bottom:1.75rem;
}

.hb-terms-item h3{
  font-size:1.15rem;
  font-weight:800;
  margin-bottom:.5rem;
}

.hb-terms-item p{
  color:#475569;
  font-weight:500;
  line-height:1.7;
}

.hb-terms-highlight{
  margin-top:2rem;
  padding:1rem 1.25rem;
  border-radius:16px;
  background:rgba(31,77,58,.08);
  border:1px solid rgba(31,77,58,.15);
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  font-weight:600;
  color:#0f172a;
}

/* =========================
   PRELOADER (Hara Bagicha)
   ========================= */
:root{
  /* If already defined, keep your existing variables. These are safe fallbacks. */
  --hb-green: #1F4D3A;
  --hb-green-2: #3E7C59;
  --hb-gold: #C9A24D;
  --hb-bg: #F6F4EE;
}

/* Fullscreen overlay */
.hb-preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 450px at 20% 15%, rgba(201,162,77,.18), transparent 60%),
    radial-gradient(900px 450px at 85% 25%, rgba(31,77,58,.20), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
  backdrop-filter: blur(12px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  opacity: 1;
  visibility: visible;
}

.hb-preloader--hide{
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
}

/* Card-like center */
.hb-preloader__inner{
  width: min(520px, calc(100% - 32px));
  padding: 26px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(31,77,58,.14);
  background: rgba(255,255,255,.70);
  box-shadow: 0 26px 70px rgba(15, 23, 42, .12);
  position: relative;
  overflow: hidden;
}

.hb-preloader__inner::before{
  content:"";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(500px 120px at 20% 10%, rgba(201,162,77,.20), transparent 60%),
    radial-gradient(500px 120px at 90% 30%, rgba(31,77,58,.18), transparent 60%);
  pointer-events: none;
}

/* Ring */
.hb-preloader__ring{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 3px solid rgba(31,77,58,.16);
  border-top-color: rgba(31,77,58,.85);
  border-right-color: rgba(201,162,77,.70);
  animation: hbSpin 0.9s linear infinite;
  margin: 0 auto 16px;
}

@keyframes hbSpin{
  to { transform: rotate(360deg); }
}

/* Brand row */
.hb-preloader__brand{
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hb-preloader__logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(31,77,58,.14);
  box-shadow: 0 12px 30px rgba(31,77,58,.10);
}

.hb-preloader__title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.1;
}

.hb-preloader__sub{
  margin-top: 3px;
  font-size: .92rem;
  color: rgba(15, 23, 42, .62);
  font-weight: 700;
}

/* Progress bar */
.hb-preloader__progress{
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(31,77,58,.10);
  border: 1px solid rgba(31,77,58,.10);
  margin-top: 18px;
  overflow: hidden;
  z-index: 1;
}

.hb-preloader__bar{
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,77,58,.85), rgba(62,124,89,.80), rgba(201,162,77,.85));
  filter: saturate(1.05);
  animation: hbBar 1.05s ease-in-out infinite;
}

@keyframes hbBar{
  0%   { transform: translateX(-120%); }
  50%  { transform: translateX(70%); }
  100% { transform: translateX(220%); }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce){
  .hb-preloader,
  .hb-preloader__ring,
  .hb-preloader__bar{
    animation: none !important;
    transition: none !important;
  }
}
