/* Custom Footer CSS */
#custom-footer {
    background-color: #1a1a1a; /* Dark background matching image */
    color: #999;
    padding: 60px 0 20px 0;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    border-top: 5px solid #bb2a22; /* Red top border feature */
}

#custom-footer h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

#custom-footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

#custom-footer a:hover {
    color: #bb2a22; /* Red accent on hover */
}

/* Icons in contact list */
.footer-contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Menu list style */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
    border-bottom: 1px solid #2a2a2a; /* Subtle separator */
    padding-bottom: 5px;
}

.footer-menu li:last-child {
    border-bottom: none;
}

.footer-menu li a::before {
    content: "›";
    margin-right: 8px;
    font-size: 14px;
    color: #555;
}

/* Logo and Socials Column */
.footer-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo-container img {
    max-width: 180px;
    height: auto;
}

.footer-socials {
    text-align: center;
    margin-top: 20px;
}

.footer-socials h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon-box {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 16px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.social-icon-box:hover {
    transform: translateY(-3px);
}

.social-tiktok { background-color: #000; border: 1px solid #333; }
.social-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-facebook { background-color: #3b5998; }
.social-youtube { background-color: #ff0000; }

/* Copyright Bar */
.copyright-bar {
    background-color: #333;
    padding: 20px 0;
    margin-top: 40px;
    color: #777;
    font-size: 12px;
}

/* Floating Whatsapp */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.pulsing-btn {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none !important;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.pulsing-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

.pulsing-btn i {
    font-size: 28px;
    margin-left: 10px;
}
