/* style/testimonials.css */
.page-testimonials {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-testimonials__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-testimonials__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-testimonials__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e5dfd3;
}

.page-testimonials__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-testimonials__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border-color: #FFD700;
}

.page-testimonials__btn--primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
  transform: translateY(-2px);
}

.page-testimonials__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-testimonials__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-testimonials__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-testimonials__section {
  padding: 80px 0;
  text-align: center;
}

.page-testimonials__section:nth-of-type(even) {
  background-color: #2a3447;
}

.page-testimonials__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-testimonials__section-description {
  font-size: 1.1em;
  color: #b0b8c8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-testimonials__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-testimonials__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-testimonials__text-content {
  flex: 1;
}

.page-testimonials__text-content p {
  margin-bottom: 15px;
  color: #e5dfd3;
}

.page-testimonials__image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-testimonials__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-testimonials__card {
  background-color: #2a3447;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a475d;
}

.page-testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.page-testimonials__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-testimonials__card p {
  color: #b0b8c8;
  margin-bottom: 15px;
}

.page-testimonials__card-img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 20px;
}

.page-testimonials__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-testimonials__faq-item {
  background-color: #2a3447;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a475d;
}

.page-testimonials__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-testimonials__faq-answer {
  color: #b0b8c8;
}

.page-testimonials__section--cta {
  background-color: #1A202C;
  padding: 100px 0;
}

.page-testimonials__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background-color: #2a3447;
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-testimonials__cta-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.page-testimonials__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-testimonials__cta-description {
  font-size: 1.2em;
  color: #e5dfd3;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-testimonials__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-testimonials__hero-title {
    font-size: 2.5em;
  }
  .page-testimonials__section-title {
    font-size: 2em;
  }
  .page-testimonials__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-testimonials__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-testimonials__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-testimonials__hero {
    padding: 80px 0;
  }
  .page-testimonials__hero-title {
    font-size: 2em;
  }
  .page-testimonials__hero-subtitle {
    font-size: 1.1em;
  }
  .page-testimonials__section {
    padding: 60px 0;
  }
  .page-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-testimonials__grid, .page-testimonials__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-testimonials__cta-title {
    font-size: 1.8em;
  }
  .page-testimonials__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-testimonials__btn--large {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-testimonials__hero-subtitle {
    font-size: 1em;
  }
  .page-testimonials__section-title {
    font-size: 1.5em;
  }
  .page-testimonials__card-title, .page-testimonials__faq-question {
    font-size: 1.3em;
  }
  .page-testimonials__cta-title {
    font-size: 1.6em;
  }
  .page-testimonials__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}