html {
  scroll-behavior: smooth;
}
.mobile-sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #16a34a;
    color: #fff;
    text-decoration: none;

    padding: 16px 20px;
    border-radius: 14px;

    font-size: 18px;
    font-weight: 700;

    box-shadow: 0 8px 24px rgba(0,0,0,0.2);

    animation: pulseCTA 2s infinite;
}

/* hover */
.mobile-sticky-cta:hover {
    background: #15803d;
    color: #fff;
}

/* icon */
.mobile-sticky-cta i {
    font-size: 20px;
}

/* tik mobile */
@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* subtle pulse */
@keyframes pulseCTA {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}


/* OVERLAY */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

/* ACTIVE */
.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* POPUP */
.exit-popup {
    position: relative;

    width: 100%;
    max-width: 420px;

    background: #fff;
    border-radius: 20px;

    padding: 36px 28px 28px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.25);

    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.exit-popup-overlay.active .exit-popup {
    transform: translateY(0);
}

/* CLOSE BUTTON */
.exit-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 44px;
    height: 44px;

    border: none;
    background: transparent;

    cursor: pointer;

    font-size: 28px;
    line-height: 1;

    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* HEADING */
.exit-popup h2 {
    margin: 0 0 14px;

    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;

    color: #111;
}

/* BODY */
.exit-popup p {
    margin: 0 0 24px;

    font-size: 17px;
    line-height: 1.6;

    color: #4b5563;
}

/* CTA */
.exit-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 56px;

    background: #16a34a;
    color: #fff;

    text-decoration: none;

    border-radius: 14px;

    font-size: 18px;
    font-weight: 700;

    transition: background 0.2s ease;
}

.exit-popup-cta:hover {
    background: #15803d;
    color: #fff;
}

/* MOBILE */
@media (max-width: 480px) {

    .exit-popup {
        padding: 34px 22px 22px;
        border-radius: 18px;
    }

    .exit-popup h2 {
        font-size: 24px;
    }

    .exit-popup p {
        font-size: 16px;
    }
}

.testimonials {
  padding: 80px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.quote {
  color: #374151;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.name {
  font-weight: 600;
  color: #111827;
}

.location {
  font-size: 14px;
  color: #6b7280;
  margin-top: 2px;
}

#reviews {
    margin-bottom: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-title {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .testimonials {
    padding: 60px 16px;
  }

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

  .testimonial-card {
    padding: 24px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .quote {
    font-size: 14px;
  }
}

.quick-takeaway {
  background: #f7f9fc;
  border-left: 5px solid #41AD49;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-takeaway__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.quick-takeaway__text {
  margin: 0;
  line-height: 1.7;
  color: #4b5563;
  font-size: 19px;
}