/* ============================================
   Teknik Özellikler Sayfası
   ============================================ */

/* Renk Değişkenleri */
.ekip-page {
  --ekip-brand-light: #eef4e8;
  --ekip-brand: #2b7a5a;
  --ekip-brand-dark: #143d2c;
  --ekip-brand-text: #2d4a3e;
}

/* Ana İçerik Sarmalayıcı */
.ekip-page {
  font-family: "Outfit", sans-serif;
  color: var(--ekip-brand-text);
  overflow-x: hidden;
}

.ekip-page ::selection {
  background: var(--ekip-brand);
  color: #fff;
}

/* ---- Hero ---- */
.ekip-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 16px 80px;
  position: relative;
}

.ekip-hero h1 {
  font-family: "El Messiri", serif;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 800;
  color: var(--ekip-brand-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.ekip-hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--ekip-brand);
  font-weight: 500;
  margin-bottom: 20px;
}

.ekip-hero-desc {
  color: #595959;
  font-size: 18px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* ---- Etiketli Görsel (Annotated Image) ---- */
.ekip-annotated-wrap {
  width: 100%;
  max-width: 900px;
  margin: 24px auto 32px;
  padding: 0 16px;
}

.ekip-annotated {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.ekip-annotated-img {
  display: block;
  height: auto;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: -100px;
}

.ekip-anno {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--ekip-brand-dark);
  max-width: 200px;
  line-height: 1.25;
  z-index: 2;
  pointer-events: none;
}

.ekip-anno::before {
  content: "";
  position: absolute;
  background: var(--ekip-brand);
  border-radius: 2px;
}

/* Sol üst - Tamponlar */
.ekip-anno--1 {
  top: 10px;
  left: 0;
  transform: rotate(-4deg);
}

.ekip-anno--1::before {
  width: 40px;
  height: 2px;
  bottom: -8px;
  right: 0;
  transform: rotate(20deg);
}

/* Sağ üst - Koltuk Arkalığı */
.ekip-anno--2 {
  top: 10px;
  right: 0;
  text-align: right;
  transform: rotate(3deg);
}

.ekip-anno--2::before {
  width: 40px;
  height: 2px;
  bottom: -8px;
  left: 0;
  transform: rotate(-20deg);
}

/* Sol orta - Frenleme */
.ekip-anno--3 {
  top: 50%;
  left: -10px;
  transform: translateY(-50%) rotate(-2deg);
  max-width: 190px;
  font-size: 20px;
}

.ekip-anno--3::before {
  width: 2px;
  height: 30px;
  top: -34px;
  right: 20px;
}

/* Sağ orta - Emniyet Kemeri */
.ekip-anno--4 {
  top: 45%;
  right: -10px;
  text-align: right;
  transform: translateY(-50%) rotate(2deg);
}

.ekip-anno--4::before {
  width: 2px;
  height: 30px;
  bottom: -34px;
  left: 20px;
}

/* Sol alt - Özel donanım */
.ekip-anno--5 {
  bottom: 0;
  left: 0;
  transform: rotate(2deg);
  max-width: 210px;
  font-size: 19px;
}

.ekip-anno--5::before {
  width: 40px;
  height: 2px;
  top: -8px;
  right: 10px;
  transform: rotate(-15deg);
}

/* Sağ alt - Üç noktalı kemer */
.ekip-anno--6 {
  bottom: 10px;
  right: 10px;
  text-align: right;
  transform: rotate(-3deg);
}

.ekip-anno--6::before {
  width: 40px;
  height: 2px;
  top: -8px;
  left: 0;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .ekip-annotated {
    padding: 60px 8px;
  }

  .ekip-annotated-img {
    margin-left: 0;
  }

  .ekip-anno {
    font-size: 16px;
    max-width: 130px;
  }

  .ekip-anno--3,
  .ekip-anno--5 {
    font-size: 15px;
    max-width: 130px;
  }

  .ekip-anno--1 { top: 0; left: 0; }
  .ekip-anno--2 { top: 0; right: 0; }
  .ekip-anno--3 { left: 0; }
  .ekip-anno--4 { right: 0; }
  .ekip-anno--5 { bottom: -10px; left: 0; }
  .ekip-anno--6 { bottom: -10px; right: 0; }

  .ekip-anno::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .ekip-annotated {
    padding: 48px 0;
  }

  .ekip-anno {
    font-size: 14px;
    max-width: 110px;
  }

  .ekip-anno--3,
  .ekip-anno--5 {
    font-size: 13px;
  }
}

.ekip-scroll-hint {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ekip-brand);
  opacity: 0.7;
}

