@import url('base.css');
@import url('components.css');

/* Privacy Policy Page Specific Styles */

/* Privacy Hero Section */
.rupeeget-privacy-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--rupeeget-accent) 0%, var(--rupeeget-primary) 100%);
}

.rupeeget-privacy-hero .rupeeget-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rupeeget-privacy-hero .rupeeget-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.rupeeget-privacy-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.rupeeget-privacy-meta p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Privacy Content Section */
.rupeeget-privacy-content {
    padding: 6rem 0;
    background: var(--rupeeget-white);
}

.rupeeget-privacy-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Table of Contents */
.rupeeget-privacy-toc {
    position: sticky;
    top: 100px;
    background: var(--rupeeget-orange-light);
    padding: 2rem;
    border-radius: var(--rupeeget-radius);
    box-shadow: var(--rupeeget-shadow-light);
    height: fit-content;
}

.rupeeget-privacy-toc h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--rupeeget-gray-900);
}

.rupeeget-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rupeeget-toc-list li {
    margin-bottom: 0.75rem;
}

.rupeeget-toc-list a {
    color: var(--rupeeget-gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: var(--rupeeget-transition);
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.rupeeget-toc-list a:hover,
.rupeeget-toc-list a.active {
    color: var(--rupeeget-primary);
    border-left-color: var(--rupeeget-primary);
    background: rgba(255, 102, 51, 0.05);
    border-radius: 0 4px 4px 0;
}

/* Main Content */
.rupeeget-privacy-main {
    max-width: 800px;
}

.rupeeget-privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rupeeget-gray-300);
}

.rupeeget-privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.rupeeget-privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rupeeget-gray-900);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 3px solid var(--rupeeget-primary);
    margin-top: 0;
}

.rupeeget-privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rupeeget-gray-900);
    margin: 2rem 0 1rem 0;
}

.rupeeget-privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rupeeget-gray-700);
    margin-bottom: 1.5rem;
}

.rupeeget-privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.rupeeget-privacy-section li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--rupeeget-gray-700);
}

.rupeeget-privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rupeeget-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.rupeeget-privacy-section strong {
    color: var(--rupeeget-gray-900);
    font-weight: 600;
}

/* Contact Information */
.rupeeget-contact-info {
    background: var(--rupeeget-orange-light);
    padding: 2rem;
    border-radius: var(--rupeeget-radius);
    margin-top: 1.5rem;
}

.rupeeget-contact-item {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.rupeeget-contact-item:last-child {
    margin-bottom: 0;
}

.rupeeget-contact-item a {
    color: var(--rupeeget-primary);
    text-decoration: none;
    font-weight: 500;
}

.rupeeget-contact-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.rupeeget-privacy-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rupeeget-primary) 0%, var(--rupeeget-warning) 100%);
    color: var(--rupeeget-white);
    text-align: center;
}

.rupeeget-privacy-cta .rupeeget-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.rupeeget-privacy-cta .rupeeget-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.rupeeget-privacy-cta .rupeeget-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Highlight Boxes */
.rupeeget-highlight-box {
    background: var(--rupeeget-warning);
    color: var(--rupeeget-gray-900);
    padding: 1.5rem;
    border-radius: var(--rupeeget-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--rupeeget-primary);
}

.rupeeget-highlight-box p {
    margin: 0;
    font-weight: 500;
}

/* Scroll to Top Button */
.rupeeget-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--rupeeget-primary);
    color: var(--rupeeget-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--rupeeget-shadow);
    transition: var(--rupeeget-transition);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.rupeeget-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.rupeeget-scroll-top:hover {
    background: var(--rupeeget-warning);
    color: var(--rupeeget-gray-900);
    transform: translateY(-2px);
}

/* Print Styles */
@media print {
    .rupeeget-privacy-toc {
        display: none;
    }
    
    .rupeeget-privacy-wrapper {
        grid-template-columns: 1fr;
    }
    
    .rupeeget-scroll-top {
        display: none;
    }
    
    .rupeeget-privacy-cta {
        display: none;
    }
    
    .rupeeget-privacy-section {
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rupeeget-privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rupeeget-privacy-toc {
        position: static;
        order: 2;
    }
    
    .rupeeget-privacy-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .rupeeget-privacy-hero .rupeeget-hero-title {
        font-size: 2.5rem;
    }
    
    .rupeeget-privacy-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rupeeget-privacy-section h2 {
        font-size: 1.75rem;
    }
    
    .rupeeget-privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .rupeeget-privacy-cta .rupeeget-cta-title {
        font-size: 2rem;
    }
    
    .rupeeget-privacy-cta .rupeeget-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rupeeget-scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .rupeeget-privacy-hero .rupeeget-hero-title {
        font-size: 2rem;
    }
    
    .rupeeget-privacy-toc {
        padding: 1.5rem;
    }
    
    .rupeeget-privacy-section {
        margin-bottom: 2rem;
    }
    
    .rupeeget-privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .rupeeget-contact-info {
        padding: 1.5rem;
    }
}
