/* FOOTER STYLES */

/* Appointment Banner */
.appointment-banner {
    background: linear-gradient(135deg, #1e4b9a 0%, #163a7a 100%);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
    margin-bottom: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Background circles for effect */
.appointment-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.appointment-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-title {
    text-align: right;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-right: 30px;
}

.banner-title h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.banner-title span {
    font-size: 20px;
    font-weight: 300;
}

.call-btn {
    background: white;
    color: #1e4b9a;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.call-btn:hover {
    transform: translateY(-2px);
}

.copy-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.banner-info {
    font-size: 12px;
    opacity: 0.9;
}

/* Main Footer */
.main-footer {
    padding-bottom: 50px;
    font-family: 'Inter', sans-serif;
    background: white;
    /* Force white background */
}

/* Ensure container also has no dark bg interference if any */
footer .container {
    background: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    /* Dark text */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    /* Darker grey link */
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d9252c;
    /* Red hover */
}


/* App & Social */
.app-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.app-btn img {
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
}

.social-title {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 24px;
    color: #d9252c;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .appointment-banner {
        text-align: center;
        padding: 30px 20px;
    }

    .banner-top {
        flex-direction: column;
        gap: 20px;
    }

    .banner-title {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 15px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* More space between stacked columns */
    }

    .footer-col {
        text-align: center;
        /* Center text for simpler mobile look */
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-buttons {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .social-title {
        text-align: center;
    }
}