/* style.css - Custom Tailwind Overrides & Animations */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

/* Custom Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Smooth Scrollbar */
html {
  scroll-behavior: smooth;
}
body.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  overflow: hidden;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior-y: contain;
}

/* Custom Form Styling */
input[type="date"] {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") no-repeat right 0.5rem center/1.5em 1.5em;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* Floating Labels (for future enhancement) */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: #F58F43;
  box-shadow: 0 0 0 3px rgba(245, 143, 67, 0.2);
}
.form-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.2s;
}
.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -0.75rem;
  left: 0.5rem;
  font-size: 0.75rem;
  background: white;
  padding: 0 0.25rem;
  color: #F58F43;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .mobile-hidden { display: none !important; }
  .mobile-block { display: block !important; }
  .text-center-mobile { text-align: center !important; }
  .flex-col-mobile { flex-direction: column !important; }
}

/* Hover Effects */
.hover-grow {
  transition: transform 0.3s ease;
}
.hover-grow:hover {
  transform: scale(1.03);
}

/* Trust Badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-weight: 600;
}
.trust-badge img {
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* Sticky WhatsApp Button */
#whatsapp-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #25D366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
#whatsapp-sticky:hover {
  transform: scale(1.1);
  background: #128C7E;
}

/* Lenis Smooth Scroll */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}