/* Modern Footer Styles */
.footer {
    color: #e0e0e0;
    font-size: 14px;
    position: relative;
}

.footer-bg-wrapper {
    background-image: url('/img/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0 60px;
    background-color: #051c38; /* Fallback if image doesn't load */
}

.footer-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 25, 64, 0.95));
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Company Info Section */
.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo span {
    color: #0066cc;
    font-weight: 700;
}

.footer-desc {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.social-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background-color: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Footer Titles */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: #0066cc;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #e0e0e0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
}

.footer-links a i {
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #0066cc;
    transform: translateX(-5px);
}

.footer-links a:hover i {
    transform: translateX(-5px);
}

/* Contact Info */
.footer-contact {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.icon-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: #0066cc;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .icon-container {
    background-color: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.contact-item h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    margin: 0;
    color: #e0e0e0;
    font-size: 15px;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-about {
        margin-bottom: 40px;
    }
    
    .footer-title {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .footer-bg-wrapper {
        padding: 60px 0 40px;
    }
    
    .footer-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .footer-links-wrapper {
        margin-bottom: 40px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .contact-item h6 {
        font-size: 16px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
} 