/* ================================
   KALİTE BELGELERİ SAYFASI
   ================================ */
@import url('variables.css');

.quality-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Banner Görseli */
.quality-hero__bg-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.quality-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.quality-hero__fog {
  position: absolute;
  bottom: -10%;
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

/* İçerik */
.quality-hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-bottom: clamp(40px, 6vw, 80px);
}

.quality-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

/* Sol Menü */
.quality-left {
  color: #8b8b8b;
}
.quality-link h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: 0.15rem;
}
.quality-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-secondary);
  font-size: var(--font-size-sm);
  transition: color var(--transition-base), transform var(--transition-fast);
}
.quality-link a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}
.quality-sep {
  border: none;
  height: 1px;
  background: #e6e6e6;
  margin: clamp(12px, 2vw, 20px) 0;
}
.chev {
  font-size: 1.1em;
  line-height: 1;
  font-weight: var(--font-weight-light);
}

/* Sağ içerik */
.quality-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #064393;
  font-size: 65px;
  line-height: 1.05;
  margin: 0 0 var(--spacing-md) 0;
}

.quality-desc {
  max-width: 1000px;
  color: #707070;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-regular);
}

/* ================================
   BELGE KUTULARI
   ================================ */
.quality-doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
}

.quality-doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f3f3;
  color: #444;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.quality-doc-item i {
  font-size: 1.1rem;
  color: #064393;
}

.quality-doc-item:hover {
  background: #e2e8f0;
  color: #064393;
  transform: translateX(4px);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
  .quality-hero__inner {
    padding: 0 2rem;
  }
   .quality-hero__bg-wrapper {
    height: 36vh;
  }
}

@media (max-width: 576px) {
  .quality-doc-item {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
  .quality-hero__inner {
    padding: 0 2rem;
  }
  .quality-hero__bg-wrapper {
    height: 36vh;
  }
}
