/******** FOOTER ********/
body {
    --accent1: #eb4873;
    --accent2: #6240a2;
    --bg: #f6fbfb;
    --dark: #0b1220;
    --footer-text: #3a1d10;
}

footer {
    background: linear-gradient(135deg, #ffd8a8 0%, #ff9f7f 100%);
    color: var(--footer-text);
    padding: 32px 0 0;
    overflow-x: hidden;
}


.smfooter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}


.smfooter-logo {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    height: 70px;
    object-fit: contain;
}


.smfooter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 60px;
    margin: 0 auto 20px;
    padding: 0 15px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}


.smfooter-section {
    box-sizing: border-box;
    text-align: left;
    min-width: 200px;
}


.smfooter-section h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--dark);
}


.smfooter-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.smfooter-section ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}


.smfooter-section a {
    color: var(--footer-text);
    text-decoration: none;
}


.smfooter-section a:hover {
    color: var(--accent1);
    text-decoration: none;
}


.smfooter-section p {
    margin: 0;
    padding: 0 0 15px;
}


.smfooter-section p a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}


.smfooter-section p a:hover {
    color: var(--accent1);
    text-decoration: none;
}


.smfooter-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    /* justify-content: center; */
}


.smfooter-social-icons a {
    color: var(--footer-text);
    font-size: 20px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.smfooter-social-icons a:hover {
    color: var(--accent1);
}


[data-title]:hover:after {
    visibility: visible;
}


[data-title]:after {
    content: attr(data-title);
    background-color: var(--accent2);
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    padding: 8px 12px;
    white-space: nowrap;
    right: 0;
    visibility: hidden;
    z-index: 1000;
    max-width: 200px;
    word-wrap: break-word;
    white-space: normal;
}


.smfooter-bottom {
    text-align: center;
    border-top: 1px solid var(--dark);
    font-size: 0.8rem;
    padding: 15px;
    box-sizing: border-box;
}


.smfooter-bottom p {
    margin: 5px 0;
    padding: 0;
}


.smfooter-xl-logo {
    height: 20px;
    width: auto;
    margin: 0 5px 0 0;
    vertical-align: middle;
}


/* Tablet Styles */
@media (max-width: 1024px) {
    .smfooter-section {
        min-width: 180px;
    }
}

@media (max-width: 1092px) {
    .smfooter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        padding-left: 20px;
    }

    .smfooter-container {
        padding-left: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smfooter-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding-left: 15px;
    }

    .smfooter-container {
        padding-left: 15px;
    }
}


/* Mobile Styles for Footer */
@media (max-width: 768px) {
    footer {
        overflow-x: hidden;
        width: 100%;
    }


    .smfooter-container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .smfooter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }


    .smfooter-section {
        text-align: center;
        box-sizing: border-box;
        width: 100%;
        min-width: auto;
    }


    .smfooter-social-icons {
        justify-content: center;
    }


    .smfooter-section p a {
        max-width: none;
        white-space: normal;
        justify-content: center;
    }


    .smfooter-section ul li {
        justify-content: center;
    }


    .smfooter-bottom {
        padding: 20px 12px 0;
        text-align: center;
    }
}


/* Extra Small Devices */
@media (max-width: 480px) {
    .smfooter-container {
        padding: 0 10px;
    }


    .smfooter-grid {
        padding: 0 10px;
        gap: 15px;
    }


    .smfooter-section h4 {
        font-size: 0.95rem;
    }


    .smfooter-section ul li {
        font-size: 0.9rem;
    }


    .smfooter-bottom {
        padding: 15px 10px 0;
        font-size: 0.75rem;
    }
}