
/** main-footer **/

.main-footer {
    position: relative;
    background: #0d1b2e;
}

/** Emergency Bar **/
.footer-emergency-bar {
    background: #c8102e;
    padding: 13px 0;
}

.footer-emergency-bar .emergency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-emergency-bar .emergency-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.footer-emergency-bar .emergency-left i {
    font-size: 20px;
    color: #fff;
}

.footer-emergency-bar .emergency-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.footer-emergency-bar .emergency-number:hover {
    opacity: 0.85;
}

.footer-emergency-bar .emergency-number i {
    font-size: 20px;
    animation: phone-ring 3s infinite;
}

@keyframes phone-ring {
    0%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-18deg); }
    20% { transform: rotate(18deg); }
    30% { transform: rotate(-12deg); }
    40% { transform: rotate(12deg); }
    50% { transform: rotate(0deg); }
}

.footer-emergency-bar .emergency-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

.footer-emergency-bar .emergency-right i {
    font-size: 15px;
    color: #fff;
}

.footer-emergency-bar .emergency-right a {
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.footer-emergency-bar .emergency-right a:hover {
    color: #fff;
    text-decoration: underline;
}

/** Widget Section **/
.main-footer .widget-section {
    position: relative;
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/** Widget Title **/
.main-footer .widget-title {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 14px;
}

.main-footer .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    background: #c8102e;
    border-radius: 2px;
}

.main-footer .widget-title h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
}

/** Logo Widget **/
.main-footer .logo-widget .footer-logo {
    display: block;
    margin-bottom: 18px;
}

.main-footer .logo-widget .footer-logo img {
    max-height: 58px;
    width: auto;
}

.main-footer .logo-widget .footer-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/** Social Links **/
.main-footer .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
}

.main-footer .social-links li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 50%;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.main-footer .social-links li a:hover {
    background: #c8102e;
    border-color: #c8102e;
    color: #fff;
    transform: translateY(-2px);
}

/** Footer Badge **/
.main-footer .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 14px;
    background: rgba(200,16,46,0.1);
    border: 1px solid rgba(200,16,46,0.25);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.main-footer .footer-badge i {
    color: #c8102e;
    font-size: 13px;
}

/** Links Widget **/
.main-footer .links-widget .links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .links-widget .links-list li {
    position: relative;
    margin-bottom: 10px;
}

.main-footer .links-widget .links-list li:last-child {
    margin-bottom: 0;
}

.main-footer .links-widget .links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: all 0.25s ease;
    line-height: 1.5;
}

.main-footer .links-widget .links-list li a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: #c8102e;
    border-radius: 50%;
    transition: transform 0.25s;
}

.main-footer .links-widget .links-list li a:hover {
    color: #fff;
    padding-left: 4px;
}

.main-footer .links-widget .links-list li a:hover::before {
    transform: scale(1.5);
}

/** Contact Info Widget **/
.main-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.main-footer .footer-contact-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.main-footer .footer-contact-list .fc-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(200,16,46,0.1);
    border: 1px solid rgba(200,16,46,0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8102e;
    font-size: 14px;
    margin-top: 2px;
}

.main-footer .footer-contact-list .fc-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    padding-top: 8px;
}

.main-footer .footer-contact-list .fc-text a {
    color: rgba(255,255,255,0.6);
    transition: color 0.25s;
}

.main-footer .footer-contact-list .fc-text a:hover {
    color: #fff;
}

/** Footer Bottom **/
.footer-bottom {
    background: rgba(0,0,0,0.2);
}

.footer-bottom .bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.footer-bottom .bottom-inner p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

.footer-bottom .bottom-inner p a {
    color: rgba(255,255,255,0.6);
    transition: color 0.25s;
}

.footer-bottom .bottom-inner p a:hover {
    color: #c8102e;
}

/** Responsive **/
@media only screen and (max-width: 991px) {
    .footer-emergency-bar .emergency-left {
        display: none;
    }
    .footer-emergency-bar .emergency-inner {
        justify-content: center;
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .main-footer .widget-section {
        padding: 50px 0 20px;
    }
    .main-footer .footer-widget {
        margin-bottom: 35px;
    }
    .footer-emergency-bar .emergency-number {
        font-size: 22px;
    }
    .footer-bottom .bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 16px 0;
    }
}

@media only screen and (max-width: 575px) {
    .footer-emergency-bar .emergency-right {
        display: none;
    }
    .footer-emergency-bar .emergency-number {
        font-size: 20px;
    }
}
