/**
 * Do Not Sell Page Styles
 * Privacy compliance and data protection page styling
 */

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #07396a 0%, #d99513 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 57, 106, 0.1);
    z-index: 1;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.privacy-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.privacy-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.privacy-hero .hero-buttons .btn {
    margin-bottom: 0.5rem;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-hero .btn-primary {
    background-color: #fff;
    color: #07396a;
    border: 2px solid #fff;
}

.privacy-hero .btn-primary:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(7, 57, 106, 0.2);
}

.privacy-hero .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background-color: transparent;
}

.privacy-hero .btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.privacy-hero .hero-image {
    text-align: center;
    position: relative;
}

.privacy-hero .hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(7, 57, 106, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Introduction Section */
.privacy-intro {
    padding: 60px 0;
    background-color: rgba(217, 149, 19, 0.08);
}

.privacy-intro h2 {
    color: #07396a;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.privacy-intro .intro-text {
    font-size: 1.2rem;
    color: #07396a;
    opacity: 0.8;
    line-height: 1.7;
}

.privacy-intro .intro-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(7, 57, 106, 0.1);
}

/* Privacy Rights Section */
.privacy-rights-section {
    padding: 80px 0;
    background-color: rgba(7, 57, 106, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #07396a;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #07396a;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-right-card {
    background: rgba(7, 57, 106, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(7, 57, 106, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(217, 149, 19, 0.2);
}

.privacy-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 57, 106, 0.12);
    border-color: #07396a;
}

.privacy-right-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #07396a, #d99513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.privacy-right-card:hover .card-icon {
    transform: scale(1.1);
}

.privacy-right-card .card-icon i {
    font-size: 2rem;
    color: #fff;
}

.privacy-right-card h3 {
    color: #07396a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-right-card p {
    color: #07396a;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Request Form Section */
.request-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(7, 57, 106, 0.05) 0%, rgba(217, 149, 19, 0.05) 100%);
}

.privacy-request-form {
    background: rgba(7, 57, 106, 0.02);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(7, 57, 106, 0.1);
    border: 1px solid rgba(217, 149, 19, 0.3);
}

.privacy-request-form .form-label {
    font-weight: 600;
    color: #07396a;
    margin-bottom: 0.5rem;
}

.privacy-request-form .form-control,
.privacy-request-form .form-select {
    border: 2px solid rgba(217, 149, 19, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.privacy-request-form .form-control:focus,
.privacy-request-form .form-select:focus {
    border-color: #07396a;
    box-shadow: 0 0 0 0.2rem rgba(7, 57, 106, 0.25);
}

.verification-notice .alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
}

.response-time-notice {
    margin-top: 1rem;
}

/* Information Collection Section */
.info-collection-section {
    padding: 80px 0;
    background-color: rgba(217, 149, 19, 0.03);
}

.info-type-card {
    background: rgba(217, 149, 19, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-type-card:hover {
    background: rgba(7, 57, 106, 0.05);
    border-color: #07396a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(7, 57, 106, 0.15);
}

.info-type-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d99513, #07396a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-type-card .card-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.info-type-card h4 {
    color: #07396a;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-type-card p {
    color: #07396a;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Privacy Contact Section */
.privacy-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #07396a 0%, #d99513 100%);
    color: white;
}

.privacy-contact-section .section-header h2,
.privacy-contact-section .section-header .section-subtitle {
    color: white;
}

.privacy-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    padding: 1rem;
}

.contact-item i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-item h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Privacy Disclaimer */
.privacy-disclaimer {
    padding: 40px 0;
    background-color: rgba(217, 149, 19, 0.05);
    border-top: 1px solid rgba(7, 57, 106, 0.2);
}

.privacy-disclaimer .disclaimer-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
    background-color: rgba(7, 57, 106, 0.05);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(217, 149, 19, 0.3);
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #d99513;
}

.breadcrumb-item a {
    color: #07396a;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #d99513;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: rgba(217, 149, 19, 0.1);
    color: #d99513;
    border-left: 4px solid #d99513;
}

.alert-danger {
    background-color: rgba(7, 57, 106, 0.1);
    color: #07396a;
    border-left: 4px solid #07396a;
}

.alert-info {
    background-color: rgba(217, 149, 19, 0.1);
    color: #d99513;
    border-left: 4px solid #d99513;
}

/* Button Styling */
.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 10px 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #07396a, #d99513);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 57, 106, 0.4);
    background: linear-gradient(135deg, rgba(7, 57, 106, 0.8), rgba(217, 149, 19, 0.8));
}

.btn-outline-primary {
    border: 2px solid #07396a;
    color: #07396a;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #07396a;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .privacy-hero .hero-buttons {
        margin-top: 2rem;
    }
    
    .privacy-hero .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .privacy-request-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .privacy-contact-card {
        padding: 2rem 1rem;
    }
    
    .contact-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .privacy-right-card,
    .info-type-card {
        margin-bottom: 2rem;
    }
    
    .privacy-request-form {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(217, 149, 19, 0.3);
    border-top: 3px solid #07396a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Enhancement */
.form-floating {
    position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid #07396a;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .privacy-hero,
    .breadcrumb-nav,
    .hero-buttons,
    .request-form-section {
        display: none;
    }
    
    .privacy-rights-section,
    .info-collection-section,
    .privacy-contact-section {
        break-inside: avoid;
    }
}