/* ============================================================
   Site Footer — public site (wired from _NewLayout.cshtml)
   Prefix: wf- (kept isolated from shared product.css footer rules)
   ============================================================ */

/* square top edge; also beats product.css's global `footer { border-top-*-radius: 30px }` */
.wf-footer {
    border-radius: 0 !important;
    background: linear-gradient(180deg, #0f2f66 0%, #0a2352 100%);
    overflow: hidden;
    margin-top: 40px;
    font-family: inherit;
}

/* ---------- Newsletter strip ---------- */
.wf-newsletter {
    padding: 36px 0;
}

.wf-newsletter-inner {
    background: linear-gradient(135deg, #3469bf 0%, #2a56a3 100%);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(9, 30, 70, 0.35);
}

.wf-newsletter-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.wf-newsletter-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

.wf-newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 4px 4px 4px 20px;
    min-width: 340px;
    max-width: 100%;
}

.wf-newsletter-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 13.5px;
    color: #1b1b1b;
    background: transparent;
    padding: 8px 0;
}

.wf-newsletter-input::placeholder {
    color: #8a8a8a;
}

.wf-newsletter-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: none;
    background: #113f8a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.wf-newsletter-btn:hover {
    background: #0d2f68;
    transform: translateX(2px);
}

/* ---------- Main columns ---------- */
.wf-main {
    padding: 10px 0 30px 0;
}

.wf-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 36px;
}

.wf-brand-logo {
    width: 190px;
    max-width: 60%;
    margin-bottom: 16px;
}

.wf-about {
    font-size: 13.5px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 320px;
}

.wf-social {
    display: flex;
    gap: 12px;
}

.wf-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.wf-social a.facebook:hover { background: #1877F2; }
.wf-social a.instagram:hover { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.wf-social a.youtube:hover { background: #FF0000; }
.wf-social a:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

.wf-heading {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
}

.wf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-links li {
    margin-bottom: 11px;
}

.wf-links a {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 13.5px;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.wf-links a:hover {
    color: #fff !important;
    padding-left: 4px;
}

.wf-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    line-height: 20px;
}

.wf-contact li i {
    width: 16px;
    margin-top: 3px;
    color: #7fa6e6;
    font-size: 14px;
}

.wf-contact li a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wf-contact li a:hover {
    color: #fff;
}

/* ---------- Bottom bar ---------- */
.wf-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
}

.wf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wf-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    letter-spacing: .3px;
    margin: 0;
}

.wf-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wf-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.wf-legal a:hover {
    color: #fff;
}

.wf-legal span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 992px) {
    .wf-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .wf-newsletter-inner {
        padding: 26px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .wf-newsletter-form {
        width: 100%;
        min-width: 0;
    }
}

@media screen and (max-width: 576px) {
    .wf-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 28px;
    }

    .wf-brand {
        grid-column: 1 / -1;
    }

    .wf-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .wf-newsletter-title {
        font-size: 19px;
    }
}
