/* Testimonials Page Specific Styles */

/* Testimonials Hero */
.testimonials-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('../img4.JPEG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 45px;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: "Aclonica", sans-serif;
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--secondary-beige);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Testimonial Card */
.testimonial-card {
  background-color: var(--primary-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 2rem;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--accent-gold);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.client-details p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

.rating {
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
  color: #555;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../port5.jpeg') center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.cta-container p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.cta-container .btn {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
}

.cta-container .btn:hover {
  background-color: var(--text-light);
  border-color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .testimonials-hero {
    height: 50vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .testimonials-container {
    padding: 0 1rem;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .testimonials-hero {
    height: 40vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .client-image {
    width: 60px;
    height: 60px;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-container h2 {
    font-size: 1.8rem;
  }
  
  .cta-container p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .testimonials-hero {
    height: 35vh;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
  }
  
  .client-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}