/* ==========================================================
   ROOTMAN — privacy-policy.css
   Page-specific styles for privacy-policy.html
   ========================================================== */

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

.page-hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  min-height: 58vh;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -220px;
  right: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.page-hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 18px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 640px;
}

.page-hero-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.page-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
}

.meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.policy-section-wrap {
  background: var(--off-white);
  padding: 72px 0 96px;
}

.policy-layout {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 92px;
}

.sidebar-card,
.sidebar-contact {
  background: var(--white);
  border: 1px solid #ece7df;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(11,34,64,0.05);
}

.sidebar-card {
  padding: 22px 20px;
  margin-bottom: 16px;
}

.sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}

.policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-nav a {
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.45;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.policy-nav a:hover {
  background: rgba(11,34,64,0.05);
  color: var(--navy);
}

.sidebar-contact {
  padding: 20px;
}

.sidebar-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.sidebar-contact p {
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.sidebar-contact a {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.policy-content {
  min-width: 0;
}

.policy-summary-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.28);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.policy-summary-box strong {
  color: var(--navy);
}

.policy-block {
  background: var(--white);
  border: 1px solid #ece7df;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(11,34,64,0.05);
  margin-bottom: 18px;
}

.policy-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(201,168,76,0.12);
  color: #8f6e25;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.policy-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 14px;
}

.policy-block h2 em {
  font-style: italic;
  color: var(--gold);
}

.policy-block p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 14px;
}

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

.policy-info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.policy-info-card div {
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #ede7df;
}

.policy-info-card strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  margin-bottom: 5px;
}

.policy-info-card span {
  display: block;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.6;
}

.policy-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 12px;
  overflow: hidden;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
}

.policy-table thead tr {
  background: var(--navy);
}

.policy-table th {
  color: white;
  text-align: left;
  padding: 13px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.policy-table td {
  padding: 13px 16px;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.6;
  border-bottom: 1px solid #ede8e1;
  background: var(--white);
}

.policy-table tbody tr:nth-child(even) td {
  background: rgba(11,34,64,0.02);
}

.policy-note {
  margin-top: 18px;
  background: rgba(11,34,64,0.05);
  border-left: 4px solid var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.75;
}

.policy-note strong {
  color: var(--navy);
}

.policy-note-gold {
  background: rgba(201,168,76,0.08);
  border-left-color: var(--gold);
}

.rights-grid,
.third-party-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.rights-grid {
  grid-template-columns: repeat(2, 1fr);
}

.third-party-grid {
  grid-template-columns: repeat(2, 1fr);
}

.right-card,
.third-party-card {
  background: var(--off-white);
  border: 1px solid #ece5dc;
  border-radius: 12px;
  padding: 18px 18px;
  transition: all 0.25s ease;
}

.right-card:hover,
.third-party-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,34,64,0.06);
}

.right-card h4,
.third-party-card h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 6px;
}

.right-card p,
.third-party-card p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.tp-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.policy-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.policy-list li {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-panel {
  margin-top: 18px;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  padding: 24px;
}

.contact-panel-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-panel-item:last-child {
  border-bottom: none;
}

.contact-label {
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.contact-panel-item a,
.contact-panel-item span:last-child {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
}

#chat-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--gold);
  color: white;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(11,34,64,0.4);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chat-toggle:hover {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .policy-info-card,
  .rights-grid,
  .third-party-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 56px 0 44px;
    min-height: auto;
  }

  .page-hero-inner,
  .policy-layout {
    width: min(100%, calc(100% - 24px));
  }

  .page-hero-title {
    font-size: 38px;
  }

  .page-hero-desc {
    font-size: 14px;
    line-height: 1.72;
  }

  .page-hero-meta {
    gap: 10px;
  }

  .page-hero-meta-item {
    font-size: 11px;
  }

  .policy-section-wrap {
    padding: 44px 0 60px;
  }

  .policy-block {
    padding: 22px 18px;
  }

  .policy-block h2 {
    font-size: 30px;
  }

  .policy-info-card,
  .rights-grid,
  .third-party-grid {
    grid-template-columns: 1fr;
  }

  .policy-table th,
  .policy-table td {
    padding: 10px 12px;
  }

  #chat-box {
    width: 300px;
    height: 420px;
  }

  #chat-widget {
    right: 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 34px;
  }

  .policy-block h2 {
    font-size: 28px;
  }
}