/* ============================================================
   KUTSAN İNŞAAT - KVKK AYDINLATMA METNİ SAYFASI
   ============================================================ */

.page-kvkk {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

.kvkk-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container-kvkk {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 45px;
  align-items: start;
}

/* ============================================================
   SAYFA BAŞLIĞI (PAGE HERO)
   ============================================================ */
.page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: pageHeroZoom 12s ease-in-out infinite alternate;
}

@keyframes pageHeroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 21, 34, 0.94) 0%,
    rgba(0, 21, 34, 0.78) 50%,
    rgba(0, 21, 34, 0.65) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 30px;
}

.page-hero-content .hero-line {
  width: 56px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 22px;
  transform-origin: center;
  animation: slideLineIn 0.8s ease 0.2s forwards;
}

.page-hero-content .hero-kicker {
  font-family: var(--font-tt-fors);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold2);
  margin-bottom: 10px;
  opacity: 0;
  animation: slideTextIn 0.8s ease 0.4s forwards;
}

.page-hero-content h1 {
  font-family: var(--font-pompei);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.8px;
  opacity: 0;
  animation: slideTextIn 0.8s ease 0.6s forwards;
}

.page-hero-content h1 .highlight-text {
  color: var(--gold2);
}

.page-hero-desc {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: slideTextIn 0.8s ease 0.8s forwards;
}

/* ============================================================
   İÇERİK BÖLÜMÜ
   ============================================================ */
.kvkk-content-section {
  padding: 70px 0 80px;
  background: var(--navy);
}

/* ----- İÇİNDEKİLER (YAN MENÜ) ----- */
.kvkk-toc {
  position: sticky;
  top: 30px;
}

.kvkk-toc-inner {
  background: linear-gradient(150deg, #001d30 0%, #001522 100%);
  border: 1px solid rgba(246, 185, 31, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.kvkk-toc-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}

.kvkk-toc-title {
  font-family: var(--font-tt-fors);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold2);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(246, 185, 31, 0.2);
}

.kvkk-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kvkk-toc-list li a {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
  line-height: 1.35;
}

.kvkk-toc-list li a:hover {
  color: var(--gold2);
  background: rgba(246, 185, 31, 0.07);
  border-left-color: var(--gold2);
}

.kvkk-toc-list li a.active {
  color: var(--gold2);
  background: rgba(246, 185, 31, 0.1);
  border-left-color: var(--gold2);
  font-weight: 600;
}

/* ============================================================
   MAKALE (İÇERİK)
   ============================================================ */
.kvkk-article {
  background: linear-gradient(150deg, #001d30 0%, #001522 100%);
  border: 1px solid rgba(246, 185, 31, 0.2);
  border-radius: 18px;
  padding: 50px 55px;
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  line-height: 1.8;
}

.kvkk-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}

.kvkk-article p {
  margin-bottom: 16px;
}

.kvkk-article strong {
  color: #fff;
  font-weight: 600;
}

.kvkk-article a {
  color: var(--gold2);
  text-decoration: none;
  border-bottom: 1px dotted rgba(246, 185, 31, 0.5);
  transition: all 0.25s ease;
}

.kvkk-article a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Intro */
.kvkk-intro {
  padding-bottom: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(246, 185, 31, 0.15);
}

.kvkk-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

/* Bloklar */
.kvkk-block {
  padding: 35px 0 10px;
  scroll-margin-top: 30px;
}

.kvkk-block + .kvkk-block {
  border-top: 1px solid rgba(246, 185, 31, 0.12);
}

.kvkk-block h2 {
  font-family: var(--font-pompei);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.35;
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: 0.3px;
}

.kvkk-block h2 .kvkk-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 2px solid var(--gold2);
  border-radius: 10px;
  color: var(--gold2);
  font-family: var(--font-tt-fors);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}

.kvkk-block h2 .kvkk-num i {
  font-size: 16px;
}

.kvkk-block h3 {
  font-family: var(--font-tt-fors);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold2);
  margin: 24px 0 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Listeler */
.kvkk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kvkk-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.kvkk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold2);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* Highlight Block (Açık Rıza Beyanı) */
.kvkk-highlight-block {
  background: rgba(246, 185, 31, 0.04);
  border: 1px dashed rgba(246, 185, 31, 0.3) !important;
  border-radius: 14px;
  padding: 35px 30px !important;
  margin-top: 30px;
}

.kvkk-highlight-block h2 {
  color: var(--gold2);
}

.kvkk-note {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  margin-bottom: 18px !important;
}

/* İletişim Bloğu */
.kvkk-contact-block {
  background: rgba(0, 21, 34, 0.5);
  border: 1px solid rgba(246, 185, 31, 0.2);
  border-radius: 14px;
  padding: 32px 30px !important;
  margin-top: 30px;
}

