/* ==========================================================================
   ŞİRKET PROFİLİ SAYFASI STİLLERİ
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.page-hero.sirket-profili-hero {
  background-image: url("../../img/hak2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.page-hero.sirket-profili-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 29, 73, 0.85) 0%,
    rgba(7, 29, 73, 0.7) 50%,
    rgba(7, 29, 73, 0.5) 100%
  );
  z-index: 1;
}

.page-hero.sirket-profili-hero .container {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   PROFILE SECTION
   -------------------------------------------------------------------------- */
.profile-section {
  background: #fff;
  padding: 4rem 0;
}

.profile-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}

.profile-content {
  padding-left: 2rem;
}

.profile-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #005bff;
  margin-bottom: 1.5rem;
}

.profile-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   SLIDER CONTROLS
   -------------------------------------------------------------------------- */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

.slider-pagination {
  font-size: 1rem;
  color: #071D49;
  font-weight: 500;
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: none;
  background: #071D49;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.slider-arrow:hover {
  background: #005bff;
}

.slider-arrow:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .profile-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .profile-image {
    height: 280px;
  }
}

