:root {
    --bd-red: #ED2324;
    --bd-red-dark: #C91D25;
    --bd-red-rgb: 237, 35, 36;
    --bd-blue: #27AAE1;
    --bd-blue-dark: #288FCC;
    --bd-blue-rgb: 39, 170, 225;
    --bd-white: #FFFFFF;
    --bd-navy: #071D36;
    --bd-navy-2: #0A2C53;
    --bd-navy-deep: #031226;
    --bd-navy-rgb: 7, 29, 54;
    --bd-text: #13233A;
    --bd-muted: #667085;
    --bd-light: #F5F8FC;
}

.bd-site-header,
.bd-site-footer,
.bd-site-header a,
.bd-site-footer a,
.bd-site-header button {
    font-family: var(--font-body);
}

.bd-site-header {
    position: relative;
    z-index: 50;
    direction: rtl;
    background: var(--bd-navy);
}

.bd-topbar {
    background: var(--bd-white);
    border-bottom: 1px solid #edf1f6;
    color: var(--bd-muted);
    font-size: 13px;
}

.bd-topbar__inner,
.bd-topbar__contact,
.bd-topbar__meta,
.bd-navbar__inner,
.bd-site-nav__list,
.bd-navbar__actions {
    display: flex;
    align-items: center;
}

.bd-topbar__inner {
    justify-content: space-between;
    min-height: 38px;
    gap: 18px;
}

.bd-topbar__contact,
.bd-topbar__meta {
    gap: 18px;
}

.bd-topbar a,
.bd-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bd-muted);
    white-space: nowrap;
}

.bd-topbar .fa-whatsapp {
    color: #20b55b;
}

.bd-navbar {
    background: #288FCC;
    color: #fff;
    box-shadow: 0 14px 40px rgba(var(--bd-navy-rgb), .18);
}

.bd-navbar.fixed-top {
    background: #288FCC;
    box-shadow: 0 14px 40px rgba(var(--bd-navy-rgb), .22);
}

.bd-navbar__inner {
    min-height: 76px;
    justify-content: space-between;
    gap: 28px;
}

.bd-site-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.bd-site-logo img {
    display: block;
    max-width: 178px;
    max-height: 54px;
    object-fit: contain;
}

.bd-site-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.bd-site-nav__list {
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    direction: rtl;
}

.bd-site-nav__item {
    position: relative;
}

.bd-site-nav__list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 13px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
}

.bd-site-nav__list a::after {
    content: "";
    position: absolute;
    right: 13px;
    left: 13px;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--bd-red);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.bd-site-nav__list a:hover,
.bd-site-nav__list a.is-active {
    color: #fff;
}

.bd-site-nav__list a:hover::after,
.bd-site-nav__list a.is-active::after {
    transform: scaleX(1);
}

.bd-site-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 70;
    display: grid;
    gap: 4px;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(10, 32, 62, .08);
    border-radius: 10px;
    background: var(--bd-white);
    box-shadow: 0 18px 42px rgba(var(--bd-navy-rgb), .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.bd-site-nav__item--dropdown:hover .bd-site-nav__dropdown,
.bd-site-nav__item--dropdown:focus-within .bd-site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bd-site-nav__dropdown a {
    min-height: 38px;
    justify-content: flex-start;
    padding: 8px 10px;
    border-radius: 7px;
    color: var(--bd-text);
    font-size: 13px;
    white-space: normal;
}

.bd-site-nav__dropdown a::after {
    display: none;
}

.bd-site-nav__dropdown a:hover {
    color: var(--bd-red);
    background: var(--bd-light);
}

.bd-navbar__actions {
    flex: 0 0 auto;
    gap: 10px;
}

.bd-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 7px;
    background: var(--bd-red);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(var(--bd-red-rgb), .24);
}

.bd-contact-btn:hover {
    color: #fff;
    background: var(--bd-red-dark);
}

.bd-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
}

.bd-offcanvas {
    direction: rtl;
}

.bd-offcanvas__logo {
    display: block;
    text-align: center;
    padding: 34px 24px 12px;
}

.bd-offcanvas__logo img {
    max-width: 170px;
    max-height: 60px;
    object-fit: contain;
}

.bd-offcanvas__menu {
    padding-top: 16px !important;
}

.bd-offcanvas__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bd-offcanvas__row>a {
    flex: 1 1 auto;
}

.bd-offcanvas__toggle {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 7px;
    background: var(--bd-light);
    color: var(--bd-text);
}

.bd-offcanvas__submenu {
    display: none;
    gap: 4px;
    margin: 4px 0 8px;
    padding: 0 18px 0 0;
    list-style: none;
}

.bd-offcanvas__item--accordion.is-open .bd-offcanvas__submenu {
    display: grid;
}

.bd-offcanvas__item--accordion.is-open .bd-offcanvas__toggle i {
    transform: rotate(180deg);
}

.bd-offcanvas__contact {
    display: grid;
    gap: 12px;
    padding: 22px;
    text-align: center;
}

