/* Testimonials Section */
.testimonials {
  background: #f6f2ec;
  padding: 100px 20px;
  text-align: center;
}

.section-subtitle {
  color: #b9a57c;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #4b3b5a;
  margin-bottom: 50px;
}

/* Review Stats */
.review-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.stat-card {
  background: #fff;
  padding: 15px 25px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.google { background: #ea4335; }
.yelp { background: #d32323; }
.facebook { background: #1877f2; }

.stars {
  color: #f5b50a;
  font-size: 14px;
}

.stars span {
  color: #333;
  margin-left: 5px;
}

/* Main Card */
.testimonial-card {
  background: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  position: relative;
}

.testimonial-content {
  display: none;
}

.testimonial-content.active {
  display: block;
}

.quote-reviews {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #5c3d7a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.client h4 {
  margin: 0;
  font-size: 16px;
}

.client p {
  margin: 2px 0;
  font-size: 13px;
  color: #777;
}

.stars.small {
  font-size: 12px;
}

/* Navigation */
.testimonial-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.testimonial-nav button {
  background: #f0e9ff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.review-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  border: 2px solid #6d4a8c;
  border-radius: 40px;
  text-decoration: none;
  color: #6d4a8c;
  font-weight: 600;
  transition: 0.3s;
}

.review-btn:hover {
  background: #6d4a8c;
  color: white;
}

/*  */
/* Section Background */
.family-promise-section {
  background: #5b3b6e;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

/* Container */
.family-promise-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Small Label */
.family-promise-label {
  color: #e7c76a;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Main Heading */
.family-promise-title {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Description */
.family-promise-description {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #d8c8e3;
  line-height: 1.6;
  font-size: 18px;
}

/* Cards Layout */
.family-promise-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

/* Individual Card */
.family-promise-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  width: 300px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.family-promise-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.family-promise-icon {
  font-size: 30px;
  margin-bottom: 20px;
  background: rgba(231, 199, 106, 0.15);
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

/* Card Title */
.family-promise-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* Card Text */
.family-promise-card p {
  font-size: 14px;
  color: #d8c8e3;
}

/* Brand Section */
.family-promise-brand h3 {
  font-size: 26px;
  color: #e7c76a;
  font-style: italic;
  margin-bottom: 5px;
}

.family-promise-brand p {
  color: #cbb6d9;
  font-size: 14px;
  margin-bottom: 40px;
}

/* Contact Row */
.family-promise-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #d8c8e3;
  font-size: 16px;
}