/* ==============================================================
   PRIVACY POLICY PAGE – UNIQUE pri_pol-* CLASSES
   File: assets/CSS/privacy-policy.css
   ============================================================== */

:root {
    /* Base / Background */
    --light-cream: #fdfbf7;
    --mint-tint: #eef7e0;
    --white: #ffffff;
    --card-bg: #ffffff;

    /* Green (Primary) */
    --dark-green: #225902;
    --dark-green-2: #143b02;
    --mid-green: #4f8a1f;
    --sage-band: #6fae2c;

    /* Gold / Olive Accent */
    --golden-yellow: #8fc94a;
    --golden-light: #b7e176;
    --border-gold: #6fae2c;
    --premium-gold: #d4a94a;

    /* Discount / Offer Boxes */
    --offer-box-bg: #e8f3d9;
    --offer-box-border: #cbeaa0;

    /* Text */
    --heading-green: #1a4d0a;
    --text-gray: #555555;

    /* Gradients */
    --green-gradient: linear-gradient(135deg, #2d6b05 0%, #225902 45%, #143b02 100%);
    --green-gradient-soft: linear-gradient(160deg, #a8d766 0%, #4f8a1f 45%, #225902 100%);
    --gold-gradient: linear-gradient(135deg, #6fae2c 0%, #3f7a12 55%, #225902 100%);
    --gold-gradient-soft: linear-gradient(135deg, #e3f5c0 0%, #b7e176 45%, #8fc94a 100%);
    --hero-title-gradient: linear-gradient(135deg, #f3d77a 0%, #d4a94a 60%, #b7852c 100%);
}

/* ===== GLOBAL RESET & BASE ===== */

/* ==============================================================
   PRIVACY POLICY – UNIQUE pri_pol-* CLASSES
   ============================================================== */

html {
    scroll-behavior: smooth;
}

/* --- Hero --- */
.pri_pol-hero {
    background: var(--green-gradient);
    padding: 70px 8% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pri_pol-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--gold-gradient);
}
.pri_pol-hero .pri_pol-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 215, 122, 0.12);
    border: 1px solid rgba(243, 215, 122, 0.4);
    animation: pri_polFloat 3.5s ease-in-out infinite;
}
.pri_pol-hero .pri_pol-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--golden-light);
}
@keyframes pri_polFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pri_pol-hero span.pri_pol-tag {
    display: inline-block;
    color: var(--golden-light);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pri_pol-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2.6rem;
}
.pri_pol-hero h1 span {
    background: var(--hero-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pri_pol-hero p.pri_pol-updated {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 14px;
    font-size: 0.95rem;
}
.pri_pol-hero .pri_pol-updated strong {
    color: var(--golden-light);
    font-weight: 600;
}

/* --- Layout: TOC + content --- */
.pri_pol-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding: 70px 8%;
    align-items: start;
}

/* --- TOC (sticky) --- */
.pri_pol-toc {
    position: sticky;
    top: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 100%);
    border: 1px solid #f0e6cc;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 10px 26px rgba(11, 74, 58, 0.06);
}
.pri_pol-toc h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-green);
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.pri_pol-toc h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}
.pri_pol-toc ol {
    list-style: none;
    counter-reset: pri_pol-counter;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pri_pol-toc ol li {
    counter-increment: pri_pol-counter;
}
.pri_pol-toc ol li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 9px 10px;
    border-radius: 8px;
    transition: 0.25s;
    text-align:left;
}
.pri_pol-toc ol li a::before {
    content: counter(pri_pol-counter, decimal-leading-zero);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--border-gold);
    background: rgba(212, 175, 55, 0.12);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pri_pol-toc ol li a:hover {
    background: rgba(11, 74, 58, 0.06);
    color: var(--dark-green);
    padding-left: 14px;
}

/* --- Content column --- */
.pri_pol-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.pri_pol-intro {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 100%);
    border: 1px solid #f0e6cc;
    border-left: 4px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    border-radius: 12px;
    padding: 26px 30px;
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.8;
}
.pri_pol-intro strong {
    color: var(--dark-green);
}

.pri_pol-card {
    background: var(--card-bg);
    border: 1px solid #f0e6cc;
    border-radius: 14px;
    padding: 34px 34px 30px;
    box-shadow: 0 10px 26px rgba(11, 74, 58, 0.05);
    transition: 0.35s ease;
    scroll-margin-top: 20px;
}
.pri_pol-card:hover {
    box-shadow: 0 16px 34px rgba(11, 74, 58, 0.12);
    transform: translateY(-4px);
}

