/* ================= STICKY CTA BAR ================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b1c2d;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9998;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.sticky-cta p {
  margin: 0;
  font-size: 15px;
}

.sticky-btn {
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-btn:hover {
  background: #e55d00;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .sticky-cta {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .sticky-cta p {
    font-size: 14px;
  }
}
