/* ============================================================
   privacy-policy.css — Privacy Policy Page Stylesheet
   Extends global style.css with highly refined, premium design components.
   ============================================================ */

/* ─── HERO BANNER ─────────────────────────────────────────── */
.privacy-hero {
    position: relative;
    height: 380px;
    background-image: url('image/Privacy/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    text-align: center;
}

/* Diagonal overlay matching About page */
.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 84, 172, 0.88) 0%, rgba(20, 190, 217, 0.7) 100%);
    z-index: 1;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.privacy-hero h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.projects-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.projects-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.projects-breadcrumb a:hover {
    color: #fff;
}

.projects-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ─── MAIN CONTENT LAYOUT ─────────────────────────────────── */
.privacy-section {
    padding: 5rem 0;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

/* ─── STICKY SIDEBAR ──────────────────────────────────────── */
.privacy-sidebar {
    position: relative;
}

.sidebar-sticky-box {
    position: sticky;
    top: 130px;
    /* Offset to clear the fixed header (100px navbar + padding) */
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--primary-cyan);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-links a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: rgba(20, 190, 217, 0.08);
    color: var(--primary-cyan);
    font-weight: 600;
    padding-left: 1.1rem;
    border-left-color: var(--primary-cyan);
}

/* ─── PRIVACY CONTENT ─────────────────────────────────────── */
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.privacy-content-header {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 0.5rem;
}

.privacy-content-header h2 {
    font-size: 32px;
    color: var(--primary-navy);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.75rem;
    display: block;
}

.intro-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    font-weight: 400;
}

