/* PRIVACY.CSS - Cosmic Privacy Protocol for Prabhune Diamonds & Stones */

/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
    --primary-blue: #0A2463;
    --gold: #D4AF37;
    --light-gold: #F4E4A6;
    --cream: #F5F5DC;
    --charcoal: #333333;
    --white: #FFFFFF;
    --light-gray: #f9f9f9;
    --dark-blue: #06163A;
    --purple: #5D3FD3;
    --green: #228B22;
    --red: #800000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* =========================================
   NAVBAR - FIXED: Clean structure
   ========================================= */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #090909;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo1 {
    height: 60px;
    width: auto;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name .primary {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.brand-name .secondary {
    font-size: 1rem;
    font-weight: 400;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #d9a45f;
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 2px solid #d4af37;
    padding-left: 10px;
}

.nav {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav li a:hover {
    color: #d9a45f;
}

.nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d9a45f;
    transition: width 0.3s;
}

.nav li a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--gold);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger:hover span {
    background: var(--light-gold);
}

/* Open Menu Button for Menu Card */
.open-menu-btn {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    margin-left: 15px;
}

.open-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Links */
.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid transparent;
    transform: translateX(100px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

.mobile-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 25px;
}

.mobile-menu a i {
    width: 20px;
    text-align: center;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Menu Card */
.menu-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.menu-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.menu-card-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-card-header h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    text-align: center;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1004;
}

.close-menu-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--light-gold);
    transform: rotate(90deg);
}

.menu-card-links {
    padding: 30px;
}

.menu-card-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-card-links a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    padding-left: 25px;
    color: var(--gold);
    transform: translateX(5px);
}

.menu-card-links a i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.menu-card-links a span {
    font-size: 1.1rem;
    font-weight: 500;
}

.menu-card-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-card-footer p {
    color: var(--light-gold);
    font-size: 0.9rem;
}

.menu-card-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.menu-card-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        gap: 20px;
    }
    
    .nav li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger and open menu button */
    .nav {
        display: none;
    }

    .open-menu-btn {
        display: inline-block;
    }

    .hamburger {
        display: block;
    }
    
    .nav-bar {
        padding: 12px 20px;
    }
    
    .logo1 {
        width: 50px;
        height: 50px;
    }
    
    .brand-info h1 {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .open-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
        padding: 80px 20px 30px;
    }
    
    .mobile-menu a {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .menu-card {
        width: 95%;
    }
    
    .menu-card-links {
        padding: 20px;
    }
    
    .menu-card-links a {
        padding: 12px 15px;
    }
}

/* Animation for active hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--starlight);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   PRIVACY POLICY SPECIFIC STYLES
============================================ */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

/* Privacy Header */
.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-top: 40px;
}

.protocol-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(229, 232, 236, 0.826), rgba(199, 179, 240, 0.837));
    color: var(--celestial-blue);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--starlight), var(--golden-star));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    font-weight: 300;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(206, 217, 235, 0.855);
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    border-color: var(--golden-star);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.trust-item i {
    color: var(--golden-star);
    font-size: 1.2rem;
}

/* Policy Grid */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.policy-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nebula-purple), var(--celestial-blue));
}

.policy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--celestial-blue);
    font-size: 1.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.policy-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
}

.policy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--starlight);
    position: relative;
    display: inline-block;
}

.policy-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--golden-star), transparent);
}

.policy-card p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.2rem;
    opacity: 0.08;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.policy-card:hover .card-badge {
    opacity: 0.15;
    transform: scale(1.2);
}

/* Rights Section */
.rights-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 25px;
    padding: 60px 50px;
    margin: 80px 0;
    border: 1px solid rgba(20, 184, 166, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rights-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.section-header i {
    font-size: 2.5rem;
    color: var(--planet-teal);
    background: rgba(20, 184, 166, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid rgba(20, 184, 166, 0.3);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--planet-teal), var(--celestial-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.right-item {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.8));
    padding: 30px 25px;
    border-radius: 18px;
    border-left: 4px solid var(--planet-teal);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), transparent);
    z-index: -1;
}

