/* Footer Styles to match the design in the image */

footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--light-color);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.divider-footer {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 25px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 18px;
    min-width: 20px;
}

.contact-item a,
.contact-item span {
    color: var(--light-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

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

.footer-links a {
    color: var(--light-color);
    opacity: 0.9;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-left: 8px;
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}
