/* ========== Enhancements for Bloom Flower Wall ========== */

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* --- Pulse animation for CTA --- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(116, 168, 140, 0.32); }
  50% { box-shadow: 0 0 20px 8px rgba(116, 168, 140, 0.22); }
}
.cta-hero {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(133, 182, 154, 0.92), rgba(96, 148, 121, 0.88));
  border: none;
  border-radius: 50px;
  text-decoration: none;
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.cta-hero:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(109, 161, 133, 0.92), rgba(78, 126, 102, 0.9));
  color: #fff;
}

/* --- Testimonials Section --- */
.testimonials {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #333;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(116, 168, 140, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.testimonial-stars {
  color: #f5c518;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.testimonial-author {
  font-weight: 700;
  color: rgba(88, 136, 112, 0.95);
  font-size: 0.9rem;
}
.testimonial-event {
  color: #999;
  font-size: 0.8rem;
}
