/* Footer Styles - Epic Deals - Standardized Conversion Format */
.footer {
    background: #0A0A0A;
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact h3,
.footer-links h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #D94A3E;
    border-radius: 2px;
}

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

.contact-details li {
    margin-bottom: 1rem;
    color: #999;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.contact-details li i {
    color: #D94A3E;
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 0.1rem;
}

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

.footer-links-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #FF6B57;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: #666;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spot-on-credit {
    color: #999;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.spot-on-credit a {
    color: #D94A3E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spot-on-credit a:hover {
    color: #FF6B57;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FF6B57;
}




/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-main {
        gap: 2rem;
    }
    
    .footer-links-grid {
        gap: 1.5rem;
    }
}
/* ============================================
   WCAG 2.1 AA CONTRAST COMPLIANCE FIXES - Footer
   Applied: 2026-03-19
   ============================================
   - footer-bottom color #666 on #0A0A0A = 3.45:1  FAIL (normal text)
   - footer-legal a #666 on #0A0A0A = 3.45:1  FAIL
   FIX: #888 on #0A0A0A = 5.58:1 PASS
   - spot-on-credit a #D94A3E on #0A0A0A = 4.71:1 PASS (leave)
   ============================================ */

.footer-bottom {
    color: #888888;
}

.footer-legal a {
    color: #888888;
}

.footer-legal a:hover {
    color: #FF6B57;
}

/* spot-on-credit link: #D94A3E on #0A0A0A = 4.71:1 PASS — leave as-is */