.right-item:hover {
    transform: translateX(8px);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.right-item i {
    color: var(--golden-star);
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: inline-block;
    transition: var(--transition);
}

.right-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.right-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--starlight);
    font-weight: 600;
}

.right-item p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 80px 0;
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--nebula-purple), var(--celestial-blue), var(--planet-teal));
    border-radius: 3px;
}

.process-timeline h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--starlight);
    background: linear-gradient(to right, var(--starlight), var(--golden-star));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding: 25px 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--celestial-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--starlight);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.step-number::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.step-content {
    padding-top: 12px;
    flex: 1;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--starlight);
    position: relative;
    display: inline-block;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--golden-star);
}

.step-content p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--starlight), var(--golden-star));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.contact-section > p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.contact-method {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.8));
    padding: 35px 30px;
    border-radius: 20px;
    min-width: 240px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-star), var(--celestial-blue));
}

.contact-method:hover {
    transform: translateY(-8px);
    border-color: var(--golden-star);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--golden-star);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.contact-method:hover i {
    transform: scale(1.2);
}

.contact-method h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--starlight);
    font-weight: 600;
}

.contact-method p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--celestial-blue), var(--nebula-purple));
    color: var(--starlight);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn i {
    font-size: 1.2rem;
}

/* Footer */
.privacy-footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: #94a3b8;
    font-size: 0.95rem;
    position: relative;
}

.privacy-footer::before {
    content: '✧';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--golden-star);
    opacity: 0.5;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--celestial-blue);
    margin-bottom: 20px;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.privacy-footer > p {
    margin-bottom: 10px;
}

.privacy-footer > p:last-of-type {
    margin-top: 15px;
    color: #64748b;
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS & EFFECTS
============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
    .privacy-header h1 {
        font-size: 2.8rem;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rights-section {
        padding: 50px 35px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .contact-section {
        padding: 60px 35px;
    }
    
    .contact-section h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 15px 30px;
    }
    
    .privacy-header {
        padding-top: 30px;
        margin-bottom: 50px;
    }
    
    .privacy-header h1 {
        font-size: 2.3rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .protocol-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .policy-card {
        padding: 35px 25px;
    }
    
    .rights-section {
        padding: 40px 25px;
        margin: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-header i {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-timeline {
        padding-left: 30px;
        margin: 60px 0;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 50px 25px;
        margin: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .contact-method {
        width: 100%;
        max-width: 320px;
        min-width: unset;
    }
    
    .contact-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .privacy-footer {
        margin-top: 60px;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .protocol-badge {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .policy-card h3 {
        font-size: 1.4rem;
    }
    
    .rights-section {
        padding: 35px 20px;
    }
    
    .right-item {
        padding: 25px 20px;
    }
    
    .process-timeline {
        padding-left: 25px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-method {
        padding: 30px 25px;
    }
}

/* ============================================
   DARK MODE ENHANCEMENTS
============================================ */
@media (prefers-color-scheme: dark) {
    .policy-card,
    .rights-section,
    .right-item,
    .contact-method {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.95));
    }
}

/* ============================================
   PRINT STYLES
============================================ */
@media print {
    .contact-btn,
    .trust-item:hover,
    .policy-card:hover,
    .right-item:hover,
    .contact-method:hover {
        box-shadow: none !important;
        transform: none !important;
    }
    
    .privacy-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .protocol-badge,
    .trust-item,
    .card-icon,
    .right-item i,
    .contact-method i,
    .contact-btn i {
        border: 1px solid #ddd !important;
    }
    
    body {
        background: white !important;
        color: #333 !important;
    }
    
    .privacy-header h1,
    .policy-card h3,
    .right-item h4,
    .step-content h3,
    .contact-section h2,
    .contact-method h4 {
        color: #333 !important;
        background: none !important;
        -webkit-text-fill-color: #333 !important;
    }
}