/* ==========================================================================
   ANASAYFA STİLLERİ
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("../../img/hero-img2.png");
  background-size: cover;             /* Sağdan soldan tam otursun */
  background-position: center right;  /* Görseli sağa yasla, kırpma merkezli olsun */
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.hero .container {
  padding-top: 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 23, 66, 0.9) 0%,
    rgba(0, 23, 66, 0.6) 40%,
    rgba(0, 23, 66, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  padding: 4rem 0;
  max-width: 520px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.btn-hero {
  border-radius: 0;
  padding: 0.7rem 1.9rem;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.btn-hero:hover {
  background: #ffffff;
  color: #001742;
}

/* --------------------------------------------------------------------------
   HAKKIMIZDA SECTION
   -------------------------------------------------------------------------- */
.about-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.quote {
  font-style: italic;
  font-size: 0.9rem;
  color: #777;
  margin-top: 1.5rem;
}

.values-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-top: 150px;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-values-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.25rem;
  max-width: 340px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-values-overlay .section-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   İSTATİSTİKLER SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  background: #001742;
  color: #fff;
  padding: 3.5rem 0;
}

.stats-section .section-label {
  color: #a4b3d9;
}

.stats-section .section-title {
  color: #fff;
  margin-bottom: 1.3rem;
}

.stats-section p {
  color: #d7e0ff;
  font-size: 0.95rem;
}

.stats-section .section-label-about {
  color: #ffffff;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.col-6:first-child .stat-item,
.col-md-3:first-child .stat-item {
  border-left: none;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a4b3d9;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .hero {
    min-height: 320px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .about-values-overlay {
    position: static;
    margin-top: 1rem;
    box-shadow: none;
  }

  .stat-item {
    padding: 1rem 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

