/* ===================================================================
   CUSTOM SITE FOOTER STYLES
   =================================================================== */

.site-footer-custom {
    background-color: #1c1d1f;
    color: #d1d1d1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 80px 40px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px 30px;
    margin-bottom: 60px;
}

.footer-grid:last-child {
    margin-bottom: 0;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-heading-secondary {
    margin-top: 30px;
}

.footer-contact-info {
    margin: 0;
    padding: 0;
    color: #d1d1d1;
}

.footer-social-links svg {
    width: 20px;
    height: 20px;
    fill: #d1d1d1;
    margin-right: 10px;
    vertical-align: middle;
    transition: fill 0.2s ease-in-out;
}

.footer-social-links a:hover svg {
    fill: #ffffff;
}

.footer-app-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-app-links img {
    height: 40px;
    width: auto;
}

#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #0d6efd;
    color: white;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 100;
}

#back-to-top:hover {
    background-color: #d6335e;
    transform: translateY(-4px);
}