/* Footer Styles with Dark Blue Gradient */
.custom-footer {
    /* background: linear-gradient(135deg, #2932b4 0%, #3655a8 100%); */
     /* background: linear-gradient(135deg, #1E3A8A 0%, #600018 100%); */
      background: linear-gradient(135deg, #600018 0%, #1E3A8A 100%);
    color: white;
    padding: 2.5rem 0 1rem;
    font-size: 0.9rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #800000;
}

.footer-text {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 1.2rem;
}

.footer-contact {
    color: #E0E0E0;
    margin-bottom: 0.7rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    text-decoration: none !important;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #ffffff !important;
    margin-right: 10px;
    min-width: 16px;
}
.footer-contact i:hover{
    color: #1E3A8A !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-icons{
    display: flex;
    align-items: center;
    flex-direction: row;
}
.social-icon{
    color: #800000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-right: 15px;
    height: 30px;
    width: 30px;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 7px;
    text-decoration: none;
    background-color: #ffffff;
    transition: color 0.3s ease;
}
.social-icon:hover{
    color: #ffffff;
    background-color: #1E3A8A;
    text-decoration: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    /* color: white; */
    color: #993636;
    padding-left: 10px;
    text-decoration: underline;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #800000;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.office-hours {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    /* border: 1px solid rgb(24, 18, 141)  ; */
    border: 1px solid #800000  ; 
    border-radius: 5px;
    margin-bottom: 1rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #800000;
    font-size: 0.9rem;
}

.hour-row:last-child {
    border-bottom: none;
}

.day {
    color: #E0E0E0;
}

.time {
    color: white;
    font-weight: 500;
}

.appointment-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
}

.appointment-btn {
    background-color: #800000;
    color: white;
    padding: 0.7rem 1.5rem;
    border: 2px solid #6e6363;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.appointment-btn:hover {
    background-color: #600000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: #ffffff;
}

.copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
    margin-top: 2rem;
}

.copyright-text {
    color: #E0E0E0;
    margin: 0;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.separator {
    color: #E0E0E0;
    margin: 0 10px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .custom-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-heading {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hour-row {
        flex-direction: column;
    }
    
    .time {
        margin-top: 0.2rem;
    }
    
    .copyright-section {
        text-align: center;
    }
    
    .copyright-section .text-md-end {
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    .footer-contact i {
        margin-bottom: 5px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-text, .footer-contact, .footer-links a {
        font-size: 0.85rem;
    }
    
    .appointment-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}