/* Rice Broker - Shared Stylesheet */
html {
  scroll-behavior: smooth;
}
/* WhatsApp Widget Styles */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}
.whatsapp-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.whatsapp-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.whatsapp-menu-header {
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  font-size: 14px;
}
.whatsapp-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}
.whatsapp-menu-item:first-child {
  border-radius: 12px 12px 0 0;
}
.whatsapp-menu-item:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.whatsapp-menu-item:hover {
  background: #f5f5f5;
}
.whatsapp-menu-item svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #25d366;
}
.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.wa-hidden {
  display: none !important;
}
/* Accordion / FAQ styles */
.faq-answer {
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-toggle-icon {
  transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
}
