/* Footer Styles */

.footer {
    background: var(--dark-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(196,30,58,0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section a {
    color: var(--gray-text);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 5px 0;
}

.footer-section a i {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section a:hover i {
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(196,30,58,0.1);
    color: var(--gray-text);
}

.footer-bottom a {
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* Footer Social Buttons */
.footer .social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer .social-button {
    width: 45px;
    height: 45px;
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.2);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer .social-button:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    border-color: transparent;
}