﻿.ws-header {
    position: relative;
    z-index: 90;
    padding-top: 14px;
}

.ws-topbar {
    position: relative;
    z-index: 3;
    margin-bottom: 14px;
}

.ws-topbar-inner {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(218, 223, 232, 0.82);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ws-topbar-left,
.ws-topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ws-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .95rem;
    color: #52627a;
    font-weight: 750;
    transition: color var(--ws-transition), transform var(--ws-transition);
}

    .ws-topbar-link:hover {
        color: #9f7a50;
        transform: translateY(-1px);
    }

.ws-topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(15,23,42,.10);
}

.ws-topbar-copy {
    font-size: .92rem;
    color: #7a8799;
    font-weight: 750;
    letter-spacing: -.01em;
}

.ws-topbar-social {
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .ws-topbar-social a {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(15,23,42,.08);
        color: #27364a;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all var(--ws-transition);
    }

        .ws-topbar-social a:hover {
            color: #9f7a50;
            transform: translateY(-2px);
            border-color: rgba(159, 122, 80, 0.18);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        }

/* TOPBAR PORTALS */
.ws-topbar-portals {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .28rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(248,250,255,.82) 100%);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255,255,255,.78);
}

    .ws-topbar-portals a {
        position: relative;
        min-height: 36px;
        padding: .48rem 1rem;
        border-radius: 999px;
        color: #5d6b7f;
        font-size: .84rem;
        font-weight: 800;
        letter-spacing: .01em;
        transition: all var(--ws-transition);
        overflow: hidden;
    }

        .ws-topbar-portals a::before {
            content: "";
            position: absolute;
            inset: auto 12px 6px 12px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #9f7a50, #c19a6b);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform var(--ws-transition);
        }

        .ws-topbar-portals a:hover {
            color: #9f7a50;
            background: rgba(159, 122, 80, .08);
        }

            .ws-topbar-portals a:hover::before,
            .ws-topbar-portals a.active::before {
                transform: scaleX(1);
            }

        .ws-topbar-portals a.active {
            color: #9f7a50;
            background: linear-gradient(180deg, rgba(159, 122, 80, .12) 0%, rgba(159, 122, 80, .08) 100%);
            box-shadow: inset 0 0 0 1px rgba(159, 122, 80, .08), 0 6px 16px rgba(159, 122, 80, .10);
        }

/* FULL WIDTH STICKY NAV */
.ws-nav-wrap {
    position: sticky;
    top: 12px;
    z-index: 95;
    transition: transform var(--ws-transition), top var(--ws-transition);
}

    .ws-nav-wrap.is-scrolled {
        transform: translateY(-4px);
    }

.ws-navbar {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 14px 18px;
    border-radius: 32px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(219, 224, 233, 0.88);
    box-shadow: 0 22px 60px rgba(9, 18, 35, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

    .ws-navbar::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255,255,255,.38), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.08));
        pointer-events: none;
    }

.ws-brand,
.ws-nav-center,
.ws-nav-actions,
.ws-mobile-toggle {
    position: relative;
    z-index: 1;
}

.ws-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex-shrink: 0;
}

.ws-brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(228, 235, 248, .94), rgba(241, 244, 250, .92));
    border: 1px solid rgba(189, 201, 222, .50);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

    .ws-brand-mark span {
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: -.04em;
        color: #24324a;
    }

.ws-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1;
}

    .ws-brand-copy strong {
        font-family: 'Manrope', sans-serif;
        color: #182235;
        font-size: 1.16rem;
        letter-spacing: -.04em;
        font-weight: 800;
    }

    .ws-brand-copy small {
        color: #74829a;
        font-size: .77rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        margin-top: .38rem;
    }

.ws-nav-center {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.ws-nav-links {
    list-style: none;
    margin: 0;
    padding: .46rem;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    flex-wrap: nowrap;
}

    .ws-nav-links li {
        margin: 0;
        padding: 0;
    }

    .ws-nav-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: .82rem 1.08rem;
        border-radius: 999px;
        color: #344457;
        font-size: .98rem;
        font-weight: 800;
        letter-spacing: -.01em;
        white-space: nowrap;
        overflow: hidden;
        transition: all var(--ws-transition);
    }

        .ws-nav-links a::before {
            content: "";
            position: absolute;
            inset: auto 15px 8px 15px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #9f7a50, #c19a6b);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform var(--ws-transition);
        }

        .ws-nav-links a:hover {
            color: #9f7a50;
            background: rgba(159, 122, 80, .07);
        }

            .ws-nav-links a:hover::before,
            .ws-nav-links a.active::before {
                transform: scaleX(1);
            }

        .ws-nav-links a.active {
            color: #9f7a50;
            background: rgba(159, 122, 80, .09);
            box-shadow: inset 0 0 0 1px rgba(159, 122, 80, .08);
        }

