/* CCW Concierge - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* FAQ toggle animation */
.faq-item .faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Focus styles */
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* Custom checkbox styles */
input[type="checkbox"] {
  cursor: pointer;
  accent-color: #2952e8;
}

/* Pulse animation for the green dot */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
