/* Footer Styles */
.footer-main {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 4rem 0 0;
    font-size: 0.95rem;
    margin-top: 50px;
}

.footer-main h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-main ul li {
    margin-bottom: 0.75rem;
}

.footer-main a {
    color: #f1f1f1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-main a:hover {
    color: #007bff;
    padding-left: 5px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

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

.social-icons a:hover {
    background: #007bff;
    transform: translateY(-3px);
    color: #ffffff !important;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

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

.footer-bottom .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

.footer-bottom a {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom a:hover {
    opacity: 1;
    color: #007bff !important;
    padding-left: 0;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 0;
    }
    
    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .list-inline-item {
        margin-bottom: 0.5rem;
    }
}
