body {
    background-color: #333; /* Added for context, can be anything */
    font-family: sans-serif; /* A generic font for the example */
}

footer {
    background-color: #121212;
    /* This adds the subtle noise texture seen in the image */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMTIxMjEyIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiMzMDMwMzAiPjwvcmVjdD4KPC9zdmc+');
    color: #e0e0e0;
    padding: 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Dashed Line Separator */
.dashed-line {
    border-top: 2px dashed #3a3a3a;
    margin: 25px 0;
}

/* Top Navigation Menu */
.footer-nav-top ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Gap between list items */
}

.footer-nav-top ul li {
   position: relative;
   padding: 0 20px;
}

/* Vertical separator line for top nav */
.footer-nav-top ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -7.5px; /* Position it in the middle of the gap */
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background-color: #3a3a3a;
}

.footer-nav-top ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: text-decoration 0.3s;
}

.footer-nav-top ul li a:hover {
    text-decoration: underline;
}

/* Middle Section: Contact & Socials */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-info {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffffff; /* Make text slightly brighter on hover */
}

/* --- NEW STYLES FOR CONTACT ICON HOVERS --- */
.contact-info a i {
    transition: color 0.3s ease; /* Smooth transition for icon color */
}

.contact-link-phone:hover i {
    color: #4CAF50; /* A nice green for the phone icon */
}

.contact-link-mail:hover i {
    color: #007BFF; /* A standard blue for the mail icon */
}

.contact-link-whatsapp:hover i {
    color: #25D366; /* Official WhatsApp green */
}
/* --- END OF NEW STYLES --- */


/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effects to show original brand colors */
.social-icon:hover {
    transform: scale(1.15); /* Slightly enlarge icon on hover */
}
.social-icon.instagram:hover {
    color: #E1306C;
}
.social-icon.linkedin:hover {
    color: #0A66C2;
}
.social-icon.youtube:hover {
    color: #FF0000;
}

/* Bottom Section: Links & Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #a0a0a0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links-bottom a {
    color: #a0a0a0;
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.footer-links-bottom a:hover {
    text-decoration: underline;
}

.copyright p {
    margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
    .footer-main, .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-icons {
        margin-top: 15px;
    }
}