* {
  padding: 0;
  margin: 0;

  text-decoration: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  overflow-y: visible;
  height: auto;
}

/*////////// HEADING //////////*/

.heading-content {
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #FFFFFF, #EFE9E4);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.centered {
  position: relative;
  padding: 24px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.heading-title {
  font-family: "Jost", sans-serif;
  font-size: 1.3em;
  color: #4a4b49;
  letter-spacing: 0.2em;
}
.title {
  font-family: "Bodoni Moda", serif;
  font-size: 2.8em;
  color: #4a4b49;
}

.cta-button {
  padding: 20px;
  background-color: #bfa5a3;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  border: none;
  color: whitesmoke;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #d8c4c8;
  color: white;
}

/*////////// TESTIMONIALS //////////*/

.testimonials-container {
  margin-right: 100px;
  margin-left: 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.testimonials-content {
  width: 100%;
  height: 40vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  justify-content: center;
  background-position: center;
  background-color: white;
}

.testimonials-title {
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  color: #4a4b49;
  padding: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.testimonials-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  color: #4a4b49;
  padding: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/*////////// FIVE STARS SECTION //////////*/

.stars-section {
  text-align: center;
  padding: 200px 0 60px 0;
  background-color: white;
}

.five-stars {
  margin-bottom: 20px;
}

.five-stars i {
  color: #a18e92;
  font-size: 2em;
  margin: 0 8px;
}

.stars-text {
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  color: #4a4b49;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stars-text a {
  color: #bfa5a3;
  text-decoration: none;
  font-weight: 500;
}

.stars-text a:hover {
  color: #a18e92;
  text-decoration: underline;
}

/*////////// REVIEWS GRID //////////*/

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  overflow: visible;
  height: auto;
  min-height: auto;
}

.reviews-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

.review-row {
  display: flex !important;
  justify-content: space-between !important;
  margin-bottom: 40px !important;
  gap: 30px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
  overflow: visible !important;
  align-items: stretch !important;
}

.review-row:last-child {
  margin-bottom: 0;
}

.review-card {
  flex: 1 !important;
  background-color: #f8f8f8 !important;
  padding: 40px 30px !important;
  text-align: center !important;
  border-radius: 8px !important;
  position: relative !important;
  box-sizing: border-box !important;
  min-height: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.quote-icon {
  font-size: 56px;
  color: #efe9e3;
  margin-bottom: 20px;
}

.review-text {
  font-family: "Jost", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  color: #4a4b49;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: normal;
  flex-grow: 1;
  overflow: visible;
  word-wrap: break-word;
}

.reviewer-name {
  font-family: "Jost", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #4a4b49;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive Design for Reviews */
@media (max-width: 992px) {
  .testimonials-container {
    padding: 40px 30px;
  }
  
  .review-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .review-card {
    padding: 30px 20px;
    min-height: auto;
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .five-stars i {
    font-size: 1.8em;
    margin: 0 6px;
  }
  
  .stars-text {
    font-size: 1em;
  }
  
  .testimonials-container {
    padding: 30px 20px;
  }
  
  .review-card {
    padding: 25px 15px;
    min-height: auto;
    height: auto;
  }
  
  .review-text {
    font-size: 1em;
  }
  
  .quote-icon {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .five-stars i {
    font-size: 1.6em;
    margin: 0 4px;
  }
  
  .stars-section {
    padding: 40px 0 30px 0;
  }
  
  .testimonials-container {
    padding: 20px 15px;
  }
  
  .review-card {
    padding: 20px 12px;
    min-height: auto;
    height: auto;
  }
  
  .review-text {
    font-size: 0.95em;
  }
  
  .quote-icon {
    font-size: 40px;
  }
}

/* ///////// Javascript Scroll Reveal ////////// */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

/* Remove transition from title */
.title {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}
