/* ==========================================================================
   Modern Footer Styles
   ========================================================================== */

.modern-footer {
    background: linear-gradient(135deg, #002245 0%, #001a3a 100%);
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-widget {
    height: 100%;
}

.footer-widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F37039, #ff8c5a);
    border-radius: 2px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #F37039, #ff8c5a);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 112, 57, 0.3);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li a i {
    font-size: 10px;
    margin-right: 10px;
    color: #F37039;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Footer CTA */
.footer-cta {
    margin-top: 25px;
}

.footer-cta .btn-submit {
    display: inline-block;
    font-size: 14px;
    padding: 10px 25px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.copyright-text a {
    color: #F37039;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #ff8c5a;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-tagline i {
    color: #F37039;
    margin-right: 8px;
}

/* ==========================================================================
   Responsive Design for Footer
   ========================================================================== */

@media (max-width: 992px) {
    .footer-main {
        padding: 50px 0 30px;
    }
}

@media (max-width: 768px) {    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-bottom: 0;
    }
}
