/* Privacy Policy Page Specific Styles */

/* Page Header */
.page-header {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a3c5d 50%, #3a4c6d 100%);
    color: var(--color-background);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s forwards;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-background);
    line-height: 1.1;
}

.page-header h1 .highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.page-description {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(245, 241, 233, 0.9);
}

/* Service Detail Layout */
.service-detail {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}

.service-detail-content {
    padding-right: 2rem;
}

/* Service Introduction */
.service-intro {
    margin-bottom: 4rem;
}

.service-intro h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.service-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 3px;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* Service Process - used for privacy policy sections */
.service-process {
    margin-bottom: 4rem;
}

.service-process h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.service-process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 3px;
}

.process-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.2rem;
    width: 2px;
    background: var(--color-border);
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.25rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Service Features - used for key privacy points */
.service-features {
    margin-bottom: 4rem;
}

.feature-item-large {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(245, 241, 233, 0.5);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature-item-large:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.feature-item-large .feature-icon {
    background: rgba(26, 43, 76, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item-large:hover .feature-icon {
    background: var(--color-primary);
    color: var(--color-background);
    transform: scale(1.1) rotate(10deg);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Technologies Section - used for additional info */
.service-technologies {
    margin-bottom: 4rem;
}

.service-technologies h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.service-technologies h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 3px;
}

.tech-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--color-text);
}

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

.tech-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(245, 241, 233, 0.5);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.tech-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.tech-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(26, 43, 76, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: var(--color-primary);
    color: var(--color-background);
    transform: scale(1.1);
}

.tech-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
}

.sidebar-card, .cta-card, .testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(245, 241, 233, 0.5);
    border: 1px solid var(--color-border);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover, .cta-card:hover, .testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3, .cta-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.service-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-list li i {
    color: var(--color-secondary);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.service-list li span {
    color: var(--color-text-light);
}

.service-list li:hover {
    transform: translateX(5px);
}

.cta-card {
    background: var(--color-primary);
    color: var(--color-background);
    text-align: center;
}

.cta-card h3 {
    color: var(--color-background);
}

.cta-card p {
    margin-bottom: 1.5rem;
    color: rgba(245, 241, 233, 0.9);
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.testimonial-card {
    background: var(--color-background);
    position: relative;
    padding-top: 3rem;
}

.quote-icon {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-text::before, .testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--color-secondary);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a3c5d 50%, #3a4c6d 100%);
    color: var(--color-background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-background);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(245, 241, 233, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-section .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-background);
    border: 1px solid var(--color-background);
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 991px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-content {
        padding-right: 0;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .feature-item-large {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .feature-item-large .feature-icon {
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .service-detail {
        padding: 3rem 0;
    }
    
    .service-intro h2, 
    .service-process h2, 
    .service-technologies h2 {
        font-size: 1.75rem;
    }
    
    .service-intro p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Animation for privacy policy elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}