/* privacy-policy.css — extracted from privacy-policy.php */

/* ============================================================
   PRIVACY POLICY PAGE — Found Bhutan
   Navy #0e2d45 + Gold #ffc21a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --navy:        #0e2d45;
  --navy-mid:    #163d5e;
  --navy-light:  #1e4f7a;
  --gold:        #ffc21a;
  --gold-dark:   #d9a200;
  --gold-pale:   #fff8e1;
  --white:       #ffffff;
  --off-white:   #f8f6f2;
  --text:        #1c1c1c;
  --text-mid:    #3d3d3d;
  --text-soft:   #666666;
  --border:      rgba(14,45,69,0.10);
  --shadow-sm:   0 2px 12px rgba(14,45,69,0.08);
  --shadow-md:   0 8px 32px rgba(14,45,69,0.12);
  --radius:      10px;
  --ease:        all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', system-ui, sans-serif; background: var(--off-white); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Hero ---- */
.pp-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 80px 0 72px;
}

/* Geometric shape — top right */
.pp-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,194,26,0.10);
  box-shadow:
    0 0 0 40px rgba(255,194,26,0.04),
    0 0 0 80px rgba(255,194,26,0.02);
  pointer-events: none;
}

/* Dot grid */
.pp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,194,26,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.pp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pp-hero__inner > * { animation: ppFadeUp 0.65s ease both; }
.pp-hero__tag      { animation-delay: 0.05s; }
.pp-hero__title    { animation-delay: 0.18s; }
.pp-hero__subtitle { animation-delay: 0.28s; }
.pp-hero__meta     { animation-delay: 0.36s; }

@keyframes ppFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pp-hero__tag::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.pp-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.01em;
}
.pp-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.pp-hero__subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.pp-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.pp-hero__meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  display: inline-block;
}
.pp-hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* ---- Breadcrumb ---- */
.pp-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.pp-breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.pp-breadcrumb__inner a { color: var(--text-soft); transition: color 0.2s; }
.pp-breadcrumb__inner a:hover { color: var(--navy); }
.pp-breadcrumb__sep { opacity: 0.35; }
.pp-breadcrumb__current { color: var(--navy); font-weight: 500; }

/* ---- Layout ---- */
.pp-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* ---- Main content ---- */
.pp-content { min-width: 0; }

/* Lead paragraph */
.pp-lead {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 40px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
}
.pp-lead a {
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
}
.pp-lead a:hover { color: var(--gold-dark); }

/* Sections */
.pp-sections { display: flex; flex-direction: column; gap: 20px; }

.pp-section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--ease);
}
.pp-section:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,194,26,0.25);
}

.pp-section__header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.pp-section__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--ease);
}
.pp-section:hover .pp-section__icon {
  background: var(--gold);
}

.pp-section__heading-wrap { flex: 1; }
.pp-section__num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 3px;
}
.pp-section__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.pp-section__body {
  padding: 24px 28px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* Lists inside sections */
.pp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.pp-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mid);
}
.pp-list li::before {
  content: '▸';
  color: var(--gold-dark);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Contact highlight inside section */
.pp-contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(255,194,26,0.3);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}

/* Closing note */
.pp-closing {
  margin-top: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pp-closing__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pp-closing__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
.pp-closing__text strong { color: var(--gold); }

/* ---- Sidebar ---- */
.pp-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pp-sidebar-nav {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pp-sidebar-nav__head {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-sidebar-nav__icon { font-size: 14px; }
.pp-sidebar-nav__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.pp-sidebar-nav__body { padding: 10px 0; }
.pp-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--ease);
  cursor: pointer;
}
.pp-nav-link:hover {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--gold-pale);
}
.pp-nav-link__icon {
  font-size: 14px;
  min-width: 18px;
  text-align: center;
}

.pp-sidebar-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}
.pp-sidebar-card__icon  { font-size: 26px; margin-bottom: 12px; }
.pp-sidebar-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.pp-sidebar-card__text  { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.pp-sidebar-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ease);
}
.pp-sidebar-card__btn:hover { background: #ffe066; transform: translateY(-1px); }

/* Privacy badge */
.pp-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.pp-badge__icon   { font-size: 32px; margin-bottom: 10px; }
.pp-badge__title  { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pp-badge__text   { font-size: 12.5px; line-height: 1.6; color: var(--text-soft); }

/* ---- Reveal animations ---- */
.pp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pp-reveal.pp-in { opacity: 1; transform: translateY(0); }
.pp-d1 { transition-delay: 0.08s; }
.pp-d2 { transition-delay: 0.16s; }
.pp-d3 { transition-delay: 0.24s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pp-layout { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 40px; }
  .pp-sidebar { position: static; }
}
@media (max-width: 600px) {
  .pp-hero__inner { padding: 0 24px; }
  .pp-lead { padding: 24px 20px; }
  .pp-section__header { padding: 18px 20px; gap: 14px; }
  .pp-section__body { padding: 20px; }
  .pp-closing { padding: 22px 20px; flex-direction: column; gap: 12px; }
  .pp-breadcrumb__inner { padding: 0 20px; }
}
