/* ==========================================================================
   EKİBİMİZ SAYFASI STİLLERİ
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.page-hero.ekibimiz-hero {
  background-image: url("../../img/ekibimiz-hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 280px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.page-hero.ekibimiz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 29, 73, 0.8) 0%,
    rgba(7, 29, 73, 0.6) 50%,
    rgba(7, 29, 73, 0.4) 100%
  );
  z-index: 1;
}

.page-hero.ekibimiz-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero.ekibimiz-hero .page-title {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
  .page-hero.ekibimiz-hero {
    min-height: 220px;
  }
  
  .page-hero.ekibimiz-hero .page-title {
    font-size: 2.2rem;
  }
}

/* --------------------------------------------------------------------------
   TEAM SECTION
   -------------------------------------------------------------------------- */
.team-section {
  background: #fff;
  padding: 4rem 0;
}

.team-member-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 3 / 4;
  background: #f0f2f5;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 29, 73, 0.95) 0%, rgba(7, 29, 73, 0.8) 70%, transparent 100%);
  padding: 3rem 1.2rem 1.2rem;
  color: #fff;
}

.team-member-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.team-member-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: #071D49;
  padding: 4rem 0;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #fff;
  color: #071D49;
}

.btn-cta svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .team-member-card {
    aspect-ratio: 1 / 1;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }
}
