/********** Footer CSS **********/
.footer-section {
    position: relative;
    background-color: var(--dark);
    color: #a0a9b6;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(185, 46, 65, 0.05) 0%, rgba(21, 36, 64, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.widget-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.about-company p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a0a9b6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links li a i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(185, 46, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .icon i {
    color: var(--primary);
    font-size: 18px;
}

.contact-item .text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item .text a {
    color: #a0a9b6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item .text a:hover {
    color: #ffffff;
}

.copyright {
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a0a9b6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .widget-title {
        margin-bottom: 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}