/* =========================
   COLOR + FONT VARIABLES
========================= */
:root {
  --primary-green: #2F4F2F;   /* Headings, primary buttons */
  --accent-green: #3E7A3F;    /* Hover, highlights */
  --gold-accent: #CEB77E;     /* Icons, subtle borders */
  --neutral-offwhite: #F5F2EA;
  --neutral-dark: #444444;
  --neutral-light: #F8F8F8;
  --white: #FFFFFF;

  --border-radius: 12px;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* =========================
   BASE TYPOGRAPHY
========================= */
body {

  background-color: var(--neutral-offwhite);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif; /* Elegant headings */
  color: var(--primary-green) !important;
  font-weight: 600;
}

/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonial-section {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--neutral-light);
}

.testimonial-container {
  width: 100%;
  max-width: 1200px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.testimonial-description {
  font-size: 18px;
  color: var(--neutral-dark);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   TESTIMONIAL CARD
========================= */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--gold-accent);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 10px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
  color: var(--gold-accent);
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-text strong {
  color: var(--primary-green);
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-light);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  border: 2px solid var(--accent-green);
}

.testimonial-author-info h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 4px;
}

.testimonial-author-info small {
  font-size: 14px;
  color: var(--neutral-dark);
  opacity: 0.7;
}

/* =========================
   BUTTON STYLES
========================= */
.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--accent-green);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 32px;
  }
  .testimonial-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-title {
    font-size: 28px;
  }
  .testimonial-subtitle {
    font-size: 16px;
  }
  .testimonial-card {
    padding: 20px;
  }
}
