/* Modern Footer Style */
.modern-footer {
    background-color: #0f2259;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    background-color: #0a1a46;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
}

.footer-desc {
    color: #bdc5d4;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 14px;
}

.footer-social {
    display: flex;
    margin-top: 25px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #e61f1f;
    color: #fff;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e61f1f;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc5d4;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #e61f1f;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #e61f1f;
}

.contact-text {
    flex-grow: 1;
}

.contact-text p {
    margin: 0;
    color: #bdc5d4;
    font-size: 14px;
}

.contact-text h5 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #fff;
    font-weight: 600;
}

.contact-text a {
    color: #bdc5d4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #e61f1f;
}

.copyright {
    color: #bdc5d4;
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #bdc5d4;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e61f1f;
}

.working-hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.working-hours li {
    margin-bottom: 10px;
    color: #bdc5d4;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}
