/* =========================================================
   PRIVACY POLICY — Shyam Sarthi Travels
   Design concept: "The Fine Print, Mapped Out"
   Legal content laid out like a route sheet — a sticky
   clause index (route stops) beside numbered policy
   sections, reusing the navy/gold road-brand language.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
    --pp-navy-deep: #04101f;
    --pp-navy: #0a2147;
    --pp-gold: #e3a63e;
    --pp-gold-pale: #f6dca3;
    --pp-mist: #eef2f8;
    --pp-ink-soft: #55617a;
    --pp-line: rgba(10, 33, 71, 0.14);
    --pp-radius: 16px;

    --pp-font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
    --pp-font-body: 'Inter', -apple-system, sans-serif;
    --pp-font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

.pp-hero,
.pp-body {
    font-family: var(--pp-font-body);
}

.pp-eyebrow {
    display: inline-block;
    font-family: var(--pp-font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-gold);
    margin-bottom: 10px;
}

/* ================= HERO ================= */

.pp-hero {
    position: relative;
    background: var(--pp-navy-deep);
    padding: 150px 0 90px;
    overflow: hidden;
    color: #fff;
}

.pp-hero-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pp-hero-route-path {
    stroke: var(--pp-gold);
    stroke-width: 2.5;
    stroke-dasharray: 10 10;
    opacity: 0.5;
    stroke-dashoffset: 1500;
    animation: pp-draw-route 2.6s ease-out 0.2s forwards;
}

.pp-hero-route-dot {
    fill: var(--pp-gold);
    opacity: 0;
    animation: pp-fade-in 0.6s ease-out forwards;
}

.dot-start { animation-delay: 0.2s; }
.dot-end { animation-delay: 2.6s; }

@keyframes pp-draw-route {
    to { stroke-dashoffset: 0; }
}

@keyframes pp-fade-in {
    to { opacity: 1; }
}

.pp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.pp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--pp-font-mono);
    font-size: 0.8rem;
    color: #8b98b3;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pp-breadcrumb a {
    color: var(--pp-gold-pale);
    text-decoration: none;
}

.pp-breadcrumb a:hover,
.pp-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.pp-breadcrumb .is-current {
    color: #fff;
}

.pp-hero-tag {
    display: inline-block;
    font-family: var(--pp-font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--pp-gold-pale);
    border: 1px solid rgba(227, 166, 62, 0.4);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.pp-hero-title {
    font-family: var(--pp-font-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(2.4rem, 5.6vw, 3.8rem);
    line-height: 1.02;
    margin: 0 0 24px;
    color: #fff;
}

.pp-hero-lede {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #c3ccdb;
    max-width: 560px;
    margin: 0 0 20px;
}

.pp-hero-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--pp-font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: var(--pp-gold-pale);
}

/* ================= BODY LAYOUT ================= */

.pp-body {
    background: #fff;
    padding: 76px 0 100px;
}

.pp-body-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

/* --- Route index (sticky sidebar TOC) --- */

.pp-toc {
    position: sticky;
    top: 24px;
    background: var(--pp-mist);
    border: 1px solid var(--pp-line);
    border-radius: var(--pp-radius);
    padding: 22px 20px;
}

.pp-toc-label {
    font-family: var(--pp-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pp-navy);
    margin: 0 0 14px;
}

.pp-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pp-toc-list a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 8px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--pp-ink-soft);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.pp-toc-list a:hover,
.pp-toc-list a:focus-visible {
    background: rgba(227, 166, 62, 0.14);
    color: var(--pp-navy);
}

.pp-toc-num {
    font-family: var(--pp-font-mono);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--pp-gold);
    flex-shrink: 0;
}

/* --- Policy sections --- */

.pp-sections {
    max-width: 760px;
}

.pp-section {
    padding: 34px 0;
    border-bottom: 1px solid var(--pp-line);
    scroll-margin-top: 24px;
}

.pp-section:first-child {
    padding-top: 0;
}

.pp-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pp-section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 0 0 16px;
}

.pp-section-num {
    font-family: var(--pp-font-mono);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--pp-navy);
    background: rgba(10, 33, 71, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

.pp-section h2 {
    font-family: var(--pp-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    color: var(--pp-navy);
    margin: 0;
    line-height: 1.2;
}

.pp-section p {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--pp-ink-soft);
    margin: 0 0 16px;
}

.pp-section p:last-child {
    margin-bottom: 0;
}

.pp-section strong {
    color: var(--pp-navy);
    font-weight: 600;
}

.pp-section a {
    color: var(--pp-navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(227, 166, 62, 0.6);
    text-underline-offset: 3px;
}

.pp-section a:hover,
.pp-section a:focus-visible {
    text-decoration-color: var(--pp-gold);
}

.pp-section ul {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-section ul:last-child {
    margin-bottom: 0;
}

.pp-section li {
    position: relative;
    padding-left: 22px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--pp-ink-soft);
}

.pp-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--pp-gold);
    transform: rotate(45deg);
}

.pp-section li strong {
    color: var(--pp-navy);
}

/* --- Mini data table (what we collect / why) --- */

.pp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0 20px;
    border: 1px solid var(--pp-line);
    border-radius: 10px;
    overflow: hidden;
}

.pp-table th,
.pp-table td {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.92rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--pp-line);
}

.pp-table th {
    font-family: var(--pp-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pp-gold-pale);
    background: var(--pp-navy);
}

.pp-table td {
    color: var(--pp-ink-soft);
}

.pp-table td strong {
    color: var(--pp-navy);
}

.pp-table tr:last-child td {
    border-bottom: none;
}

/* --- Contact card inside the last section --- */

.pp-contact-card {
    background: var(--pp-mist);
    border: 1px solid var(--pp-line);
    border-radius: var(--pp-radius);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-contact-row {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--pp-ink-soft);
}

.pp-contact-row span.pp-contact-label {
    font-family: var(--pp-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pp-navy);
    min-width: 96px;
    flex-shrink: 0;
    padding-top: 2px;
}

/* ================= FOCUS ================= */

.pp-toc-list a:focus-visible,
.pp-section a:focus-visible {
    outline: 2px solid var(--pp-gold);
    outline-offset: 2px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {

    .pp-body-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pp-toc {
        position: relative;
        top: 0;
    }

    .pp-toc-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pp-toc-list a {
        padding: 6px 10px;
    }

}

@media (max-width: 560px) {

    .pp-hero {
        padding: 120px 0 70px;
    }

    .pp-body {
        padding: 52px 0 70px;
    }

    .pp-section {
        padding: 26px 0;
    }

    .pp-table th,
    .pp-table td {
        padding: 10px 12px;
        font-size: 0.86rem;
    }

    .pp-contact-row {
        flex-direction: column;
        gap: 2px;
    }

    .pp-contact-row span.pp-contact-label {
        min-width: 0;
    }

}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    .pp-hero-route-path,
    .pp-hero-route-dot {
        animation: none !important;
        opacity: 0.5;
        stroke-dashoffset: 0;
    }

    .dot-start,
    .dot-end {
        opacity: 1;
    }

}