/* ── TESTIMONIALS ── */
.testimonials {
  display: none;
  padding: var(--section-padding);
  background: var(--light-sage);
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage);
  opacity: .3;
  position: absolute;
  top: .5rem;
  left: 1.5rem;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: .92rem;
  line-height: 1.7;
  color: #5a6e66;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage);
}

.testimonial-card__author strong {
  display: block;
  font-size: .9rem;
  color: var(--forest);
}

.testimonial-card__author span {
  font-size: .78rem;
  color: var(--sage);
}

/* ── CTA STRIP ── */
.cta-section {
  padding: 5rem 4rem;
  background: var(--terracotta);
  text-align: center;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-sub {
  color: rgba(255,255,255,.8);
  margin: 0 auto 2.5rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(245,240,232,.7);
  padding: 3.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .logo {
  color: var(--cream);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  color: rgba(245,240,232,.6);
  font-size: .88rem;
  transition: color .2s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer p {
  font-size: .82rem;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}

.whatsapp-float__tooltip {
  background: var(--charcoal);
  color: var(--white);
  font-size: .82rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s;
  animation: waPulse 2.5s infinite;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float__btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.75); }
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .testimonials__header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 4rem 1.5rem;
  }
}
