/* Mobile Footer CTA */
.mobile-footer-cta {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  gap: 10px;

  padding:8px;
  border-radius:4px;
  /* background: linear-gradient(135deg, #223147, #2c3e50); */
  background: linear-gradient(135deg, #223147, #1a2538, #0f1724);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-radius: 20px 20px 0px 0px;
}



/* Buttons */
.cta-btn {
  flex: 1;
  text-decoration: none;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 5px 2px;
  border-radius:50px;

  font-size:11px;
  font-weight: 600;

  transition: all 0.3s ease;
}

/* Icons */
.cta-btn i {
  font-size:20px;
  margin-bottom: 4px;
}

/* Individual Gradients */
/* .cta-btn.call {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.cta-btn.ride {
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

.cta-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
} */

/* Glossy Effect */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height: 50%;
  border-radius: 14px;
  /* background: rgba(255,255,255,0.25); */
  opacity: 0.3;
}

/* Hover / Tap Effect */
.cta-btn:active {
  transform: scale(0.95);
}

/* ❌ Hide on Desktop */
@media (min-width: 769px) {
  .mobile-footer-cta {
    display: none;
  }
}