.references-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 140px 20px 100px;
}

.references-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.references-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.references-hero p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .references-hero {
        padding: 120px 20px 80px;
    }

    .references-hero h1 {
        font-size: 36px;
    }

    .references-hero p {
        font-size: 16px;
    }
}



/* ========== REFERANSLAR ========== */
.references-section {
  background-color: #fff;
  padding: 100px 20px;
}

.references-header {
  text-align: center;
  margin-bottom: 60px;
}

.references-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.references-header p {
  font-size: 16px;
  color: #555;
}

/* Grid yapı */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kartlar */
.reference-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
}

.reference-card:hover {
  background-color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.reference-card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.9;
}

.reference-card span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .references-header h2 {
    font-size: 26px;
  }

  .reference-card img {
    width: 80px;
  }
}




/* ========== MÜVEKKİL GÖRÜŞLERİ ========== */
.testimonials-section {
  background-color: #f8f9fa;
  padding: 100px 20px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-header p {
  color: #555;
  font-size: 16px;
}

/* Grid yapı */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kart */
.testimonial-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.quote-icon {
  color: #e63946;
  font-size: 36px;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card strong {
  font-weight: 700;
  color: #000;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 26px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}





/* ========== İSTATİSTİKLER / BAŞARI SAYILARI ========== */
.stats-section {
  background-color: #fff;
  padding: 55px 20px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
}

/* Her sayı bloğu */
.stat-item h3 {
  color: #e63946;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  color: #555;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 32px;
  }

  .stat-item p {
    font-size: 15px;
  }
}
