/* Footer Styling */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.about-col .footer-logo img {
    height: 100px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white if needed, but original might be fine */
}

.clinic-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #f80601;
    /* Using a brand-like gold/tan color */
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f80601;
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.links-col ul li a:hover {
    color: #f80601;
    padding-left: 5px;
}

.contact-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-col .contact-item .icon {
    width: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-col .contact-item .icon img {
    width: 100%;
}

.contact-col .contact-item p {
    font-size: 15px;
    color: #cccccc;
    margin: 0;
}

.footer-divider {
    height: 1px;
    background-color: #333333;
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom {
    background-color: #111111;
    padding: 25px 0;
    text-align: center;
}

.copyright-text p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

.copyright-text span {
    color: #f80601;
    font-weight: 500;
}

/* Responsive Implementation */
@media (max-width: 991px) {
    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 575px) {
    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-col .contact-item {
        justify-content: center;
    }
}