
/* ==========================================================
   EKONİS — Görselli Sektör Kartları
   Bu dosya style.css ve services-cards.css'ten sonra yüklenir.
   ========================================================== */

#sektorler.ek-sectors-section {
  position: relative;
  padding: 92px 0 96px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 15%, rgba(7, 151, 197, 0.22), transparent 27rem),
    radial-gradient(circle at 92% 80%, rgba(50, 183, 80, 0.16), transparent 25rem),
    linear-gradient(145deg, #062f43 0%, #073b51 54%, #052b3d 100%);
}

#sektorler.ek-sectors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 93%);
}

#sektorler .ek-sectors-container {
  position: relative;
  z-index: 1;
}

#sektorler .ek-sectors-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}

#sektorler .eyebrow {
  color: #5ad56f;
}

#sektorler .ek-sectors-heading-main h2 {
  max-width: 840px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4.05rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

#sektorler .ek-sectors-heading-copy {
  padding-bottom: 8px;
}

#sektorler .ek-sectors-heading-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(231, 244, 248, 0.77);
  font-size: 1rem;
  line-height: 1.76;
}

#sektorler .ek-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#sektorler .ek-sector-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #ffffff;
  color: #07384d;
  box-shadow: 0 16px 38px rgba(0, 21, 31, 0.19);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

#sektorler .ek-sector-card:hover {
  transform: translateY(-7px);
  border-color: rgba(90, 213, 111, 0.58);
  box-shadow: 0 25px 56px rgba(0, 21, 31, 0.28);
}

#sektorler .ek-sector-media {
  position: relative;
  height: 178px;
  overflow: hidden;
  background: #e7f2f5;
}

#sektorler .ek-sector-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 37, 51, 0.02) 38%,
    rgba(2, 37, 51, 0.42) 100%
  );
}

#sektorler .ek-sector-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

#sektorler .ek-sector-card:hover .ek-sector-media img {
  transform: scale(1.05);
}

#sektorler .ek-sector-number {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(5, 47, 67, 0.89);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

#sektorler .ek-sector-body {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 22px 22px 21px;
}

#sektorler .ek-sector-body h3 {
  min-height: 2.55em;
  margin: 0 0 10px;
  color: #07384d;
  font-size: 1.12rem;
  line-height: 1.27;
  letter-spacing: -0.018em;
}

#sektorler .ek-sector-body > p {
  margin: 0;
  color: #607986;
  font-size: 0.82rem;
  line-height: 1.66;
}

#sektorler .ek-sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px;
}

#sektorler .ek-sector-tag {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(7, 151, 197, 0.12);
  border-radius: 999px;
  background: #f0f7f9;
  color: #53717d;
  font-size: 0.64rem;
  font-weight: 760;
  line-height: 1.2;
}

#sektorler .ek-sector-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-top: 20px;
  color: #078eb9;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

#sektorler .ek-sector-cta span {
  flex: 0 0 auto;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

#sektorler .ek-sector-cta:hover {
  color: #32b750;
}

#sektorler .ek-sector-cta:hover span {
  transform: translateX(4px);
}

#sektorler .ek-sectors-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 25px 27px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

#sektorler .ek-sectors-bottom > div {
  display: grid;
  gap: 5px;
}

#sektorler .ek-sectors-bottom strong {
  color: #ffffff;
  font-size: 1rem;
}

#sektorler .ek-sectors-bottom span {
  color: rgba(231, 244, 248, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}

#sektorler .ek-sectors-bottom .button.primary {
  flex: 0 0 auto;
  background: #079fcf;
  border-color: #079fcf;
}

#sektorler .ek-sectors-bottom .button.primary:hover {
  background: #32b750;
  border-color: #32b750;
}

@media (max-width: 1180px) {
  #sektorler .ek-sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  #sektorler .ek-sectors-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  #sektorler .ek-sectors-heading-copy {
    padding-bottom: 0;
  }

  #sektorler .ek-sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  #sektorler.ek-sectors-section {
    padding: 66px 0 72px;
  }

  #sektorler .ek-sectors-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #sektorler .ek-sectors-heading {
    margin-bottom: 30px;
  }

  #sektorler .ek-sectors-heading-main h2 {
    font-size: clamp(2.05rem, 9.5vw, 3rem);
  }

  #sektorler .ek-sector-media {
    height: 215px;
  }

  #sektorler .ek-sector-body {
    min-height: auto;
  }

  #sektorler .ek-sector-body h3 {
    min-height: auto;
  }

  #sektorler .ek-sectors-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  #sektorler .ek-sectors-bottom .button.primary {
    width: 100%;
  }
}
