/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    transition: var(--transition);
}

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

.footer h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-secondary);
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.footer ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.footer-contact li:hover {
    transform: translateX(10px);
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-contact li:hover i {
    background: var(--gradient-secondary);
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-secondary);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer h5 {
        margin-top: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px !important;
    }

    .footer h5 {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
        margin-top: 25px !important;
        text-align: center !important;
    }

    .footer h5::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-logo {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .footer-logo img {
        height: 40px !important;
    }

    .footer ul {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .footer ul li {
        margin-bottom: 8px !important;
    }

    .footer ul li a {
        font-size: 0.95rem !important;
    }

    .footer-contact {
        text-align: center !important;
    }

    .footer-contact li {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
    }

    .footer-contact li i {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    .social-links {
        justify-content: center !important;
        margin-top: 20px !important;
    }

    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .footer-bottom {
        text-align: center !important;
        margin-top: 40px !important;
        padding-top: 20px !important;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 15px !important;
    }

    .footer-bottom p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 15px !important;
    }

    .footer h5 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        margin-top: 20px !important;
    }

    .footer-logo img {
        height: 35px !important;
    }

    .footer ul li a {
        font-size: 0.9rem !important;
    }

    .footer-contact li i {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }

    .social-links a {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    .footer-bottom {
        margin-top: 30px !important;
        padding-top: 15px !important;
    }

    .footer-bottom p {
        font-size: 0.85rem !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 5px;
}

/* Responsive WhatsApp Button */
@media (max-width: 767.98px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
