.testimonial-section {
  background: linear-gradient(180deg, #ffffff, #faf7f0);

  position: relative;

  overflow: hidden;

  padding: 80px 0;
}

.testimonial-section .section-title,
.testimonial-section .section-description {
  color: #2b0b47;
}

.testimonial-card {
  position: relative;

  /* background:
    rgba(255,255,255,.08); */

  background: linear-gradient(135deg, #42136a, #2b0b47);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  padding: 35px;

  border-radius: 24px;

  height: 100%;

  transition: 0.5s ease;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, var(--primary-gold), #f5d48e);
}

.testimonial-card:hover {
  transform: translateY(-10px);

  border-color: var(--primary-gold);

  box-shadow:
    0 0 25px rgba(216, 178, 103, 0.3),
    0 0 50px rgba(66, 19, 106, 0.4);
}

.quote-icon {
  font-size: 4rem;

  line-height: 1;

  color: var(--primary-gold);

  margin-bottom: 15px;

  font-family: serif;

  text-shadow: 0 0 15px rgba(216, 178, 103, 0.4);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);

  line-height: 1.9;

  margin-bottom: 25px;

  font-size: 15px;
}

.testimonial-footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}

.testimonial-footer h5 {
  margin: 0;

  font-size: 18px;

  font-weight: 700;

  color: #fff;
}

.testimonial-footer span {
  font-size: 14px;

  color: rgba(255, 255, 255, 0.65);
}

.rating {
  color: var(--primary-gold);

  font-size: 18px;

  letter-spacing: 2px;

  text-shadow: 0 0 10px rgba(216, 178, 103, 0.3);
}

/* Mobile */

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 25px;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-footer h5 {
    font-size: 16px;
  }

  .testimonial-footer span {
    font-size: 13px;
  }

  .quote-icon {
    font-size: 2.8rem;
  }
}
.review-enquiry-section .section-description
{
    color: #2b0b47 !important;
}
.review-enquiry-section {
  background: linear-gradient(180deg, #ffffff, #faf7f0);

  position: relative;

  overflow: hidden;

  padding: 60px 0;
}

.review-enquiry-section::before {
  content: "";

  position: absolute;

  top: -150px;
  right: -100px;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(216, 178, 103, 0.12);

  filter: blur(90px);
}

.glass-form {
  background: linear-gradient(135deg, #41136ac6, #2b0b47eb);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 30px;

  padding: 40px;

  height: 100%;

  transition: 0.5s;
}

.glass-form:hover {
  border-color: var(--primary-gold);

  box-shadow:
    0 0 25px rgba(216, 178, 103, 0.25),
    0 0 50px rgba(66, 19, 106, 0.35);
}

.form-heading {
  color: #fff;

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 30px;
}
input::placeholder,
textarea::placeholder {
  color: #2b0b47 !important;
}

.custom-input {
  background-color: #fff;

  /* background:
    rgba(255,255,255,.08) !important; */

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #fff !important;

  border-radius: 15px;

  padding: 14px 18px;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.custom-input:focus {
  box-shadow: none;

  border-color: var(--primary-gold);

  background: rgba(255, 255, 255, 0.1) !important;
}

.form-label {
  color: #fff;

  margin-bottom: 15px;
}

.rating-stars {
  display: flex;

  gap: 12px;
}

.star {
  font-size: 34px;

  cursor: pointer;

  /* color:
    rgba(255,255,255,.25); */
  color: #ffffff;
  transition: 0.4s;
}

.star.active {
  color: var(--primary-gold);

  animation: tada 0.6s;
}

.theme-btn {
  border: none;

  padding: 14px 34px;

  border-radius: 50px;

  font-weight: 700;

  background: linear-gradient(135deg, var(--primary-gold), #f5d48e);

  color: #111;

  transition: 0.4s;
}

.theme-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 20px rgba(216, 178, 103, 0.35);
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-5deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.15) rotate(5deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.15) rotate(-5deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 991px) {
  .review-enquiry-section {
    padding: 80px 0;
  }

  .glass-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .glass-form {
    padding: 25px;
  }

  .form-heading {
    font-size: 24px;
  }

  .star {
    font-size: 28px;
  }

  .theme-btn {
    width: 100%;
  }
}
