/* ========================================
   TESTIMONIALS SECTION (SHARED)
   ======================================== */

.testimonials-block {
  padding: 80px 20px;
}

.testimonials-block .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.testimonials-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  text-align: center;
  margin: 0 0 50px 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 0 auto;
}

/* Individual Testimonial Card */
.testimonial-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

/* Reviewer Info */
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* Reviewer Avatar */
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviewer-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Reviewer Details */
.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.reviewer-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
}

.reviewer-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #666666;
  margin: 0;
}

/* Google Icon */
.testimonial-header svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}

.star {
  font-size: 16px;
  line-height: 1;
}

.star-filled {
  color: #FBBC05;
}

.star-empty {
  color: #E0E0E0;
}

/* Review Date */
.review-date {
  font-size: 13px;
  font-weight: 400;
  color: #888888;
  margin: 0;
  line-height: 1.4;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
  margin: 0;
}

/* ----------------------------------------
   Responsive Breakpoints
   ---------------------------------------- */

@media (max-width: 768px) {
  .testimonials-block {
    padding: 60px 20px;
  }

  .testimonials-heading {
    font-size: 32px;
    margin: 0 0 40px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-heading {
    font-size: 28px;
  }

  .reviewer-avatar,
  .reviewer-avatar-placeholder {
    width: 40px;
    height: 40px;
  }

  .reviewer-avatar-placeholder {
    font-size: 18px;
  }

  .reviewer-name {
    font-size: 14px;
  }
}

/* ========================================
   FAQs SECTION (SHARED)
   Two-column accordion layout
   ======================================== */

.faqs-section {
  padding: 80px 20px;
  background: transparent;
}

.faqs-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #E6E6E6;
  border-radius: 65px;
  padding: 60px 40px;
}

/* Section Heading */
.faqs-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #222222;
  text-align: center;
  margin: 0 0 50px 0;
}

/* FAQ Grid - Two Columns */
.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  max-width: 100%;
}

/* Individual FAQ Item */
.faqs-item {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* FAQ Question (Button) */
.faqs-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faqs-question:hover {
  background: rgba(255, 255, 255, 0.3);
}

.question-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #222222;
  flex: 1;
}

/* FAQ Icon (Plus/Minus) */
.faqs-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: transform 0.3s ease;
}

.icon-minus {
  display: none;
}

.faqs-item.active .icon-plus {
  display: none;
}

.faqs-item.active .icon-minus {
  display: block;
}

/* FAQ Answer (Collapsible) */
.faqs-answer {
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 0;
}

.faqs-answer[hidden] {
  display: block;
  max-height: 0;
}

.faqs-item.active .faqs-answer {
  max-height: 500px;
}

.faqs-answer-content {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.faqs-answer-content p {
  margin: 0 0 12px 0;
}

.faqs-answer-content p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------
   Responsive Breakpoints
   ---------------------------------------- */

@media (max-width: 991px) {
  .faqs-container {
    padding: 50px 30px;
    border-radius: 40px;
  }

  .faqs-grid {
    gap: 16px 30px;
  }
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 60px 20px;
  }

  .faqs-container {
    padding: 40px 24px;
    border-radius: 32px;
  }

  .faqs-heading {
    font-size: 32px;
    margin: 0 0 40px 0;
  }

  .faqs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faqs-question {
    padding: 16px 20px;
  }

  .question-text {
    font-size: 15px;
  }

  .faqs-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faqs-container {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .faqs-heading {
    font-size: 28px;
  }

  .faqs-question {
    padding: 14px 16px;
  }

  .question-text {
    font-size: 14px;
  }

  .faqs-icon {
    width: 20px;
    height: 20px;
  }
}

