/* Manava Widget — Final CTA (eyebrow + title + subline + 3 action buttons)
   base styles. Mirrors the original design exactly; Elementor's control-generated
   CSS layers on top of this per widget instance. Scoped under a class (not an ID)
   so the widget can be dropped onto a page more than once. */

.mh-fcta-section{
  --mh-bg-navy:#0f2438;
  --mh-text-white:#ffffff;
  --mh-btn-gold:#ba9959;
  --mh-btn-terracotta:#c1794a;

  position:relative;
  background:var(--mh-bg-navy);
  padding:90px 24px;
  font-family:'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
  box-sizing:border-box;
  overflow:hidden;
  text-align:center;
}
.mh-fcta-section *{box-sizing:border-box;}

.mh-fcta-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:0.22;
  pointer-events:none;
}
.mh-fcta-glow-1{
  width:420px;height:420px;
  background:radial-gradient(circle, var(--mh-btn-gold), transparent 70%);
  top:-160px; left:-100px;
}
.mh-fcta-glow-2{
  width:460px;height:460px;
  background:radial-gradient(circle, var(--mh-btn-terracotta), transparent 70%);
  bottom:-200px; right:-120px;
}

.mh-fcta-inner{
  position:relative;
  max-width:640px;
  margin:0 auto;
}

.mh-fcta-eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--mh-btn-gold);
  margin:0 0 16px;
  text-transform:uppercase;
}

.mh-fcta-title{
  font-family:'Playfair Display', Georgia, serif;
  font-size:38px;
  color:var(--mh-text-white);
  margin:0 0 16px;
  font-weight:800;
  line-height:1.25;
}

.mh-fcta-subline{
  font-size:15.5px;
  color:rgba(255,255,255,0.68);
  margin:0 0 40px;
  line-height:1.6;
}

.mh-fcta-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.mh-fcta-btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  font-size:14.5px;
  font-weight:700;
  padding:14px 24px;
  border-radius:9px;
  transition:background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
}
.mh-fcta-btn svg{width:18px;height:18px;flex-shrink:0;}
.mh-fcta-btn:hover,
.mh-fcta-btn:focus,
.mh-fcta-btn:active,
.mh-fcta-btn:visited{
  text-decoration:none;
}
.mh-fcta-btn:hover{transform:translateY(-2px);}

.mh-fcta-btn-primary{
  background:var(--mh-btn-gold);
  color:var(--mh-bg-navy);
}
.mh-fcta-btn-primary:hover{
  background:#ffffff;
}

.mh-fcta-btn-secondary{
  background:var(--mh-btn-terracotta);
  color:#ffffff;
}
.mh-fcta-btn-secondary:hover{
  background:var(--mh-btn-gold);
  color:var(--mh-bg-navy);
}

.mh-fcta-btn-ghost{
  background:transparent;
  color:#ffffff;
  border:1.5px solid rgba(255,255,255,0.4);
}
.mh-fcta-btn-ghost:hover{
  border-color:#ffffff;
  background:rgba(255,255,255,0.08);
}

/* ---------- MOBILE ---------- */
@media (max-width: 560px){
  .mh-fcta-section{padding:64px 20px;}
  .mh-fcta-title{font-size:27px;}
  .mh-fcta-subline{font-size:14px;margin-bottom:32px;}
  .mh-fcta-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .mh-fcta-btn{
    justify-content:center;
    width:100%;
  }
}
