/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--spacing-xxl);
    margin-top: 20PX;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: var(--spacing-sm);
}

.footer-links li a:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    transition: transform var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: var(--spacing-md);
}

.footer-links li a:hover:before {
    transform: translateX(5px);
}

.footer-column address {
    font-style: normal;
    line-height: 1.8;
}

.footer-column address p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-column address p i {
    margin-right: var(--spacing-sm);
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.footer-column address p a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column address p a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--secondary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-column {
        margin-bottom: var(--spacing-lg);
    }

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