/* ============================================================
   GİZLİLİK POLİTİKASI SAYFASI — Ek Stiller
   ============================================================ */

/* İç sayfalarda nav her zaman opak */
.inner-page #navbar {
  background: rgba(12, 12, 12, 0.96);
  border-color: var(--border);
}

/* ============================================================
   SAYFA BAŞLIĞI
   ============================================================ */
.page-header {
  padding: calc(var(--nav-h) + 80px) 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header p,
.page-header time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   İÇERİK GÖVDE
   ============================================================ */
.policy-main {
  padding: 72px 0 120px;
}

.policy-body {
  max-width: 780px;
  margin: 0 auto;
}

/* Üst bildirim kutusu */
.policy-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(184, 146, 42, 0.08);
  border: 1px solid rgba(184, 146, 42, 0.25);
  border-radius: var(--radius);
  margin-bottom: 56px;
  color: rgba(240, 237, 232, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.policy-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.policy-notice strong {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   BÖLÜMLER
   ============================================================ */
.policy-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-of-type {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.policy-section p {
  font-size: 0.92rem;
  color: rgba(240, 237, 232, 0.65);
  line-height: 1.9;
  margin-bottom: 16px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  color: var(--text);
  font-weight: 500;
}

/* Liste */
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding-left: 4px;
}

.policy-list li {
  font-size: 0.92rem;
  color: rgba(240, 237, 232, 0.65);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Tablo */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.85rem;
}

.policy-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.policy-table td {
  padding: 14px 16px;
  color: rgba(240, 237, 232, 0.6);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table td:first-child {
  color: var(--text);
  font-weight: 400;
  white-space: nowrap;
}

/* İletişim bilgileri */
.policy-info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy-info-item {
  display: flex;
  gap: 16px;
  font-size: 0.88rem;
  align-items: baseline;
}

.policy-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 72px;
  flex-shrink: 0;
}

.policy-info-item a {
  color: rgba(240, 237, 232, 0.7);
  transition: color var(--transition);
}

.policy-info-item a:hover {
  color: var(--accent);
}

/* ============================================================
   ALT İLETİŞİM
   ============================================================ */
.policy-contact {
  margin-top: 64px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.policy-contact p {
  font-size: 0.95rem;
  color: rgba(240, 237, 232, 0.65);
  margin: 0;
}

.policy-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSİVE
   ============================================================ */
@media (max-width: 640px) {
  .policy-table {
    display: block;
    overflow-x: auto;
  }

  .policy-contact {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .policy-contact-actions {
    width: 100%;
  }

  .policy-contact-actions .btn {
    flex: 1;
    text-align: center;
  }
}
