.text-4xl {
    font-size: 2rem !important;
    line-height: 2.5rem;
}


 @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  .animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
  }


  @media (max-width: 767px) {
    body {
      padding-bottom: 70px;
    }
       #wp-myBtn {display: none !important;} 
  }



  .enquire-btn {
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s infinite;
}

.enquire-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(203,172,10,.6); }
  70% { box-shadow: 0 0 0 10px rgba(203,172,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,172,10,0); }
}

@keyframes shine {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}






.whatsapp-cta {
  position: relative;
  overflow: hidden;
  animation: pulseGlowGreen 2s infinite;
}

.whatsapp-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes pulseGlowGreen {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Re-used shine animation */
@keyframes shine {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}





.cta-pulse {
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s infinite;
}

.cta-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(203,172,10,.6); }
  70% { box-shadow: 0 0 0 12px rgba(203,172,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,172,10,0); }
}

@keyframes shine {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}