/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 3px solid #c84436;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-column h3 {
    color: #c84436;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #c84436;
    padding-left: 5px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(200, 68, 54, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c84436;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #c84436;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem 2rem;
    }
}
