/* GENEL SARMALAYICI */
.hakkimizda-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ÜSTTEKİ METİN BLOĞU */
.hakkimizda-top {
  margin-bottom: 50px;
}

.hakkimizda-main-title {
  font-size: 32px;
  color: #000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hakkimizda-secondary {
  font-size: 18px;
  color: #444;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.hakkimizda-paragraph {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-top: 15px;
  max-width: 900px;
}

/* ALTTAKİ BLOK */
.hakkimizda-fullwidth {
  width: 100%;
  box-sizing: border-box;
}

.hakkimizda-services-card {
  margin: 0 auto;
  background: #ffffff7e;
  border: 1px solid #ddd;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hakkimizda-sidebar-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(0, 140, 255, 0.795);
  padding-bottom: 8px;
  color: #000;
}

/* ŞİRKET LİSTESİ */
.hakkimizda-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hakkimizda-service-list li {
  background-color: rgba(0, 140, 255, 0.795);
  padding: 16px 20px;
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 3px;
}

.hakkimizda-service-list li:hover {
  background-color: #e9e9e9;
}

.hakkimizda-active {
  background-color: #0075ff !important;
  color: #fff;
  font-weight: bold;
}

.hakkimizda-active span {
  color: #fff;
}

.hakkimizda-subtext {
  font-size: 14px;
  color: #555;
  margin: 8px 0 20px 0;
  padding-left: 10px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
  .hakkimizda-wrapper {
    padding: 0 15px;
  }

  .hakkimizda-main-title {
    font-size: 24px;
    text-align: center;
  }

  .hakkimizda-secondary,
  .hakkimizda-paragraph,
  .hakkimizda-sidebar-title {
    text-align: center;
  }

  .hakkimizda-services-card {
    padding: 20px;
  }

  .hakkimizda-subtext {
    text-align: center;
    padding-left: 0;
  }
}
.btn-hakkimizda:hover {
  background-color: #2f5fc4;
  transform: translateY(-2px);
}

/* ANİMASYONLAR */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease-out forwards;
}

.animate-delay {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
