/* ==========================================================================
   NUSATAKA ERP — PRIVACY POLICY PREMIUM CSS
   ========================================================================== */

/* 1. HERO HEADER STYLE */
.privacy-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
  background-color: #030A16;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(15, 97, 175, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(138, 186, 230, 0.12) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, var(--light-bg), transparent);
  pointer-events: none;
}

.privacy-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 15px;
}

.privacy-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto 25px auto;
}

/* Breadcrumb Styles */
.privacy-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 550;
}

.privacy-breadcrumb li a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.privacy-breadcrumb li a:hover {
  color: var(--white);
}

.privacy-breadcrumb li {
  color: #64748B;
}

.privacy-breadcrumb li::after {
  content: '/';
  margin-left: 8px;
  color: #475569;
}

.privacy-breadcrumb li:last-child {
  color: #94A3B8;
}

.privacy-breadcrumb li:last-child::after {
  display: none;
}

/* 2. LAYOUT CONTENT & WRAPPERS */
.privacy-content-wrapper {
  padding: 80px 0;
  background-color: var(--light-bg);
}

/* Sticky Sidebar Table of Contents */
.privacy-sidebar-sticky {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.toc-card {
  background: var(--white);
  border: 1px solid rgba(11, 35, 71, 0.06);
  border-radius: var(--border-radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.toc-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(15, 97, 175, 0.1);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-item {
  margin-bottom: 8px;
}

.toc-item:last-child {
  margin-bottom: 0;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.toc-link:hover,
.toc-link.active {
  color: var(--primary);
  background: rgba(15, 97, 175, 0.04);
  border-left-color: var(--primary);
}

/* 3. POLICY CARD & TYPOGRAPHY */
.policy-main-card {
  background: var(--white);
  border: 1px solid rgba(11, 35, 71, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 50px 45px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.policy-card-meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.policy-main-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.policy-main-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 25px;
}

.policy-section {
  padding-top: 25px;
  margin-bottom: 35px;
  scroll-margin-top: 110px; /* Offset for smooth scroll top */
}

.policy-section h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-section h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--gradient-cyan-blue);
  border-radius: 4px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.policy-list li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-main);
  padding: 10px 15px;
  background: rgba(11, 35, 71, 0.01);
  border: 1px solid rgba(11, 35, 71, 0.03);
  border-radius: var(--border-radius-sm);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition-fast);
}

.policy-list li:hover {
  background: rgba(15, 97, 175, 0.02);
  border-color: rgba(15, 97, 175, 0.1);
  transform: translateX(3px);
}

.policy-list li i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Glassmorphic Note Widget */
.policy-note-widget {
  background: rgba(15, 97, 175, 0.03);
  border: 1px solid rgba(15, 97, 175, 0.1);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: var(--border-radius-sm);
  margin-top: 30px;
}

.policy-note-widget h5 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.policy-note-widget p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-main);
}

/* 4. SIDEBAR CONTACT PRIVACY WIDGET */
.privacy-contact-card {
  background: var(--white);
  border: 1px solid rgba(11, 35, 71, 0.06);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.privacy-contact-card h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.privacy-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.privacy-contact-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.privacy-contact-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.privacy-contact-list li strong {
  color: var(--dark-blue);
}

.btn-back-home {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  background: rgba(11, 35, 71, 0.05);
  color: var(--dark-blue);
  text-decoration: none;
  transition: var(--transition-normal);
  border: 1px solid rgba(11, 35, 71, 0.08);
}

.btn-back-home:hover {
  background: var(--gradient-cyan-blue);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* 5. RESPONSIVE MEDIA QUERIES */
@media (max-width: 991.98px) {
  .privacy-hero {
    padding-top: 110px;
    padding-bottom: 50px;
    text-align: center;
  }
  .privacy-title {
    font-size: 2.2rem;
  }
  .privacy-subtitle {
    font-size: 1rem;
  }
  .privacy-content-wrapper {
    padding: 50px 0;
  }
  .policy-main-card {
    padding: 30px 20px;
  }
  .policy-main-card h2 {
    font-size: 1.7rem;
  }
  .privacy-sidebar-sticky {
    position: static;
    margin-top: 30px;
  }
}