/* Card Block Style */
.content-block {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.content-block h3 {
    font-size: 20px;
    color: var(--primary-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-cyan);
    padding-left: 0.85rem;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.section-desc {
    margin-bottom: 2rem;
    font-size: 17px;
    color: #475569;
}

/* 2. INFORMATION WE COLLECT */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.collect-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    border-radius: 12px;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.gold-tint {
    background: #fef3c7;
    color: var(--primary-yellow);
}

.icon-circle.cyan-tint {
    background: #cffafe;
    color: var(--primary-cyan);
}

.icon-circle i {
    width: 20px;
    height: 20px;
}

.collect-card h4 {
    font-size: 17px;
    color: var(--primary-navy);
    font-weight: 700;
    margin: 0;
}

.styled-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.styled-list li {
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.styled-list li::before {
    content: "•";
    color: var(--primary-cyan);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 1px;
}

/* 3. HOW WE USE YOUR DATA */
.use-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.use-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(20, 190, 217, 0.3);
}

.use-icon {
    margin-bottom: 1.25rem;
}

.use-icon.text-cyan {
    color: var(--primary-cyan);
}

.use-icon.text-gold {
    color: var(--primary-yellow);
}

.use-icon.text-navy {
    color: var(--primary-navy);
}

.use-icon.text-green {
    color: var(--primary-green);
}

.use-icon i {
    width: 28px;
    height: 28px;
}

.use-card h5 {
    font-size: 17px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.use-card p {
    font-size: 0.88rem;
    color: #000000;
    line-height: 1.6;
}

/* 4. QUESTIONS FOR YOU ON SLM SYSTEMS */
.content-block.dark-block {
    background: #0f172a;
    /* Premium dark slate background */
    color: #fff;
    border: none;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.content-block.dark-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 190, 217, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.dark-block-content {
    position: relative;
    z-index: 2;
}

.content-block.dark-block h3 {
    color: #fff;
    border-left-color: var(--primary-yellow);
}

.slm-lead {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.slm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
}

.slm-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.slm-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slm-icon i {
    width: 20px;
    height: 20px;
}

.slm-text h6 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.slm-text p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

.full-width-slm-footer {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    margin-top: 0.5rem;
}

.full-width-slm-footer .slm-icon {
    color: var(--primary-cyan);
}

.use-cases-inline {
    font-style: italic;
    color: #e2e8f0 !important;
}

/* 5. HOW WE SHARE YOUR INFORMATION */
.share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.share-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    border-radius: 12px;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.share-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.share-circle.bg-cyan-light {
    background: #ecfeff;
}

.share-circle.bg-gold-light {
    background: #fffbeb;
}

.share-circle.bg-navy-light {
    background: #eff6ff;
}

.share-circle i {
    width: 18px;
    height: 18px;
}

.share-box h5 {
    font-size: 1.05rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin: 0;
}

.share-box p {
    font-size: 0.88rem;
    color: #000000;
    line-height: 1.6;
}

/* 6. INTERNATIONAL DATA TRANSFER */
.block-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.75rem;
}

.transfer-points {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.transfer-point-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon-circle {
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon-circle i {
    width: 18px;
    height: 18px;
}

.transfer-point-row p {
    margin: 0;
    font-size: 0.92rem;
    color: #000000;
}

/* 7. YOUR PRIVACY RIGHTS */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.right-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.right-box:hover {
    box-shadow: 0 10px 25px rgba(20, 190, 217, 0.08);
    border-color: rgba(20, 190, 217, 0.25);
    transform: translateY(-3px);
}

.right-box h6 {
    font-size: 1.05rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.right-box p {
    font-size: 0.85rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

/* 8. DATA SECURITY MEASURES */
.table-container {
    overflow-x: auto;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.security-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.security-table th {
    background: var(--primary-navy);
    color: #fff;
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.security-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #060606;
    line-height: 1.6;
}

.security-table tr:last-child td {
    border-bottom: none;
}

.security-table tr:nth-child(even) {
    background: #f8fafc;
}

.security-table td.bold-text {
    font-weight: 700;
    color: var(--primary-navy);
    width: 25%;
    white-space: nowrap;
}

/* 9. DATA RETENTION */
.retention-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.retention-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    border-radius: 12px;
}

.retention-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.retention-header .label {
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-weight: 700;
}

.retention-header .badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.retention-header .badge.yellow-badge {
    background: #fffbeb;
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.retention-header .badge.cyan-badge {
    background: #ecfeff;
    color: var(--primary-cyan);
    border: 1px solid rgba(20, 190, 217, 0.3);
}

.retention-header .badge.blue-badge {
    background: #eff6ff;
    color: var(--primary-navy);
    border: 1px solid rgba(25, 84, 172, 0.3);
}

.retention-item p {
    font-size: 0.85rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.learn-more-link {
    margin-top: 1.75rem;
    text-align: right;
}

.learn-more-link a {
    font-size: 0.9rem;
    color: var(--primary-cyan);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.learn-more-link a:hover {
    color: var(--primary-navy);
}

.learn-more-link a i {
    width: 16px;
    height: 16px;
}

/* 10. COOKIES AND TRACKING TECHNOLOGIES */
.cookies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    border-radius: 12px;
}

.cookie-card h6 {
    font-size: 1.05rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cookie-card p {
    font-size: 0.85rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.cookie-disclaimer-box {
    background: #f8fafc;
    border: 1px dashed rgba(20, 190, 217, 0.3);
    padding: 2rem;
    border-radius: 12px;
}

.cookie-disclaimer-box p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* 13. CONTACT US */
.contact-card-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.contact-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.c-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-icon i {
    width: 20px;
    height: 20px;
}

.c-text h6 {
    font-size: 1rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.c-text p {
    font-size: 0.88rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.c-text p a {
    color: inherit;
    transition: color 0.2s;
}

.c-text p a:hover {
    color: var(--primary-cyan);
}

/* General style overlays */
.card-style {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* ─── RESPONSIVE DESIGN ───────────────────────────────────── */
@media (max-width: 1200px) {
    .privacy-layout {
        gap: 2rem;
    }

    .share-grid,
    .rights-grid,
    .retention-grid,
    .cookies-grid,
    .contact-box-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .privacy-sidebar {
        display: none;
        /* Hide sidebar sticky links on mobile/tablet */
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-content-header,
    .content-block {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .two-col-grid,
    .use-cards-grid,
    .slm-grid,
    .share-grid,
    .rights-grid,
    .retention-grid,
    .cookies-grid,
    .contact-box-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .full-width-slm-footer {
        grid-column: span 1;
    }

    .security-table th,
    .security-table td {
        padding: 0.85rem 1rem;
    }

    .security-table td.bold-text {
        width: auto;
    }

    .privacy-hero h1 {
        font-size: 2.2rem;
    }

    .privacy-content-header h2 {
        font-size: 2rem;
    }
}