/* ============================================================
   HAKKIMIZDA SAYFASI — hakkımızda.css
   Header ve footer stilleri header-footer.css'ten gelir
   ============================================================ */

/* Sayfa hero section'ı için header boşluğu */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Yatay taşmayı önle */
}

/* ============================================================
   SECTION 1: SAYFA HERO
   Sol: Mavi arka plan + başlık | Sağ: Fotoğraf
   ============================================================ */
.page-hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 93px;
  height: 339px; /* Misyon/Vizyon ile ayni */
  overflow: hidden;
}

/* Sol yarı – mavi arka plan + başlık */
.page-hero__left {
  flex: 0 0 36.7%; /* Misyon/Vizyon ile ayni */
  background: #004175;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.page-hero__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 3.5vw, 56px); /* Misyon/Vizyon ile ayni */
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -1px;
}

/* Sağ yarı – fotoğraf */
.page-hero__right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.page-hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 55.54%),
    linear-gradient(0deg, rgba(0, 65, 117, 0.2), rgba(0, 65, 117, 0.2));
  pointer-events: none;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .page-hero {
    flex-direction: column;
    height: auto;
    margin-top: 70px;
  }

  .page-hero__left {
    flex: none;
    width: 100%;
    padding: 40px 28px;
    min-height: 160px;
    height: auto;
  }

  .page-hero__right {
    display: none;
  }
}

/* ============================================================
   SECTION 2: BİZİ DAHA YAKINDAN TANIYUN
   Figma: Frame 61263 — row, gap 107px, max-width 1104px
   ============================================================ */
.about-content-section {
  background: #ffffff;
  padding: 120px 0;
  margin-top: 0;
  margin-bottom: 0;
}

.about-content-inner {
  max-width: 1104px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 107px; /* Figma: gap 107px */
  box-sizing: border-box;
}

/* Sol: Logo görseli */
.about-content__visual {
  flex: 0 0 455px; /* Figma: 455px wide */
}

.about-content__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sağ: Tüm içerik */
.about-content__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

/* Metin grubu */
.about-content__text {
  display: flex;
  flex-direction: column;
  gap: 32px; /* Figma: Frame 61262 gap 32px */
}

.about-content__heading {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Figma: Frame 18 gap 10px */
}

.about-content__label {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 5px;
  color: #5480a3;
  text-transform: uppercase;
}

.about-content__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 2.9vw, 42px); /* Figma: 42px */
  font-weight: 500;
  line-height: 53px;
  letter-spacing: -1px;
  color: #161616;
  margin: 0;
}

.about-content__desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #474747;
  margin: 0;
}

/* Stat kartları */
.about-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px; /* Figma: Frame 61272 gap 20px */
}

.about-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px 37px;
  gap: 10px;
  width: 261px;
  height: 153px;
  background: #f9f9f8;
  border-radius: 6px;
  box-sizing: border-box;
  flex: none;
  transition: transform 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
}

.about-stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 3px;
}

.about-stat-number {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 66px;
  display: flex;
  align-items: center;
  color: #ffa300;
}

.about-stat-label {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  display: flex;
  align-items: center;
  color: #161616;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-content-inner {
    gap: 60px;
  }
  .about-content__visual {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .about-content-section {
    padding: 60px 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about-content-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  .about-content__visual {
    flex: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }
  .about-stat-card {
    width: 100%;
    max-width: 261px;
  }
}