.ws-nav-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    justify-content: flex-end;
}

.ws-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 52px;
    padding: .92rem 1.28rem;
    border-radius: 18px;
    font-size: .96rem;
    font-weight: 800;
    white-space: nowrap;
    transition: all var(--ws-transition);
}

.ws-nav-btn-soft {
    color: #1e2a3d;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

    .ws-nav-btn-soft:hover {
        color: #9f7a50;
        transform: translateY(-2px);
        border-color: rgba(159, 122, 80, .18);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    }

.ws-nav-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #9f7a50 0%, #b48754 100%);
    border: 1px solid transparent;
    box-shadow: 0 16px 36px rgba(159, 122, 80, 0.22);
}

    .ws-nav-btn-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 22px 50px rgba(159, 122, 80, 0.28);
    }

/* MOBILE TOGGLE */
.ws-mobile-toggle {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(159, 122, 80, .10) 0%, rgba(159, 122, 80, .06) 100%);
    border: 1px solid rgba(159, 122, 80, .12);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
    transition: all var(--ws-transition);
}

    .ws-mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: #223654;
        transition: transform .32s ease, opacity .24s ease, background .24s ease;
    }

    .ws-mobile-toggle:hover {
        background: rgba(159, 122, 80, .14);
        transform: translateY(-1px);
    }

    .ws-mobile-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .ws-mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .ws-mobile-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* MOBILE */
.ws-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 22, 0.46);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 110;
}

    .ws-mobile-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

.ws-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 430px);
    height: 100dvh;
    transform: translateX(100%);
    opacity: .98;
    transition: transform .52s cubic-bezier(.22,1,.36,1), opacity .32s ease;
    background: linear-gradient(180deg, #16110c 0%, #241b14 100%);
    box-shadow: -22px 0 80px rgba(0, 0, 0, 0.28);
    z-index: 120;
    overflow: hidden;
}

    .ws-mobile-panel.is-open {
        transform: translateX(0);
        opacity: 1;
    }

.ws-mobile-panel-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(196,155,106,.18), transparent 24%), radial-gradient(circle at bottom left, rgba(255,255,255,.05), transparent 28%);
    pointer-events: none;
}

.ws-mobile-head,
.ws-mobile-body {
    position: relative;
    z-index: 1;
}

.ws-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .42s ease .08s, opacity .42s ease .08s;
}

.ws-mobile-panel.is-open .ws-mobile-head {
    transform: translateY(0);
    opacity: 1;
}

.ws-brand-mobile .ws-brand-mark span,
.ws-brand-mobile .ws-brand-copy strong {
    color: #fff;
}

.ws-brand-mobile .ws-brand-copy small {
    color: rgba(255,255,255,.62);
}

.ws-mobile-close {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.06) 100%);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
    transition: all .28s ease;
}

    .ws-mobile-close:hover {
        background: rgba(196,155,106,.16);
        border-color: rgba(196,155,106,.20);
        transform: translateY(-1px) rotate(90deg);
    }

.ws-mobile-body {
    padding: 1rem;
    overflow-y: auto;
    height: calc(100dvh - 78px);
}

.ws-mobile-contact,
.ws-mobile-social,
.ws-mobile-links a,
.ws-mobile-portals a,
.ws-mobile-cta {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .42s ease, transform .42s ease;
}

.ws-mobile-panel.is-open .ws-mobile-contact,
.ws-mobile-panel.is-open .ws-mobile-social,
.ws-mobile-panel.is-open .ws-mobile-links a,
.ws-mobile-panel.is-open .ws-mobile-portals a,
.ws-mobile-panel.is-open .ws-mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.ws-mobile-panel.is-open .ws-mobile-contact {
    transition-delay: .10s;
}

.ws-mobile-panel.is-open .ws-mobile-social {
    transition-delay: .14s;
}

.ws-mobile-links a:nth-child(1) {
    transition-delay: .16s;
}

.ws-mobile-links a:nth-child(2) {
    transition-delay: .19s;
}

.ws-mobile-links a:nth-child(3) {
    transition-delay: .22s;
}

.ws-mobile-links a:nth-child(4) {
    transition-delay: .25s;
}

.ws-mobile-links a:nth-child(5) {
    transition-delay: .28s;
}

.ws-mobile-links a:nth-child(6) {
    transition-delay: .31s;
}