.ekip-scroll-hint span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ekip-scroll-hint i {
  width: 20px;
  height: 20px;
}

.ekip-scroll-hint .ekip-bounce {
  animation: ekipBounce 2s infinite;
}

@keyframes ekipBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---- Modül Bölümleri ---- */
.ekip-section {
  padding: 80px 16px;
  border-top: 1px solid rgba(43, 122, 90, 0.15);
}

.ekip-section--white {
  background: #fff;
  position: relative;
}

.ekip-section--white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9IiMyYjdhNWEiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==");
}

.ekip-section--dark {
  background: #fff;
  color: var(--ekip-brand-text);
  position: relative;
  overflow: hidden;
}

.ekip-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--ekip-brand) 0, var(--ekip-brand) 2px, transparent 2px, transparent 20px);
  pointer-events: none;
}

.ekip-container {
  max-width: 1220px;
  width: 92%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ekip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .ekip-section {
    padding: 120px 32px;
  }

  .ekip-grid {
    gap: 80px;
  }
}

@media (max-width: 1023px) {
  .ekip-grid {
    grid-template-columns: 1fr;
  }

  .ekip-grid--reverse .ekip-blueprint {
    order: -1;
  }
}

/* ---- Modül Etiketi ---- */
.ekip-module-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(43, 122, 90, 0.1);
  color: var(--ekip-brand);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

.ekip-module-tag i {
  width: 16px;
  height: 16px;
}

/* ---- Modül Başlık & Açıklama ---- */
.ekip-text h2 {
  font-family: "El Messiri", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ekip-brand-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.ekip-text > p {
  color: #595959;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ---- Özellik Listesi ---- */
.ekip-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ekip-feature {
  display: flex;
  gap: 16px;
}

.ekip-feature-icon {
  margin-top: 4px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid var(--ekip-brand-light);
  color: var(--ekip-brand);
}

.ekip-feature-icon i {
  width: 22px;
  height: 22px;
}

.ekip-feature h4 {
  font-family: "El Messiri", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ekip-brand-dark);
  margin-bottom: 4px;
}

.ekip-feature p {
  color: #595959;
  font-size: 15px;
  line-height: 1.55;
}

/* ---- Kart Listesi ---- */
.ekip-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ekip-card {
  background: rgba(238, 244, 232, 0.5);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(43, 122, 90, 0.15);
  transition: background 0.25s ease;
}

.ekip-card:hover {
  background: var(--ekip-brand-light);
}

.ekip-card h4 {
  font-family: "El Messiri", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ekip-brand-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ekip-card h4 i {
  color: var(--ekip-brand);
  width: 22px;
  height: 22px;
}

.ekip-card p {
  color: #595959;
  font-size: 15px;
  line-height: 1.6;
}

/* ---- Mini Kartlar (2 Sütun) ---- */
.ekip-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .ekip-mini-grid {
    grid-template-columns: 1fr;
  }
}

.ekip-mini-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--ekip-brand);
}

.ekip-mini-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ekip-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ekip-brand-dark);
  margin-bottom: 16px;
}

.ekip-mini-card-icon i {
  width: 24px;
  height: 24px;
}

.ekip-mini-card h4 {
  font-family: "El Messiri", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ekip-brand-dark);
  margin-bottom: 8px;
}

.ekip-mini-card p {
  color: #595959;
  font-size: 14px;
  line-height: 1.55;
}

/* ---- Bölüm Görseli ---- */
.ekip-section-img {
  display: block;
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 12px 32px rgba(20, 61, 44, 0.15));
}

