/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    padding: 4rem 0;
    position: relative;
}

.footer-content {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer .text-muted {
    color: #6B7280 !important;
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer .social-links a {
    color: var(--primary-color);
    font-size: 1.25rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Enhanced footer styling */
.footer .contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.footer .contact-info p i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.footer .social-links .btn {
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer .social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 132, 196, 0.3);
}

@media (min-width: 768px) {
    .footer .contact-info p {
        justify-content: flex-end;
    }

    .footer .social-links {
        justify-content: flex-end;
    }
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
}

@media (max-width: 767px) {
    .footer-content {
        padding: 2rem !important;
    }

    .footer [class^="col-"] {
        margin-bottom: 2rem;
    }

    .footer [class^="col-"]:last-child {
        margin-bottom: 0;
    }
}