/* Footer Styles */
.footer {
    color: #ecf0f1;
    margin-top: auto;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bs-main-300)
}

.footer ul.list-unstyled li {
    transition: all 0.3s ease;
}

.footer ul.list-unstyled li:hover {
    transform: translateX(5px);
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer a:hover {
    color: #3498db;
    text-decoration: none;
}

.footer .material-icons {
    font-size: 16px;
    margin-right: 8px;
}

.footer .business-info p {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer .business-info p.fw-bold {
    color: #ffffff;
    font-size: 1rem;
}

.footer hr.border-light {
    border-color: #34495e !important;
    margin: 2rem 0 1rem 0;
}

.footer .text-muted {
    color: #95a5a6 !important;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .footer h5::after {
        width: 25px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 !important;
    }
    
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Hover effects for better UX */
.footer .col-lg-3:hover h5::after {
    width: 40px;
    transition: width 0.3s ease;
}

.footer a:hover .material-icons {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} 