.bd-offcanvas__contact>a:not(.bd-contact-btn) {
    color: var(--bd-text);
    font-weight: 700;
}

.bd-site-footer {
    direction: rtl;
    overflow: hidden;
    background: var(--bd-navy);
    color: rgba(255, 255, 255, .78);
}

.bd-footer-cta {
    background: #2b8ec7;
    padding: 34px 0 0;
}

.bd-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 126px;
    padding: 30px 34px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(var(--bd-blue-rgb), .18), rgba(255, 255, 255, .04)), var(--bd-navy-2);
    direction: rtl;
    text-align: right;
}

.bd-footer-cta__inner>div {
    flex: 1 1 auto;
}

.bd-footer-cta span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--bd-red);
    font-weight: 800;
}

.bd-footer-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.5;
    font-weight: 800;
}

.bd-footer-cta p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

.bd-footer-cta a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 7px;
    background: var(--bd-red);
    color: #fff;
    font-weight: 800;
}

.bd-footer-main {
    padding: 54px 0 22px;
    background: radial-gradient(circle at 8% 20%, rgba(var(--bd-blue-rgb), .18), transparent 28%), linear-gradient(180deg, #288fcc 0%, var(--bd-navy-deep) 100%);
}

.bd-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, .75fr)) minmax(220px, 1fr);
    gap: 34px;
    direction: rtl;
    text-align: right;
}

.bd-footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.bd-footer-logo img {
    max-width: 188px;
    max-height: 70px;
    object-fit: contain;
}

.bd-footer-brand p {
    max-width: 360px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.95;
}

.bd-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
}

.bd-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.bd-footer-links h4,
.bd-footer-contact h4 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.bd-footer-links h4::after,
.bd-footer-contact h4::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: var(--bd-red);
}

.bd-footer-links ul,
.bd-footer-contact ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

.bd-footer-links a,
.bd-footer-contact a,
.bd-footer-contact span {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

.bd-footer-links a:hover,
.bd-footer-contact a:hover {
    color: #fff;
}

.bd-footer-contact li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    direction: rtl;
    text-align: right;
}

.bd-footer-contact i {
    margin-top: 7px;
    color: var(--bd-red);
}

.bd-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.bd-footer-bottom p {
    margin: 0;
}

.bd-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    direction: rtl;
}

.bd-contact-modal.is-open {
    display: block;
}

.bd-contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 38, .62);
    backdrop-filter: blur(4px);
}

.bd-contact-modal__dialog {
    position: relative;
    width: min(520px, calc(100% - 28px));
    margin: 8vh auto 0;
    padding: 28px;
    border-radius: 16px;
    background: #fff;
    color: var(--bd-text);
    box-shadow: 0 28px 70px rgba(3, 18, 38, .28);
}

.bd-contact-modal__close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--bd-light);
    color: var(--bd-text);
}

.bd-contact-modal__head span {
    color: var(--bd-red);
    font-weight: 800;
}

.bd-contact-modal__head h2 {
    margin: 8px 0;
    color: var(--bd-navy);
    font-size: 24px;
    line-height: 1.5;
    font-weight: 900;
}

.bd-contact-modal__head p {
    margin: 0;
    color: var(--bd-muted);
    line-height: 1.8;
}

.bd-contact-modal__rows {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.bd-contact-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid #edf2f8;
    border-radius: 10px;
    background: var(--bd-light);
}

.bd-contact-row i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #fff;
    color: var(--bd-blue);
}

.bd-contact-row small {
    display: block;
    color: var(--bd-muted);
    font-weight: 700;
}

.bd-contact-row strong {
    display: block;
    margin-top: 3px;
    color: var(--bd-text);
    line-height: 1.7;
}

.bd-contact-modal__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bd-contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #dce6f2;
    border-radius: 9px;
    background: #fff;
    color: var(--bd-text);
    font-weight: 800;
    text-align: center;
}

.bd-contact-action:hover {
    color: var(--bd-blue-dark);
    border-color: var(--bd-blue);
}

.bd-contact-action--whatsapp {
    background: #20b55b;
    border-color: #20b55b;
    color: #fff;
}

.bd-contact-action--whatsapp:hover {
    background: #16994a;
    color: #fff;
}

.bd-contact-modal-open {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .bd-site-nav {
        display: none;
    }

    .bd-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bd-navbar__inner {
        min-height: 68px;
    }
}

@media (max-width: 991px) {
    .bd-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bd-footer-brand {
        grid-column: 1 / -1;
    }

    .bd-footer-cta__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: right;
    }

    .bd-footer-cta a {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .bd-navbar .container,
    .bd-site-footer .container {
        width: min(100% - 24px, 540px);
    }

    .bd-site-logo img {
        max-width: 148px;
    }

    .bd-contact-btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .bd-contact-btn i {
        display: none;
    }

    .bd-footer-main {
        padding-top: 38px;
    }

    .bd-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bd-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bd-contact-modal__dialog {
        margin-top: 5vh;
        padding: 24px 18px;
    }

    .bd-contact-modal__actions {
        grid-template-columns: 1fr;
    }
}