: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:
    linear-gradient(
      135deg,
      #b8741f 0%,
      #c9842a 25%,
      #f2cf7a 50%,
      #c9842a 75%,
      #a96818 100%
    );
      border-radius: 10px;
      justify-content: space-around;
    }
    .badge-card .badge-text {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.5;
    }

    /* Third Section */
    .care-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .care-divider::before,
    .care-divider::after {
      content: '';
      width: 60px;
      height: 1px;
      background: var(--gold);
    }
    .care-divider span {
      width: 7px;
      height: 7px;
      background: var(--gold);
      transform: rotate(45deg);
      margin: 0 4px;
    }
 
    /* Icon circle */
    .care-icon-wrap {
         width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #dde3ec;
      color: var(--dark);
      flex-shrink: 0;
    }
    .care-icon-wrap img{ width: 30px; height: 30px; }
 
    /* Card text */
    .care-card-title {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
    }
    .care-card-body {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.6;
    }
     .com-box{
        position: relative;
     }
    .com-box::after{
         content: "";
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
      height: 45%;
    background: #c3cbd7;
    }


    .cta-wrapper{
      background:linear-gradient(90deg,#04163f 0%,#05235e 100%);
      border-radius:16px;
      overflow:hidden;
      box-shadow:0 6px 20px rgba(0,0,0,.12);
    }

    .cta-box{
      min-height:112px;
    }

    .icon-circle{
      width:68px;
      height:68px;
      border:1px solid var(--gold);
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }

    .icon-circle img{
      width: 20px;
      height: 20px;
    }

    .cta-title{
      color:var(--gold);
      font-size:20px;
      font-weight:700;
      line-height:1.3;
      margin-bottom:4px;
    }

    .cta-text{
      color:var(--white);
      font-size:12px;
      margin:0;
      opacity:.92;
    }

    .divider{
      width:1px;
      height:65px;
      background:var(--border);
    }

    .consult-box{
      background:linear-gradient(135deg,#c88b2c 0%,#d79d3d 50%,#ba7d21 100%);
      border-radius:12px;
      padding:22px 28px;
      height:100%;
    }

    .consult-box i{
      font-size:34px;
      color:var(--white);
    }


    /* Fourth Section */
    .tc-section { background: var(--bg); }

    .tc-gold-line {
      width: 36px;
      height: 3px;
      background: var(--gold);
    }

    .tc-body { font-size: 0.88rem; line-height: 1.7; color: var(--dark); }
    .tc-img{
        width: 80%;
    height: 28%;
    border-radius: 10px;
    }
    .tc-body strong { color: var(--dark); }

    /* Badge strip */
    .tc-badge {
      background: #fff;
      font-size: 0.75rem;
      color: var(--dark);
          justify-content: center;
    text-align: center;
    }
    .tc-badge img { color: var(--gold); flex-shrink: 0; width: 30px; height: 30px; }

    /* ── Right panel ── */
    .tc-right { background: #fff; padding-top: 35px; border-radius: 8px;height: fit-content;}

    /* Icon circle */
    .feat-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--bg);
      flex-shrink: 0;
      color: var(--dark);
    }
    .feat-icon img { width: 30px; height: 30px; }

    .feat-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    font-family: Playfair Display;
    }
    .feat-divider {
      width: 28px;
      height: 2px;
      background: var(--gold);
    }
    .feat-body { font-size: 0.78rem; color: var(--dark); line-height: 1.6; }

    /* Column divider */
    .right-col-divider { border-left: 1px solid #e5e7eb; }
  

    /* Row divider */
    .feat-row + .feat-row { border-top: 1px solid #e5e7eb; }



    /* Fifth Section */
    .seek-section { background: var(--dark); }


    /* Signs list */
    .sign-row { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 10px 0;}

    .sign-icon-wrap {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      flex-shrink: 0;
      color: var(--gold);
    }
    .sign-icon-wrap img { width: 22px; height: 22px; }
    .sign-text { font-size: 0.85rem; color: #fff; }

    /* CTA buttons */
    .btn-gold {
      background: var(--gold);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      border: none;
      border-radius: 6px;
    }
     .btn-gold img {width: 20px; height: 20px; }
    .btn-gold:hover { background: #b5731f; color: #fff; }
    .btn-gold .sub { font-weight: 400; font-size: 0.72rem; opacity: .85; }

    .btn-outline-light-custom {
      border: 1.5px solid rgba(255,255,255,0.35);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      border-radius: 6px;
      background: transparent;
    }

    .btn-outline-light-custom:hover { background: rgba(255,255,255,0.08); color: #fff; }
    .btn-outline-light-custom img{
        width: 20px; height: 20px;    
    }
    .immediate-note { font-size: 0.75rem; color: #a8b4c8; }
    .immediate-note img {  width: 20px; height: 20px;  }

    /* ── Review card ── */
    .review-card {
      background: #fff;
      border-radius: 14px;
      position: relative;
          text-align: center;
    }
    .quote-bubble {
      width: 48px; height: 48px;
      background: var(--gold);
      border-radius: 50%;
      position: absolute;
      top: -22px; left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 1.5rem;
      font-family: Georgia, serif;
      line-height: 1;
    }
    .stars svg {width: 18px; height: 18px; }
    .verified-label { font-size: 0.65rem; letter-spacing: 0.1em; color: #888; text-transform: uppercase; }
    .review-text {
      font-size: 0.88rem;
      font-style: italic;
      color: #2d3748;
      line-height: 1.7;
    }
    .reviewer-name { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
    .reviewer-loc  { font-size: 0.75rem; color: #888; }
    .reviewer-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: #ddd;
    }

    /* ── Video card ── */
    .video-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: #1a2b3c;
      min-height: 200px;
    }
    .video-bg {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.55;
      position: absolute; inset: 0;
    }
    .video-overlay { position: relative; z-index: 2; }

    .play-btn {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      color: var(--dark);
      border: none;
      cursor: pointer;
    }
    .play-btn svg { width: 22px; height: 22px; margin-left: 3px; }

    .video-eyebrow { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
    .video-heading { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; line-height: 1.3; }
    .video-sub { font-size: 0.75rem; color: #a8b4c8; }

    /* ── Bottom trust bar ── */
    .trust-bar { background: #fff; border-radius: 14px; }
    .trust-icon { color: var(--gold); flex-shrink: 0; }
    .trust-title { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
    .trust-body  { font-size: 0.72rem; color: #6b7280; line-height: 1.5; }
    .trust-divider { border-left: 1px solid #e5e7eb; }




/* ── Mobile ── */
@media (max-width: 767px) {
  .hero { min-height: auto; }
  .hero-right { height: 55vw; min-height: 220px; }
  .hero-right::before { width: 8%; }
    .card-divider { border-left: none; border-top: 1px solid #e5e7eb; }
    .trust-divider { border-left: none; border-top: 1px solid #e5e7eb; }
}
  @media (max-width: 991px) { .col-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }

      .divider{
        display:none;
      }

      .cta-box{
        min-height:auto;
      }

      .consult-box{
        margin-top:10px;
      } }

    @media (max-width: 575px) { .right-col-divider { border-left: none; }       .cta-title{
        font-size:17px;
      }

      .cta-text{
        font-size:14px;
      }

      .icon-circle{
        width:58px;
        height:58px;
      }

      .icon-circle i{
        font-size:24px;
      }}
