/* Footer Styles */
.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    box-shadow:
        0 -8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    border-radius: 25px 25px 0 0;
    margin-top: 2rem;
}

/* Company Info Section */
.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

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

/* Social Links */
.footer .social-links {
    margin-top: 1.5rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.footer .social-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 60, 126, 0.4);
}

.footer .social-links i {
    font-size: 1rem;
}

/* Quick Links & Services */
.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
}

.footer ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer ul li a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Contact Info */
.footer .list-unstyled li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer .list-unstyled li i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 0.75rem;
}

/* Footer Logo */
.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Pulse Effect for elements */
.footer .pulse-element {
    position: relative;
}

.footer .pulse-element::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(231, 60, 126, 0.5);
    z-index: -1;
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer h5 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer .social-links {
        margin-top: 1rem;
    }

    .footer .mb-4 {
        margin-bottom: 2rem !important;
    }
}
