/* ============================================================
   CTA SECTION & WHATSAPP FLOATING BUTTON
   ============================================================ */

/* ── CTA Section ── */
.cta-sec {
  padding: 5rem 0;
  background: var(--bg2);
}

.cta-bx {
  background: linear-gradient(
    135deg,
    var(--green-800)  0%,
    var(--green-600) 40%,
    var(--orange)    100%
  );
  border-radius: var(--rx);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.cta-bx::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bx h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-bx p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 550px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-bs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}

.cta-ct {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-ci {
  font-family: var(--fm);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.cta-ci a           { color: rgba(255, 255, 255, 0.85); }
.cta-ci a:hover     { color: #fff; }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--green-400);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46, 155, 88, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: #fff;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(46, 155, 88, 0.45);
}