.kvkk-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kvkk-contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.kvkk-contact-icon {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.kvkk-contact-list li:hover .kvkk-contact-icon {
  background: var(--gold2);
  color: #101010;
  transform: scale(1.05);
}

.kvkk-contact-list li > div {
  flex: 1;
}

.kvkk-contact-list strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 4px;
}

.kvkk-contact-list p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}

.kvkk-contact-list p a {
  color: var(--gold2);
  border-bottom: 1px dotted rgba(246, 185, 31, 0.5);
}

.kvkk-contact-list p a:hover {
  color: #fff;
}

/* Footer Note */
.kvkk-footer-note {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(246, 185, 31, 0.15);
  text-align: center;
}

.kvkk-footer-note p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin: 0;
}

.kvkk-footer-note strong {
  color: var(--gold2);
  font-style: normal;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  .container-kvkk {
    padding: 0 35px;
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }
  .kvkk-article { padding: 40px 35px; }
}

/* 992px */
@media (max-width: 992px) {
  .page-hero { height: 280px; }
  .page-hero-content h1 { font-size: 36px; }

  .container-kvkk {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .kvkk-toc {
    position: static;
  }

  .kvkk-toc-inner {
    padding: 22px 20px;
  }

  .kvkk-toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .kvkk-toc-list li a {
    border-left: 0;
    border: 1px solid rgba(246, 185, 31, 0.25);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12.5px;
  }

  .kvkk-toc-list li a.active,
  .kvkk-toc-list li a:hover {
    border-color: var(--gold2);
    background: rgba(246, 185, 31, 0.12);
  }

  .kvkk-article { padding: 35px 30px; }
  .kvkk-block h2 { font-size: 21px; }
}

/* 800px - MOBIL */
@media (max-width: 800px) {
  .page-kvkk {
    height: auto !important;
    max-height: none !important;
    overflow: auto !important;
  }

  .page-kvkk .kvkk-main {
    display: block;
  }

  .container-kvkk { padding: 0 20px; }

  .page-hero { height: 240px; }
  .page-hero-content { padding: 0 20px; }
  .page-hero-content .hero-line { width: 44px; height: 3px; margin-bottom: 16px; }
  .page-hero-content .hero-kicker { font-size: 11.5px; letter-spacing: 2.5px; }
  .page-hero-content h1 { font-size: 28px; }
  .page-hero-desc { font-size: 13.5px; }

  .kvkk-content-section { padding: 35px 0 50px; }

  .kvkk-toc-inner { padding: 18px 16px; border-radius: 14px; }
  .kvkk-toc-title { font-size: 11.5px; letter-spacing: 2px; margin-bottom: 14px; padding-bottom: 12px; }

  .kvkk-toc-list { gap: 6px; }
  .kvkk-toc-list li a {
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 16px;
  }

  .kvkk-article {
    padding: 28px 22px;
    border-radius: 14px;
    font-size: 14.5px;
    line-height: 1.75;
  }

  .kvkk-intro p { font-size: 14.5px; }

  .kvkk-block { padding: 25px 0 5px; }
  .kvkk-block h2 {
    font-size: 19px;
    gap: 10px;
    margin-bottom: 16px;
  }
  .kvkk-block h2 .kvkk-num {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 8px;
  }
  .kvkk-block h2 .kvkk-num i { font-size: 14px; }

  .kvkk-block h3 { font-size: 13.5px; margin: 20px 0 10px; }

  .kvkk-list li {
    font-size: 14px;
    padding-left: 22px;
  }
  .kvkk-list li::before {
    width: 7px;
    height: 7px;
    top: 9px;
  }

  .kvkk-highlight-block { padding: 24px 20px !important; }
  .kvkk-contact-block { padding: 24px 20px !important; }

  .kvkk-contact-list li { gap: 14px; }
  .kvkk-contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .kvkk-contact-list strong { font-size: 11px; }
  .kvkk-contact-list p { font-size: 14px; }

  .kvkk-footer-note p { font-size: 12px; }
}

/* 480px */
@media (max-width: 480px) {
  .page-hero { height: 210px; }
  .page-hero-content h1 { font-size: 23px; }
  .page-hero-content .hero-kicker { font-size: 10.5px; }
  .page-hero-desc { font-size: 12.5px; }

  .kvkk-article {
    padding: 22px 18px;
    font-size: 13.5px;
  }

  .kvkk-block h2 { font-size: 17px; }
  .kvkk-block h2 .kvkk-num {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 7px;
  }

  .kvkk-list li { font-size: 13px; }
  .kvkk-toc-list li a { font-size: 11px; padding: 5px 10px; }

  .kvkk-contact-icon { width: 36px; height: 36px; font-size: 14px; }
  .kvkk-contact-list p { font-size: 13px; }
}

/* 360px */
@media (max-width: 360px) {
  .page-hero-content h1 { font-size: 20px; }
  .kvkk-article { padding: 18px 14px; }
  .kvkk-block h2 { font-size: 15.5px; }
  .kvkk-list li { font-size: 12.5px; }
}