:root {
  --gold:   #c9842a;
  --dark:   #112342;;
  --green:  #3a7d44;
  --bg:     #F5F6F7;
  --border: #d6d0c8;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
}
/* -----------HERO--------- */
.hero { min-height: 100vh; }

.hero-left { background: var(--bg); }

.tagline {
  font-size: 15px;
  letter-spacing: 0.10px;
  color: var(--gold);
}

.hero-heading {
      font-family: Playfair Display;
    font-size: 37px;
    font-weight: 500;
    line-height: 1.2em;
  color: var(--dark);
}

.hero-body {
  font-size: 17px;
  color:var(--dark);
  margin: 18px 0 30px;
}

/* ── Form inputs ── */
.hero-form{
        display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: fit-content;
    justify-content: end;
}
.form-input {
    width: 50%;
    padding: 14px 12px;
    border: none;
    outline: none;
    font-size: 14px;
   
}
.form-control {
     border-radius: none !important;
}
.form-label-heading {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
#ah-name{
    border-right: 1px solid #eee;
}
.form-input::placeholder { color: #9ca3af; }
.form-input:focus {
  border-color: var(--green);
  box-shadow: none;
}

/* ── WhatsApp button ── */
.btn-whatsapp {
    border:none;
    border-radius: 0px !important;
    padding: 14px 22px;
    background: linear-gradient(135deg, #43bf54, #276e32);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.cta-note {
  font-size: 16px;
  color: var(--gold);
}

 .hero-right::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
} 

/* ----Second Section ------*/
    .stats-section { 
        background: var(--dark);
        border-radius: 20px;
        width:93%;
        justify-content: center;
        margin-top: -48px;
    }

    .col-divider{
  position: relative;
}

.col-divider::after{
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12%;
    background: #5d6e89;
}
    .stat-icon { width: 45px; height: 45px;}

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      color: #fff;
      line-height: 1;
    }

    .stat-heading {
      font-size: 1.1rem;
      color: #fff;
      line-height: 1.35;
      font-weight: 500;
      position: relative;
    }
    .stat-heading::after{
     content: "";
    position: absolute;
    left: 43%;
    bottom: -13px;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

    .stat-body { font-size: 0.85rem; color: var(--bg); line-height: 1.6;     margin-top: 31px;}
    .stats-content{
        height:210px;
    }

    .badge-card {
      background: var(--gold);
      border-radius: 10px;
      justify-content: space-around;
    }
    .badge-card .badge-text {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.5;
    }



/* ── Mobile ── */
@media (max-width: 767px) {
  .hero { min-height: auto; }
  .hero-right { height: 55vw; min-height: 220px; }
  .hero-right::before { width: 8%; }
}
  @media (max-width: 991px) { .col-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); } }
