/* ===== LEGAL PAGES STYLES ===== */

/* Page Hero */
.legal-hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                      url('../img/FB9A6574.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
    background-color: var(--bg-darker);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* EEO Statement */
.eeo-statement {
    margin-bottom: 5rem;
}

.statement-content {
    margin-top: 3rem;
}

.statement-card {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 31, 38, 0.2);
    transition: var(--transition-base);
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 31, 38, 0.2);
    border-color: var(--primary-color);
}

.statement-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.statement-text {
    flex: 1;
}

.statement-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.statement-text p:last-child {
    margin-bottom: 0;
}

/* EEO Values */
.eeo-values {
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Protected Classes */
.protected-classes {
    margin-bottom: 5rem;
}

.protected-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.protected-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.protected-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.protected-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.protected-item span {
    font-weight: 500;
    color: var(--white);
}

/* Accommodations */
.accommodations {
    margin-bottom: 5rem;
}

.accommodation-content {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.accommodation-card {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 31, 38, 0.2);
    transition: var(--transition-base);
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 31, 38, 0.2);
    border-color: var(--primary-color);
}

.accommodation-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.accommodation-text {
    flex: 1;
}

.accommodation-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.accommodation-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.accommodation-text p:last-child {
    margin-bottom: 0;
}

.accommodation-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.accommodation-text a:hover {
    color: var(--primary-hover);
}

/* Reporting Section */
.reporting-section {
    margin-bottom: 5rem;
}

.reporting-content {
    margin-top: 3rem;
}

.reporting-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 31, 38, 0.2);
}

.reporting-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-gray);
}

.step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.6;
}

.contact-info {
    background-color: rgba(224, 31, 38, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 31, 38, 0.2);
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-method div strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-method div p {
    margin: 0;
    color: var(--light-gray);
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Legal Document Styles */
.legal-document {
    color: var(--white);
}

.legal-intro .lead-text {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h2 i {
    color: var(--primary-color);
}

.legal-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-subsection {
    margin-bottom: 2rem;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-box {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 31, 38, 0.2);
    text-align: center;
}

.contact-box p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.privacy-email {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.privacy-email:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-note {
    color: var(--light-gray) !important;
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    text-align: center;
}

.legal-footer p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.legal-footer p:last-child {
    margin-bottom: 0;
}

/* Legal Compliance */
.legal-compliance {
    margin-bottom: 5rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-item {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition-base);
}

.compliance-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.compliance-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.compliance-item ul {
    list-style: none;
    padding: 0;
}

.compliance-item li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--dark-gray);
    color: var(--light-gray);
    position: relative;
    padding-left: 1.5rem;
}

.compliance-item li:last-child {
    border-bottom: none;
}

.compliance-item li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Affirmative Action */
.affirmative-action {
    margin-bottom: 3rem;
}

.aa-content {
    margin-top: 3rem;
}

.aa-statement {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 31, 38, 0.2);
}

.aa-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.aa-statement p:last-child {
    margin-bottom: 0;
}

/* EEO CTA */
.eeo-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    text-align: center;
}

.eeo-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.eeo-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.eeo-cta .cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.eeo-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.eeo-cta .btn i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .statement-card,
    .accommodation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .statement-icon,
    .accommodation-icon {
        margin: 0 auto 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .protected-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .eeo-cta .cta-title {
        font-size: 1.75rem;
    }
    
    .eeo-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}