/* 
=========================
HAKKIMIZDA (ABOUT US) ALANI 
=========================
*/
.about-section {
  padding: 1.5rem 0 4rem 0; /* Yukarıdaki devasa boşluk engellenip içeriğin ekrana sığması için kısıtlandı */
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-header {
  margin-bottom: 2rem; /* Başlık ile görsel arası boşluk azaltıldı */
}

.about-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1.2rem;
  display: inline-block;
}

/* Şık Marka Çizgi Vurgusu (Ana Sayfa İle Bütünleşik Tasarım) */
.about-header h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 2px;
}

/* Ofis Görseli Estetik Konumu ve Animasyonu */
.about-image {
  width: 100%;
  height: clamp(35rem, 65vh, 48rem); /* Expanded for a more immersive hero feel */
  margin-bottom: 3rem; 
  border-radius: 12px; /* Reduced from 20px */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Slightly deeper shadow for depth */
}

.about-image img {
  width: 100%;
  height: 100%; /* Fill the expanded container */
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
  transform: scale(
    1.03
  ); /* Fare ile resmi yakınlaştıran çok şık bir mikro-etkileşim */
}

.about-content {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.85;
  font-weight: 400;
}

.about-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.2rem;
  letter-spacing: -0.3px;
}

/* YETKİNLİK (4'LÜ RESİMLİ) KARTLARI */
.about-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  width: 100%;
  margin-top: 5rem; /* Yazıdan kartlara olan mesafe */
}

.about-card {
  position: relative;
  border-radius: 8px; /* Reduced from 16px */
  height: 280px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-in-out;
}

/* Siyah şık vizör varsayılan olarak gizli (altta/saydam) duracak */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85); /* Premium Lacivert/Siyah Transparanlık */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.card-overlay span {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transform: translateY(
    20px
  ); /* Kelime hafif alttan yukarı animasyonla gelir */
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Kartların Hover Edildiğinde Etkileşimi */
.about-card:hover img {
  transform: scale(1.1); /* Resim hafifçe büyür */
}

.about-card:hover .card-overlay {
  opacity: 1; /* Siyah vizör görünür olur */
}

.about-card:hover .card-overlay span {
  transform: translateY(0); /* Yazı yukarıdan yerine oturur */
}

/* Responsive (Tablets & Mobile) */
@media (max-width: 1024px) {
  .about-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
  .about-container {
    padding: 0;
  }
  .about-header h1 {
    font-size: 2rem;
  }
  .about-content {
    font-size: 1.05rem;
  }
  .about-cards-container {
    margin-top: 4rem;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .about-card {
    height: 240px;
  }
}
