.footer {
    background-color: #213A71 !important;
    color: #fff;
    padding: 2rem 0;
}

.youtube-hover {
    content: url("./../assets/images/homepage/youtube.png");
    transition: 0.3s;
    cursor: pointer;
}

.youtube-hover:hover {
    cursor: pointer;
    content: url("./../assets/images/homepage/youtube-hover.png");
}

.insta-hover {
    content: url("./../assets/images/homepage/insta.png");
    transition: 0.3s;
    cursor: pointer;
}

.insta-hover:hover {
    cursor: pointer;
    content: url("./../assets/images/homepage/insta-hover.png");
}

/* .footer-links {
    width: auto;
} */

.footer-links .p-1 {
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links a{
    text-decoration: none;
    color: #fff !important;
}

.footer-links .p-1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #F7EA00;
    transition: width 0.3s ease;
    color: #fff !important;
}

.footer-links .p-1:hover {
    color: #F7EA00;
}

.footer-links .p-1:hover::after {
    width: 100%;
}

.whatsapp-icon {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* WhatsApp "Chat on Whatsapp" footer button */
.whatsapp-btn {
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 100%;
}

.whatsapp-btn:hover {
    background-color: #1ebd5a;
}

.whatsapp-btn:focus {
    outline: 2px solid #F7EA00;
    outline-offset: 3px;
}

.whatsapp-btn img {
    height: 28px;
    width: auto;
}

.chat-text {
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .whatsapp-btn {
        width: 200px;
    }

    .chat-text {
        font-size: 10px;
    }
}