.pri_pol-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.pri_pol-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 46px;
}
.pri_pol-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-green);
    font-size: 1.4rem;
}
.pri_pol-card h4.pri_pol-sub {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-green);
    font-size: 1.02rem;
    font-weight: 600;
    margin: 20px 0 10px;
}
.pri_pol-card p {
    color: var(--text-gray);
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 10px;
}
.pri_pol-card ul {
    margin: 10px 0 14px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pri_pol-card ul li {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 26px;
    position: relative;
}
.pri_pol-card ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--border-gold);
    font-size: 0.85rem;
}
.pri_pol-card a.pri_pol-link {
    color: var(--dark-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--golden-yellow);
}
.pri_pol-card a.pri_pol-link:hover {
    color: var(--border-gold);
}

/* Grievance officer box */
.pri_pol-officer-box {
    background: var(--green-gradient-soft);
    border-radius: 12px;
    padding: 26px 28px;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.pri_pol-officer-box .pri_pol-officer-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pri_pol-officer-box .pri_pol-officer-item span.pri_pol-oicon {
    color: var(--golden-light);
    flex-shrink: 0;
}
.pri_pol-officer-box .pri_pol-officer-item strong {
    display: block;
    color: var(--golden-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.pri_pol-note {
    margin-top: 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--dark-green);
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* Contact CTA card at end */
.pri_pol-cta {
    background: var(--green-gradient);
    border-radius: 16px;
    padding: 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 20px;
}
.pri_pol-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}
.pri_pol-cta h3 {
    font-family: 'Playfair Display', serif;
    color: var(--golden-light);
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.pri_pol-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
    font-size: 0.95rem;
}
.pri_pol-cta .pri_pol-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.pri_pol-cta .pri_pol-cta-row a {
    display: inline-block;
    text-decoration: none;
}

/* ==============================================================
   BUTTONS (btn-gold & btn-green) – MOVED TO BOTTOM
   ============================================================== */
.btn-gold-pri {
    display: inline-block;
    background: var(--dark-green);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 6px 18px rgba(34, 89, 2, 0.35);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
        font-size: 15px;
    height: 45;
}
.btn-gold-pri:hover {
    background: var(--dark-green-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(34, 89, 2, 0.45);
}

.btn-green-pri {
    display: inline-block;
    background: var(--white);
    color: var(--dark-green);
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 6px;
    border: 1.5px solid var(--dark-green);
    box-shadow: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
        font-size: 15px;
    height: 45;
}
.btn-green-pri:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* NEW: btn-gold-pri / btn-green-pri were using dark-green fills, which
   blended into the pri_pol-cta section's dark-green background.
   Scope a golden contrast fix ONLY inside the CTA box, so buttons used
   elsewhere on the page (light backgrounds) stay unaffected. */
.pri_pol-cta .btn-gold-pri {
    background: var(--gold-gradient);
    color: var(--dark-green-2);
    box-shadow: 0 8px 22px rgba(212, 169, 74, 0.5);
}
.pri_pol-cta .btn-gold-pri:hover {
    background: var(--golden-yellow);
    color: var(--dark-green-2);
}
.pri_pol-cta .btn-green-pri {
    background: rgba(255, 255, 255, 0.08);
    color: var(--golden-light);
    border: 1.5px solid var(--golden-yellow);
}
.pri_pol-cta .btn-green-pri:hover {
    background: var(--gold-gradient);
    color: var(--dark-green-2);
    border-color: transparent;
}

/* ==============================================================
   RESPONSIVE (tablet / mobile)
   ============================================================== */
@media (max-width: 1000px) {
    .pri_pol-wrapper {
        grid-template-columns: 1fr;
    }
    .pri_pol-toc {
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px) {
    .pri_pol-hero {
        padding: 50px 6% 40px;
    }
    .pri_pol-hero h1 {
        font-size: 1.9rem;
    }
    .pri_pol-wrapper {
        padding: 50px 6%;
        gap: 30px;
    }
    .pri_pol-card {
        padding: 26px 22px;
    }
    .pri_pol-card-head {
        gap: 12px;
    }
    .pri_pol-num {
        font-size: 1.2rem;
        min-width: 36px;
    }
    .pri_pol-card h3 {
        font-size: 1.15rem;
    }
    .pri_pol-cta {
        padding: 34px 24px;
    }
}