.ws-mobile-links a:nth-child(7) {
    transition-delay: .34s;
}

.ws-mobile-links a:nth-child(8) {
    transition-delay: .37s;
}

.ws-mobile-links a:nth-child(9) {
    transition-delay: .40s;
}

.ws-mobile-links a:nth-child(10) {
    transition-delay: .43s;
}

.ws-mobile-links a:nth-child(11) {
    transition-delay: .46s;
}

.ws-mobile-links a:nth-child(12) {
    transition-delay: .49s;
}

.ws-mobile-portals a:nth-child(1) {
    transition-delay: .52s;
}

.ws-mobile-portals a:nth-child(2) {
    transition-delay: .55s;
}

.ws-mobile-portals a:nth-child(3) {
    transition-delay: .58s;
}

.ws-mobile-panel.is-open .ws-mobile-cta {
    transition-delay: .62s;
}

.ws-mobile-contact {
    display: grid;
    gap: .7rem;
    margin-bottom: 1rem;
}

    .ws-mobile-contact a {
        display: flex;
        align-items: center;
        gap: .7rem;
        min-height: 50px;
        padding: .9rem 1rem;
        border-radius: 16px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        color: rgba(255,255,255,.86);
        font-weight: 600;
        transition: all var(--ws-transition);
    }

        .ws-mobile-contact a:hover {
            background: rgba(196,155,106,.12);
            border-color: rgba(196,155,106,.18);
            color: #fff;
        }

.ws-mobile-social {
    display: flex;
    gap: .6rem;
    margin-bottom: 1rem;
}

    .ws-mobile-social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.08);
        color: #fff;
        transition: all var(--ws-transition);
    }

        .ws-mobile-social a:hover {
            background: rgba(196,155,106,.14);
            border-color: rgba(196,155,106,.18);
            transform: translateY(-2px);
        }

.ws-mobile-links {
    display: grid;
    gap: .55rem;
    margin-bottom: 1rem;
}

    .ws-mobile-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        min-height: 56px;
        padding: 1rem 1rem;
        border-radius: 18px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        color: rgba(255,255,255,.88);
        font-weight: 800;
        letter-spacing: -.01em;
    }

        .ws-mobile-links a i {
            opacity: .65;
            transition: transform var(--ws-transition), opacity var(--ws-transition);
        }

        .ws-mobile-links a:hover,
        .ws-mobile-links a.active {
            background: rgba(196,155,106,.16);
            border-color: rgba(196,155,106,.18);
            color: #fff;
        }

            .ws-mobile-links a:hover i,
            .ws-mobile-links a.active i {
                transform: translateX(3px);
                opacity: 1;
            }

/* MOBILE PORTALS */
.ws-mobile-portals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1rem;
}

    .ws-mobile-portals a {
        position: relative;
        min-height: 46px;
        padding: .8rem .65rem;
        border-radius: 14px;
        text-align: center;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        color: rgba(255,255,255,.84);
        font-size: .88rem;
        font-weight: 800;
        transition: all var(--ws-transition);
        overflow: hidden;
    }

        .ws-mobile-portals a::before {
            content: "";
            position: absolute;
            inset: auto 10px 6px 10px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #c49b6a, #e0b985);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform var(--ws-transition);
        }

        .ws-mobile-portals a:hover {
            background: rgba(196,155,106,.12);
            border-color: rgba(196,155,106,.18);
            color: #fff;
        }

            .ws-mobile-portals a:hover::before,
            .ws-mobile-portals a.active::before {
                transform: scaleX(1);
            }

        .ws-mobile-portals a.active {
            background: linear-gradient(180deg, rgba(196,155,106,.20) 0%, rgba(196,155,106,.12) 100%);
            border-color: rgba(196,155,106,.24);
            color: #fff;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 8px 18px rgba(0,0,0,.14);
        }

.ws-mobile-cta {
    margin-top: .35rem;
}

    .ws-mobile-cta .ws-nav-btn {
        width: 100%;
    }

@media (max-width: 1399.98px) {
    .ws-nav-links a {
        padding-inline: .9rem;
        font-size: .93rem;
    }

    .ws-nav-btn {
        padding-inline: 1rem;
    }
}

@media (max-width: 1199.98px) {
    .ws-header {
        padding-top: 10px;
    }

    .ws-nav-wrap {
        top: 10px;
    }

    .ws-navbar {
        min-height: 80px;
        padding: 10px 12px;
        border-radius: 24px;
    }

    .ws-nav-center,
    .ws-nav-actions {
        display: none !important;
    }

    .ws-mobile-toggle {
        display: inline-flex;
        justify-self: end;
    }
}