/* ---- Blueprint Panosu ---- */
.ekip-blueprint {
  background-color: var(--ekip-brand-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 24px;
  padding: 40px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(20, 61, 44, 0.5);
  position: relative;
}

.ekip-section--white .ekip-blueprint {
  border-color: var(--ekip-brand-light);
}

.ekip-blueprint-inner {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ekip-blueprint-center {
  color: var(--ekip-brand-light);
  opacity: 0.9;
}

.ekip-blueprint-center i {
  width: 128px;
  height: 128px;
}

.ekip-blueprint-note {
  position: absolute;
  font-family: "Caveat", cursive;
  color: var(--ekip-brand-light);
  font-size: 22px;
  max-width: 200px;
}

.ekip-blueprint-note--yellow {
  color: #fde68a;
}

.ekip-blueprint-note--red {
  color: #fca5a5;
}

.ekip-blueprint-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.ekip-blueprint-label {
  position: absolute;
  bottom: -24px;
  background: var(--ekip-brand);
  padding: 8px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

@media (max-width: 640px) {
  .ekip-blueprint {
    padding: 24px;
    min-height: 320px;
  }

  .ekip-blueprint-note {
    font-size: 18px;
    max-width: 150px;
  }

  .ekip-blueprint-center i {
    width: 80px;
    height: 80px;
  }

  .ekip-blueprint-line {
    display: none;
  }
}

/* ---- Boru Profilleri Bölümü ---- */
.ekip-dark-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.ekip-dark-header h2 {
  font-family: "El Messiri", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  color: var(--ekip-brand-dark);
}

.ekip-dark-header p {
  color: #595959;
  font-size: 17px;
  line-height: 1.6;
}

.ekip-dark-header-img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 28px auto 0;
  border-radius: 12px;
}

.ekip-pipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .ekip-pipes-grid {
    grid-template-columns: 1fr;
  }
}

.ekip-pipe-card {
  background: var(--ekip-brand-light);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(43, 122, 90, 0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ekip-pipe-card:hover {
  background: #e6eedf;
  box-shadow: 0 8px 24px rgba(20, 61, 44, 0.1);
}

.ekip-pipe-card i {
  width: 48px;
  height: 48px;
  color: var(--ekip-brand);
  margin-bottom: 16px;
  display: block;
}

.ekip-pipe-card h4 {
  font-family: "El Messiri", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ekip-brand-dark);
  margin-bottom: 10px;
}

.ekip-pipe-spec {
  display: inline-block;
  background: var(--ekip-brand-dark);
  color: #fff;
  font-family: monospace;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.ekip-pipe-card p {
  font-size: 14px;
  color: #595959;
  line-height: 1.5;
}

/* ---- Final Vurgu Kutusu ---- */
.ekip-final-box {
  background: var(--ekip-brand-light);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(43, 122, 90, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ekip-final-box i {
  width: 80px;
  height: 80px;
  color: var(--ekip-brand);
  margin: 0 auto 24px;
  display: block;
}

.ekip-final-box h3 {
  font-family: "El Messiri", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--ekip-brand-dark);
}

.ekip-final-box > p {
  font-size: 18px;
  color: #595959;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.ekip-final-note {
  position: absolute;
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: var(--ekip-brand);
}

.ekip-final-note--tl {
  top: 16px;
  left: 16px;
  transform: rotate(-12deg);
}

.ekip-final-note--br {
  bottom: 16px;
  right: 16px;
  transform: rotate(6deg);
}

@media (min-width: 640px) {
  .ekip-final-box {
    padding: 56px 48px;
  }

  .ekip-final-note--tl {
    top: 32px;
    left: 32px;
  }

  .ekip-final-note--br {
    bottom: 32px;
    right: 32px;
  }
}

/* ---- Scroll Animasyonları ---- */
.ekip-reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ekip-reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ekip-reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ekip-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.ekip-delay-1 { transition-delay: 100ms; }
.ekip-delay-2 { transition-delay: 200ms; }
.ekip-delay-3 { transition-delay: 300ms; }

/* ---- Özel Scrollbar ---- */
.ekip-page ::-webkit-scrollbar { width: 8px; }
.ekip-page ::-webkit-scrollbar-track { background: var(--ekip-brand-light); }
.ekip-page ::-webkit-scrollbar-thumb { background: var(--ekip-brand); border-radius: 4px; }

/* ---- Alt Bilgi ---- */
.ekip-footer-simple {
  background: #fff;
  text-align: center;
  padding: 32px 16px;
  color: rgba(45, 74, 62, 0.6);
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid var(--ekip-brand-light);
}
