.footer-section {
    background: #111111;
}

.footer-heading {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.schedule-btn {
    background: #ffffff;
    color: #000000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.schedule-btn:hover {
    opacity: 0.85;
}

.logo-text {
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-desc {
    color: #cccccc;
    font-size: 15px;
    width: 80%;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #ffffff;
}

.social-icons i {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
}

.social-icons i:hover {
    opacity: 1;
}

.footer-line {
    border-color: #333;
    margin: 25px 0;
}

.footer-section .row.text-center.small a {
    color: #ffffff !important;
    text-decoration: none !important;
    margin: 0 5px;
}

/* ================= RESPONSIVE FOOTER ================= */

@media (max-width: 1200px) {
    .footer-heading {
        font-size: 45px;
    }
}

@media (max-width: 992px) {
    .footer-heading {
        font-size: 38px;
        text-align: center;
    }

    .schedule-btn {
        width: 100%;
        text-align: center;
    }

    .footer-desc {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-section .row {
        text-align: center;
    }

    .footer-menu {
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .logo-text {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .footer-heading {
        font-size: 32px;
        line-height: 1.3;
    }

    .schedule-btn {
        padding: 10px 18px;
        border-radius: 8px;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-icons i {
        font-size: 20px;
        margin: 0 8px;
    }
}