@media (max-width: 767.98px) {
    .ws-topbar-inner {
        padding: 10px 12px;
        border-radius: 16px;
    }

    .ws-navbar {
        min-height: 72px;
        padding: 8px 10px;
        border-radius: 22px;
    }

    .ws-brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .ws-brand-copy strong {
        font-size: 1rem;
    }

    .ws-brand-copy small {
        font-size: .68rem;
        letter-spacing: .10em;
    }

    .ws-mobile-panel {
        width: min(100vw, 420px);
    }

    .ws-mobile-portals {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FINAL LOGO SYSTEM
========================= */

.ws-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
}

.ws-brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228,235,248,.94), rgba(241,244,250,.92));
    border: 1px solid rgba(189,201,222,.50);
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
    overflow: hidden;
    flex-shrink: 0;
}

    .ws-brand-mark img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        display: block;
    }

.ws-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1;
}

    .ws-brand-copy strong {
        font-family: 'Manrope', sans-serif;
        color: #182235;
        font-size: 1.16rem;
        letter-spacing: -0.04em;
        font-weight: 800;
    }

    .ws-brand-copy small {
        color: #74829a;
        font-size: .77rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        margin-top: .38rem;
    }

/* Footer */
.ws-footer-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
}

    .ws-footer-mark img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
    }

/* Mobile brand text */
.ws-brand-mobile .ws-brand-copy strong {
    color: #ffffff;
}

.ws-brand-mobile .ws-brand-copy small {
    color: rgba(255,255,255,.62);
}

/* Tablet */
@media (max-width: 1199.98px) {
    .ws-brand-mark {
        width: 56px;
        height: 56px;
    }

        .ws-brand-mark img {
            width: 36px;
            height: 36px;
        }
}

/* Mobile */
@media (max-width: 767.98px) {
    .ws-brand {
        gap: 10px;
    }

    .ws-brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

        .ws-brand-mark img {
            width: 28px;
            height: 28px;
        }

    .ws-brand-copy strong {
        font-size: 1rem;
    }

    .ws-brand-copy small {
        font-size: .66rem;
        letter-spacing: .10em;
        margin-top: .28rem;
    }

    .ws-footer-mark {
        width: 44px;
        height: 44px;
    }

        .ws-footer-mark img {
            width: 26px;
            height: 26px;
        }
}

/* =========================
   MOBILE PORTALS - SINGLE ROW COMPACT
========================= */
@media (max-width: 767.98px) {
    .ws-mobile-portals {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .45rem;
        margin-bottom: .85rem;
    }

        .ws-mobile-portals a {
            min-height: 48px;
            padding: .5rem .35rem;
            border-radius: 12px;
            font-size: .80rem;
            font-weight: 800;
            line-height: 1;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .ws-mobile-portals a::before {
                inset: auto 8px 4px 8px;
                height: 2px;
            }
}







@media (max-width: 767.98px) {
    .ws-mobile-contact {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: .55rem;
        margin-bottom: .85rem;
    }

        .ws-mobile-contact a {
            min-height: 48px;
            padding: .7rem .7rem;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .4rem;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            color: rgba(255,255,255,.88);
            font-size: .80rem;
            font-weight: 700;
            text-align: center;
            line-height: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .ws-mobile-contact a i {
                font-size: .9rem;
                flex-shrink: 0;
            }
}


/* =========================
   MOBILE SOCIAL ICONS CENTER ALIGN
========================= */
@media (max-width: 767.98px) {
    .ws-mobile-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .6rem;
        margin: .6rem 0 .9rem;
    }

        .ws-mobile-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            transition: all .25s ease;
        }

            .ws-mobile-social a:hover {
                transform: translateY(-2px);
                background: rgba(255,255,255,.12);
            }
}




/* =========================
   LOGO WHITE BACKGROUND FIX
========================= */

/* Navbar logo container */
.ws-brand-mark {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Logo image */
    .ws-brand-mark img {
        background: #ffffff;
        object-fit: contain;
    }

/* Optional: subtle border for premium look */
.ws-brand-mark {
    border: 1px solid rgba(0,0,0,0.06);
}

/* Footer logo (same behavior) */
.ws-footer-mark {
    background: #ffffff !important;
    border-radius: 14px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.06);
}

    .ws-footer-mark img {
        background: #ffffff;
        object-fit: contain;
    }







.ws-footer-links a,
.ws-footer-social a {
    transition: all 0.25s ease;
}

    .ws-footer-links a:hover {
        transform: translateX(3px);
    }

    .ws-footer-social a:hover {
        transform: translateY(-2px);
    }