/* ========================================
   MAHARAJAH TOURS - PRIVACY POLICY PAGE
   ======================================== */

/* ========== PRIVACY HERO ICON ========== */
.privacy-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
}

.privacy-hero-icon i {
  font-size: 2.5rem;
  color: var(--brand-gold);
}

/* ========== PRIVACY SUMMARY CARD ========== */
.privacy-summary-card {
  background: linear-gradient(135deg, #fff9e6 0%, var(--brand-light-gold) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.summary-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.summary-icon i {
  font-size: 2.5rem;
  color: #fff;
}

/* ========== TABLE OF CONTENTS ========== */
.privacy-toc-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.08);
  border: 2px solid var(--brand-light-gold);
  position: sticky;
  top: 100px;
}

.toc-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-light-gold);
}

.privacy-toc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.toc-link:hover {
  background: var(--brand-light-gold);
  color: var(--brand-burgundy);
  transform: translateX(5px);
}

.toc-link.active {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  color: var(--brand-gold);
  border-color: var(--brand-gold);
  font-weight: 600;
}

.toc-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: rgba(78, 14, 16, 0.1);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.toc-link.active .toc-number {
  background: var(--brand-gold);
  color: var(--brand-burgundy);
}

/* ========== PRIVACY SECTIONS ========== */
.privacy-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  scroll-margin-top: 100px;
}

.privacy-section:hover {
  border-color: var(--brand-light-gold);
  box-shadow: 0 8px 30px rgba(78, 14, 16, 0.12);
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand-light-gold);
}

.section-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-radius: 12px;
  border: 2px solid var(--brand-gold);
}

.section-icon i {
  font-size: 1.75rem;
  color: var(--brand-burgundy);
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.section-content {
  color: var(--text-dark);
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ========== INFO GRID ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
  border-radius: 12px;
  border: 1px solid rgba(78, 14, 16, 0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: var(--brand-light-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.1);
}

.info-item i {
  font-size: 1.75rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== CUSTOM LISTS ========== */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(78, 14, 16, 0.08);
}

.custom-list li:last-child {
  border-bottom: none;
}

.custom-list li i {
  font-size: 1.25rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.custom-list li strong {
  color: var(--brand-burgundy);
}

/* ========== ALERT BOXES ========== */
.alert-info-custom,
.alert-warning-custom {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid;
  margin: 1.5rem 0;
}

.alert-info-custom {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #2196f3;
}

.alert-info-custom i {
  font-size: 1.75rem;
  color: #1976d2;
  flex-shrink: 0;
}

.alert-warning-custom {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-color: #ff9800;
}

.alert-warning-custom i {
  font-size: 1.75rem;
  color: #f57c00;
  flex-shrink: 0;
}

.alert-info-custom strong,
.alert-warning-custom strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-burgundy);
}

.alert-info-custom p,
.alert-warning-custom p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ========== CONTACT DETAILS CARD ========== */
.contact-details-card {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--brand-light-gold);
  margin: 2rem 0;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(78, 14, 16, 0.08);
}

.contact-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail-row:first-child {
  padding-top: 0;
}

.contact-detail-row i {
  font-size: 1.5rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  width: 30px;
}

.contact-detail-row strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-detail-row span,
.contact-detail-row a {
  display: block;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.contact-detail-row a {
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-detail-row a:hover {
  color: var(--brand-burgundy);
}

/* ========== RIGHTS GRID ========== */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.right-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.right-card:hover {
  background: #fff;
  border-color: var(--brand-gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(78, 14, 16, 0.15);
}

.right-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
  transition: all 0.4s ease;
}

.right-card:hover .right-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
}

.right-icon i {
  font-size: 2rem;
  color: var(--brand-gold);
  transition: color 0.4s ease;
}

.right-card:hover .right-icon i {
  color: #fff;
}

.right-card h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.right-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .privacy-toc-card {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 2rem;
  }
  
  .privacy-section {
    padding: 2rem;
  }
  
  .section-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .privacy-hero-icon {
    width: 70px;
    height: 70px;
  }
  
  .privacy-hero-icon i {
    font-size: 2rem;
  }
  
  .privacy-summary-card {
    padding: 2rem;
  }
  
  .summary-icon {
    width: 70px;
    height: 70px;
  }
  
  .summary-icon i {
    font-size: 2rem;
  }
  
  .privacy-section {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-icon {
    width: 50px;
    height: 50px;
  }
  
  .section-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .privacy-summary-card {
    padding: 1.5rem;
  }
  
  .toc-link {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }
  
  .toc-number {
    min-width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-details-card {
    padding: 1.5rem;
  }
}