﻿/* ==============================
   CraftElevators — Footer Styles
   ============================== */

.rts-footer-area,
footer.bg_footer-1 {
    background: var(--color-footer-bg);
    color: var(--color-white);
    padding: 64px 0 24px 0;
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

    .rts-footer-area a,
    footer.bg_footer-1 a {
        color: var(--color-white);
        text-decoration: none;
        opacity: 0.93;
        transition: color 0.16s, opacity 0.16s;
    }

        .rts-footer-area a:hover,
        footer.bg_footer-1 a:hover,
        .rts-footer-area a:focus,
        footer.bg_footer-1 a:focus {
            color: var(--color-accent);
            opacity: 1;
        }

/* --- Top Nav Links --- */
.footer-float-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    list-style: none;
    padding-left: 0;
}

/* --- Social Icons --- */
.social-area-wrapper-one {
    display: flex;
    gap: 13px;
    margin-top: 18px;
}

    .social-area-wrapper-one a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-white);
        color: var(--color-accent);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 1.23rem;
        transition: background 0.2s, color 0.2s;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

        .social-area-wrapper-one a:hover,
        .social-area-wrapper-one a:focus {
            background: var(--color-accent);
            color: var(--color-white);
        }

/* --- Brand & Description --- */
.rts-footer-area .logo-img,
footer.bg_footer-1 .logo-img {
    max-height: 40px;
    margin-bottom: 12px;
}

.rts-footer-area .disc,
footer.bg_footer-1 .disc {
    color: var(--color-white);
    opacity: 0.88;
    margin-bottom: 0.8em;
    line-height: 1.7;
}

/* --- Footer Links --- */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-links a {
        color: var(--color-white);
        opacity: 0.89;
        font-size: 1rem;
        font-family: var(--font-secondary);
        font-weight: var(--font-weight-regular);
        transition: color 0.16s, opacity 0.16s;
    }

        .footer-links a:hover,
        .footer-links a:focus {
            color: var(--color-accent);
            opacity: 1;
        }

    .title, .footer .title, .footer-links .title {
        color: var(--color-white);
        font-family: var(--font-primary);
        font-size: 1.13rem;
        font-weight: var(--font-weight-bold);
        margin-bottom: 0.6em;
    }

/* --- Newsletter Form --- */
footer .newsletter, .newsletter {
    margin-top: 16px;
}

    footer input[type="email"], .newsletter input[type="email"] {
        border-radius: var(--border-radius-sm);
        border: 1.5px solid var(--color-border);
        background: #f6f8fa;
        color: var(--color-charcoal);
        padding: 10px 14px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 1rem;
        transition: border 0.16s;
    }

        footer input[type="email"]:focus, .newsletter input[type="email"]:focus {
            border-color: var(--color-primary);
            outline: none;
        }

    footer .rts-btn, .newsletter .rts-btn {
        width: 100%;
        margin: 0;
    }

/* --- Footer Bottom --- */
.rts-footer-area .row.mt-5,
footer.bg_footer-1 .row.mt-5 {
    border-top: 1.5px solid rgba(255,255,255,0.08);
    margin-top: 32px !important;
    padding-top: 24px !important;
}

.rts-footer-area .footer-links.small,
footer.bg_footer-1 .footer-links.small {
    font-size: 0.95rem;
    gap: 14px;
}

.rts-footer-area .b2,
footer.bg_footer-1 .b2 {
    opacity: 0.86;
    font-size: 0.97rem;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .rts-footer-area,
    footer.bg_footer-1 {
        padding: 32px 0 18px 0;
    }

    .footer-float-nav {
        gap: 12px;
        margin-bottom: 12px;
    }

    .social-area-wrapper-one {
        gap: 8px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .rts-footer-area .row,
    footer.bg_footer-1 .row {
        flex-direction: column !important;
        gap: 22px;
        text-align: center;
    }

    .footer-float-nav {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }

    .footer-links {
        align-items: center;
    }

    .social-area-wrapper-one {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .rts-footer-area,
    footer.bg_footer-1 {
        font-size: 0.95rem;
        padding: 22px 0 10px 0;
    }

    .footer-links {
        gap: 6px;
    }
}
.rts-footer-area .mb-1 {
   color: var( --color-white);
}

.footer-links a {
    font-weight: 500;
    letter-spacing: .02em;
    color: #fff;
    text-decoration: none;
}

.footer-policies {
    flex-direction: row !important;
    gap: 32px !important; /* or your preferred spacing */
}

@media (max-width: 575.98px) {
    .footer-policies {
        flex-direction: column !important; /* Stacks on mobile */
        gap: 8px !important;
        align-items: flex-start;
    }
}

