/* Bridge International — Mobile Styles */
*, *::before, *::after { box-sizing: border-box; }
body.mobile-body { margin: 0; padding: 0; background: #fff; font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: #0f172a; }
[dir="rtl"] body.mobile-body { font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.mobile-body * { -webkit-tap-highlight-color: transparent; }
.mob-content { padding-top: 60px; min-height: 100vh; }
:root { --mob-primary: #db001c; --mob-dark: #0f172a; --mob-gray: #64748b; --mob-border: #e2e8f0; --mob-bg: #f8fafc; --mob-px: 20px; }

body.mob-nav-open {
    overflow: hidden;
    touch-action: none;
}

.mob-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 14px;
    background: #fff;
    border-bottom: 1px solid var(--mob-border);
    box-shadow: 0 1px 8px rgba(15, 23, 42, .05);
}

[dir="rtl"] .mob-header {
    flex-direction: row-reverse;
}

.mob-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.mob-header__logo img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}

.mob-header__consult {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #db001c;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.1px;
}

.mob-header__consult span {
    flex-shrink: 0;
}

@media (max-width: 360px) {
    .mob-header__consult {
        font-size: 10px;
        padding: 7px 9px;
    }
    .mob-header__logo img {
        max-width: 110px;
    }
}

@media (max-width: 320px) {
    .mob-header__consult span {
        display: none;
    }
}

.mob-header__menu {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.mob-header__menu span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--mob-dark);
}

.mob-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    pointer-events: none;
    visibility: hidden;
}

.mob-nav.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mob-nav__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .22s ease;
}

.mob-nav.is-open .mob-nav__overlay {
    opacity: 1;
}

.mob-nav__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 85vw;
    max-width: 320px;
    overflow-y: auto;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .24s ease;
    box-shadow: 10px 0 28px rgba(15, 23, 42, .16);
}

[dir="rtl"] .mob-nav__panel {
    left: auto;
    right: 0;
    transform: translateX(100%);
    box-shadow: -10px 0 28px rgba(15, 23, 42, .16);
}

.mob-nav.is-open .mob-nav__panel {
    transform: translateX(0);
}

.mob-nav__top {
    height: 72px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--mob-border);
}

.mob-nav__logo img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.mob-nav__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--mob-bg);
    color: var(--mob-dark);
    font-size: 30px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mob-nav__links {
    padding: 12px 0;
}

.mob-nav__item,
.mob-nav__group summary {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--mob-dark);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
}

.mob-nav__group summary::-webkit-details-marker {
    display: none;
}

.mob-nav__group summary::after {
    content: "⌄";
    color: var(--mob-gray);
    font-size: 18px;
    transition: transform .16s ease;
}

.mob-nav__group[open] summary::after {
    transform: rotate(180deg);
}

.mob-nav__sub {
    padding: 0 20px 10px;
    display: grid;
    gap: 4px;
}

.mob-nav__sub a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--mob-gray);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    background: #fff;
}

.mob-nav__sub a:hover {
    color: var(--mob-primary);
    background: rgba(205, 72, 70, .07);
}

.mob-nav__language {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 20px 16px;
    padding: 14px 0;
    border-top: 1px solid var(--mob-border);
    border-bottom: 1px solid var(--mob-border);
}

.mob-nav__language a,
.mob-nav__language span {
    color: var(--mob-gray);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.mob-nav__language a:hover {
    color: var(--mob-primary);
}

.mob-nav__guidance {
    margin: 0 20px 18px;
    padding: 16px;
    border-radius: 12px;
    background: var(--mob-bg);
    border: 1px solid var(--mob-border);
}

.mob-nav__guidance-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.mob-nav__guidance-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff0f1;
    color: var(--mob-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mob-nav__guidance-text b {
    display: block;
    color: var(--mob-dark);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.mob-nav__guidance-text em {
    display: block;
    font-style: normal;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
}

.mob-nav__guidance a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 10px;
    background: var(--mob-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.mob-nav__social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 26px;
}

.mob-nav__social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--mob-border);
    color: var(--mob-dark);
    text-decoration: none;
}

.mob-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
    text-decoration: none;
}

[dir="rtl"] .mob-whatsapp {
    right: auto;
    left: 20px;
}
