/* =======================================================
   HAKKIMIZDA SAYFASI – PREMIUM + NETLİK (FINAL SÜRÜM)
======================================================= */

/* GLOBAL NET YAZI RENDERING */
.about-section,
.about-section *,
.about-hero *,
.card.about-card *,
.mission-card *,
.value-card * {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  color: #1a1a1a !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
}

/* Hero Card */
.about-hero {
  margin-top: -60px;
  margin-bottom: -80px;
  background: transparent !important;
}

/* Kartlar Grid */
.about-cards {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* ANA CARD (SARI ÇERÇEVE + TAM BEYAZ ARKA PLAN) */
.card.about-card {
  background: #ffffff !important;   /* ✔ Tam opak, hiç blur yok */
  border-radius: 25px;
  padding: 40px 30px;
  border: 3px solid #ffcc00;
  transition: transform 0.3s ease;
  box-shadow: none !important;
}

/* Hover */
.card.about-card:hover {
  transform: translateY(-8px);
}

/* Başlık */
.card.about-card h2,
.about-cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #002b5c !important;
  margin-bottom: 25px;
  text-align: center;
}

/* METİN (Net Siyah) */
.card.about-card p,
.mission-card p,
.value-card p,
.text-bold {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: #111 !important;        /* ✔ En net siyah tonu */
  text-align: center;
}

/* Logo */
.card-image {
  margin-bottom: 25px;
}

.card-logo {
  display: block;
  margin: 0 auto;
  width: 120px;
  border-radius: 15px;
  transition: 0.3s ease;
}

.card-logo:hover {
  transform: scale(1.05);
}

/* Vizyon & Misyon Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 22px;
}

.mission-card {
  background: #ffffff !important;      /* ✔ TAM BEYAZ → NET METİN */
  border-radius: 20px;
  padding: 25px;
  border: 2px solid #ffcc00;
  text-align: center;
  transition: 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #002b5c !important;
  margin-bottom: 15px;
}

/* Değerler */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 22px;
}

.value-card {
  background: #ffffff !important;      /* ✔ Blur yok, haze yok */
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  border: 2px solid #ffcc00;
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #002b5c !important;
  margin-bottom: 10px;
}

/* CTA Kart */
.about-cta-card {
  background: linear-gradient(135deg, #ffcc00, #ffd633);
  color: #1b4d86;
  text-align: center;
  padding: 50px 30px;
  border-radius: 25px;
  border: 3px solid #2d6eb7;
}

/* CTA Button */
.btn-cta {
  background: #4291ec;
  color: #fff;
  padding: 25px 30px;
  font-weight: 700;
  border-radius: 200px;
  text-transform: uppercase;
  transition: 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.btn-cta:hover {
  background: #005eff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .card-logo { width: 100px; }
  .mission-card h3,
  .value-card h4 {
    font-size: 1.2rem;
  }
}
