/* Footer Styles */
.footer {
    background-color: #192339;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    max-height: 50px;
    /* filter: brightness(0) invert(1); */
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #DC2626;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #DC2626;
    padding-left: 5px;
}

.footer-links i {
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: rotate(10deg);
    color: #DC2626;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #DC2626;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Add to your existing components.css */
.show-more-services {
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.show-more-services:hover {
    color: #DC2626 !important;
}

.show-more-services i {
    transition: transform 0.3s ease;
}

.show-more-services.active i {
    transform: rotate(180deg);
}

/* Contact Section */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact a, .footer-contact span {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #DC2626;
}

.footer-contact li:hover .contact-icon {
    background: #DC2626;
    transform: rotate(5deg);
}

/* Footer Bottom */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-tagline {
    color: #FFD700;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .footer [class^="col-"] {
        margin-bottom: 30px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
}