/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
  padding: 5rem 0;
  background-color: #fff;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #382a25;
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-content {
  max-width: 1100px;
  margin: 0 auto;
}

/* Google Reviews Container */
.google-reviews {
  background-color: #fafafa;
  border-radius: 5px;
  padding: 2.5rem;
  border: 1px solid #e5e5e5;
}

/* Google Header */
.google-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2rem;
}

.google-icon {
  flex-shrink: 0;
}

.google-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.rating-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.review-count {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Review Card */
.review-card {
  background-color: white;
  border-radius: 5px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
}

.review-stars {
  font-size: 0.85rem;
  line-height: 1;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Google Link */
.google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: flex;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(163, 133, 101, 0.2);
}

.google-link:hover {
  background-color: #8b7355;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(163, 133, 101, 0.3);
}

.google-link svg {
  transition: transform 0.3s ease;
}

.google-link:hover svg {
  transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }

  .google-reviews {
    padding: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .google-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonials-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .google-reviews {
    padding: 1.5rem;
  }

  .google-header {
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .google-info h3 {
    font-size: 1.25rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .google-link {
    width: 100%;
    justify-content: center;
  }
}
