.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);

}

.navbar {
  
    max-width: 1485px;
    margin: auto;
    padding: 20px 40px 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 7px;
}

.navbar-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;

    height: 60px;

    background: transparent;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.navbar-icons:hover {
    background: #353535;
}

.navbar-icons img,
.navbar-icons svg {
    transform: scale(1);

}

.navbar-button {
    display: none;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 43px;


    border: 1px solid #353535;
    border-radius: 10px;
}

.navbar-button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;

    background: #353535;
    border-radius: 5px;
    transition: 0.3s linear;
}

.navbar-button-inner:hover {
    width: 100%;
    height: 100%;
}


.light-mode .header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.light-mode .navbar-logo img {
    filter: invert(1) brightness(0);
 
}

.light-mode .desktop-nav-list li a span {
    color: #000 !important;
}

.light-mode .navbar-icons:hover {
    background: #e0e0e0;
}

.light-mode .navbar-icons img,
.light-mode .navbar-icons svg {
    filter: invert(1) brightness(0);
 
}

.light-mode .navbar-icons .text-white {
    color: #000 !important;

}

.light-mode .navbar-button {
    border-color: #e0e0e0;
}

.light-mode .navbar-button-inner {
    background: #000;
}




.banner-filter-form-top {
    max-width: 1700px;
    display: flex;
    gap: 15px;
}

.banner-filter-form-top:last-child {
    padding-top: 25px;
}

.banner-filter-form-top input {
    font-family: var(--font-primary), sans-serif;
    font-size: var(--fs-button);
    border: 1px solid #fff;
    height: 84px;
    color: #fff;
    width: 100%;
    border-radius: 50px;
    background: black;
}

.banner-filter-form-top-container {
    width: 100%;
    position: relative;

}

.banner-filter-form-top .search-input {
    padding: 0 20px 0 80px;
}

.banner-filter-form-top .search-input:focus {
    background-color: #5c5c5c;
}

.banner-filters {
    background: none;
    padding: 20px 0;
    width: 100%;
    height: auto;
}

.banner-filters-standalone {
    width: 100%;
}

.banner-filter-form-top .search-icon {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.banner-filters hr {
    height: 1px;
    color: #b0b0b0;
    border-bottom: 0;
}

.banner-filter-form-bottom {
    max-width: 1700px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.banner-filter-input-container {
    font-family: var(--font-primary), sans-serif;
    font-size: var(--fs-button);
    border: 1px solid #fff;
    height: 84px;
    color: #fff;
    border-radius: 50px;
    background: black;
    width: 100%;
}

.banner-listing-type {
    max-width: 227px;
    width: 100%;
}

.banner-listing-type-button {
    padding: 10px 20px;
}

.banner-listing-type-button>div {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    gap: 10px;
    white-space: nowrap;
}

.banner-listing-type-button:hover>div {
    background: #353535;
}

.banner-tal {
    max-width: 639px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
}

.banner-tal-dropdown {
    width: 100%;
    max-width: 185px;
}

.banner-tal-dropdown>button {
    height: 100%;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    font-family: var(--font-primary), sans-serif;
    font-size: var(--fs-button);
    color: #fff;
    transition: 0.3s ease-in-out;
    border-radius: 50px;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner-tal-dropdown>button:hover {
    background: #5c5c5c;
}

.banner-price-range {
    max-width: 560px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
}

.banner-search-button {
    background: #fff;
    max-width: 213px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 55px;
    color: #000;
    transition: 0.3s ease-in-out;
    border: 0;
    gap: 10px;
}

.banner-search-button:hover {
    background: #5c5c5c;
}

.banner-search-button span {
    transition: 0.3s ease-in-out;
    transform: translateX(0);
}

.banner-search-button:hover span {
    transform: translateX(-8px);
    color: #fff;
}

.banner-search-button img {
    transition: 0.3s ease-in-out;
    transform: translateX(0);
}

.banner-search-button:hover img {
    transform: translateX(8px);
    filter: invert(100%);
}

.banner-filter-hr {
    width: 1px;
    height: 41px;
    background: #000000;
}

.range-container {
    width: 100%;
    position: relative;
}

.value-display {
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.value-display::after {
    content: attr(data-currency);
}

.value-display[data-currency="AED"]::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/assets/img/front-office-img/header/aed.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.range-container>input {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 0;
}

.range-container>input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 17px;
    width: 38px;
    background: #fff;
    border-radius: 70px;
    cursor: pointer;
    box-shadow: inset 0px 0px 0px 1px #000;
}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb a {
    font-family: var(--font-primary), sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

.breadcrumb a.dark {
    color: #818181;
}


.modal-exit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid #353535;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.modal-exit-button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #353535;
    border-radius: 5px;
    transition: 0.3s linear;
}

.modal-exit-button-inner:hover {
    width: 100%;
    height: 100%;
}


.search-modal-desktop {
    display: flex;
    flex-direction: column;
}

.search-modal-desktop-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 15px 40px 0 40px;
}

.search-modal-desktop-top>img {
    filter: invert(100%);
}

.search-modal-desktop-bottom {
    position: relative;
    margin: auto;
    padding: 40px;
    width: 100%;
}

.search-modal-desktop-bottom p {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.search-modal-desktop-input {
    position: relative;
    width: 100%;
    max-width: 780px;
}

.model-icon-light {
    filter: brightness(100%);
}

.search-modal-desktop-input input {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    border: 1px solid #d1d1d1;
    height: 58px;

    color: #000;
    width: 100%;
    border-radius: 50px;
    background: #e7e7e7;
    padding: 0 20px 0 80px;
}

.search-modal-desktop-input img {
    filter: invert(100%);
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.search-modal-content .back-button {
    /* position: absolute; */
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #54565a;
    background: transparent;
    border: 0;
    cursor: pointer;
}



.language-currency-dropdown {
    max-height: 629px;
    overflow: auto;
    padding: 30px;
}

.language-currency-dropdown::-webkit-scrollbar {
    display: none;
}

.language-currency-dropdown p {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding-bottom: 20px;
}

.language-currency-dropdown-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.language-currency-dropdown-container span,
.language-currency-dropdown-container label {
    width: 100%;
    max-width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    border-radius: 50px;
    border: 1px solid #FFFF;
    text-transform: uppercase;
}

.language-currency-dropdown button {
    width: 100%;
    height: 57px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    border: 1px solid #b0b0b0;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.language-currency-dropdown button:hover {
    background: #b0b0b0;
}


.modal-content-telephone-container {
    padding: 40px;
    overflow: scroll;
}

.modal-content-telephone-container::-webkit-scrollbar {
    display: none;
}

.modal-content-telephone {
    width: 100%;
    max-width: 1090px;
    display: flex;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.modal-content-telephone-left {
    background: #070707;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-content-telephone-left h2 {
    text-align: center;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #fff;
}

.modal-content-telephone-left input {
    width: 100%;
    padding: 0 20px;
    border-radius: 7px;
    background: #1a1a1a;
    border: 1px solid #d5d5d5;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #fff;
    margin: 15px 0 20px;
}

.modal-content-telephone-left label {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #54565a;
    text-align: center;
}

.modal-content-telephone-left label a {
    text-decoration: underline;
}

.modal-content-telephone-left-container button {
    width: 100%;
    height: 65px;
    border-radius: 10px;
    background: #fff;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #000000;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid #d5d5d5;
    margin: 20px 0 15px;
}

.modal-content-telephone-left-container button:hover {
    background: #1a1a1a;
    color: #fff;
}

.modal-content-telephone-left p {
    text-align: center;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #54565a;
    padding: 10px 0 40px;
}

.modal-content-telephone-label-center {
    display: block;
    padding-bottom: 40px;
}

.modal-content-telephone-right {
    position: relative;
    background: url("/assets/img/front-office-img/header/Rectangle7012.png") no-repeat center;
    background-size: cover;
    width: 50%;
    min-height: 680px;
}

.modal-content-telephone .modal-exit-button {
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-content-telephone-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
 
}

.modal-content-telephone-icons a {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
}

.modal-content-telephone-icons a:hover div {
    background: #fff;
}

.modal-content-telephone-icons div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.modal-content-telephone-icons img {
    transition: 0.3s ease-in-out;
}

.modal-content-telephone-icons a:hover img {
    filter: invert(100%);
}


.modal-content-menu {
    display: flex;
    flex-direction: column;
}

.search-modal-desktop-bottom>div {
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.search-modal-desktop-bottom a {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: #54565a;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.search-modal-desktop-bottom a:hover {
    text-decoration: underline;
}

.modal-content-menu-brand {
    position: absolute;
    top: 10px;
    right: -20px;
}

.search-modal-content.active {
    display: flex;
    flex-direction: column;
}

.search-modal-trigger {
    display: none;
}

.search-modal-trigger.active {
    display: flex;
}

.search-modal-content {
    gap: 0 !important;
    display: none;
}

.search-modal-content h3 {
    font-family: "AvenirNextLTPro-Bold", sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #000;
    font-style: italic;
    padding-bottom: 60px;
    text-transform: uppercase;
}

.search-modal-content h3 span {
    font-family: "AvenirNextLTPro-Light", sans-serif;
    font-style: normal;
}

.search-modal-content a {
    font-size: 20px;
    padding-bottom: 25px;
}

.search-modal-content a:last-child {
    padding-bottom: 0;
}

.profile-modal {
    max-width: 1000px;
    width: 100%;

    height: 100vh;
    padding: 0;
    background: #070707;
    overflow: auto;
    scrollbar-width: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-modal .modal-exit-button {
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal-profile-back-button__container {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 10px;
    width: fit-content;
    position: absolute;
    left: 35px;
    top: 370px;
}

.modal-profile-back-button__container span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    color: #616161;
}


.step-wrapper {
    position: relative;
}

.step-wrapper>[data-step] {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    position: absolute;
    width: 100%;
    top: 0;
    padding: 0 0 40px;
}

.step-wrapper>[data-step].active {
    opacity: 1;
    pointer-events: all;
    position: relative;
}

.hidden {
    display: none;
}

.password-hint__container li.succeed {
    display: none;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.modal-content-profile__banner {
    height: 344px;
}

.modal-content-profile__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.profile-modal .modal-pattern {
    position: absolute;
    bottom: -0;
    left: -60px;
    width: 316px;
    height: 533px;
    transform: rotateX(-180deg);
    opacity: 0.1;
    mix-blend-mode: Difference;
}

.profile-modal .modal-pattern img {
    width: 100%;
    height: 100%;
}

.profile-form__container {
    padding: 0 266px;
}

.profile-form__header {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.profile-form-header__text {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    opacity: 0.5;
    margin-bottom: 20px;
}

.social-button__containers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button__containers button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    border-radius: 7px;
    border-width: 1px;
    padding-top: 5.5px;
    padding-right: 13px;
    padding-bottom: 6px;
    background: #1a1a1a;
    padding-left: 9px;
    border: 1px solid #ffffff66;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.social-button__containers button:hover {
    background: #cfcfcf;
}

.social-button__containers button span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    opacity: 0.7;
    color: #ffffff;
}

.social-button__containers button:hover span {
    color: #424242;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 22px 0;
    opacity: 0.3;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.separator span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    padding: 0 10px;
    color: #888;
    font-weight: 500;
    font-size: 14px;
}

.profile-modal form label {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #54565a;
}

.profile-modal .have-account {
    display: block;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #54565a;
    text-align: center;
    padding: 20px 0 0;
}

.profile-modal .have-account span {
    cursor: pointer;
    color: #FFF;
    text-decoration: underline;
}

.profile-modal .forgot-password {
    margin: 0 0 auto;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 275;
    font-size: 12px;
    line-height: 140%;
    color: #ffffffe5;
    text-align: right;
    padding: 0 0 20px;
}

.profile-modal form input:not([type="checkbox"]) {
    width: 100%;
    padding: 0 20px;
    border-radius: 7px;
    background: #1a1a1a;
    border: 1px solid #d5d5d5;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #fff;
    margin: 17px 0 17px;
}

.profile-modal form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 65px;
    border-radius: 10px;
    background: #fff;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #000000;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid #d5d5d5;
    margin: 0 0 13px;
}

.profile-modal form button:hover {
    background: #1a1a1a;
    color: #fff;
}

.password-hint__container {
    margin: 10px 1rem 30px;
}

.password-hint__container li {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 275;
    font-size: 12px;
    line-height: 140%;
    color: #ffffffe5;
    list-style: disc;
}

.phone-wrapper {
    display: flex;
    gap: 8px;
    position: relative;
}

.custom-select {
    position: relative;
    width: 130px;
    cursor: pointer;
}

.selected-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    border-radius: 7px;
    background: #1a1a1a;
    border: 1px solid #d5d5d5;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #d5d5d5;
    margin: 17px 0 0;
}

.selected-option img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1c1c1c;
    border: 1px solid #666;
    border-radius: 6px;
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
}

.country-dropdown-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.country-dropdown-option:hover {
    background-color: #2c2c2c;
}

.phone-input {
    flex: 1;
    background-color: #1c1c1c;
    border: 1px solid #666;
    border-radius: 6px;
    padding: 10px;
    color: #ccc;
    font-size: 14px;
    outline: none;
}

.chevron {
    font-size: 12px;
    margin-left: auto;
}

.otp-container {
    width: 90%;
    margin: auto;
}

.otp-info {
    margin-bottom: 20px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.18px;
    opacity: 0.5;
    color: #ffffff;
}

.otp-inputs input {
    width: 56px;
    height: 56px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #444;
    background-color: #121212;
    color: white;
    border-radius: 6px;
    outline: none;
}

.otp-inputs input:focus {
    border-color: #888;
}


.otp {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin: 0 0 30px;
}

.box {
    width: 55px;
    height: 55px;
    border: 1.5px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    font-family: monospace;
    transition: transform 0.1s;
}

.otp input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.otp .active {
    outline: 2px solid #fff;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.error .box {
    animation: shake 0.3s;
    border-color: #ff4b4b;
}

.gmail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.gmail-button:hover {
    background-color: #111;
}

.gmail-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.resend-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    vertical-align: middle;
    color: #fff;
    text-align: center;
}

.resend-text span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    vertical-align: middle;
    color: #888;
}

.resend-text button {
    font-family: "AvenirNextLTPro-Regular", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    vertical-align: middle;
    color: #888 !important;
    height: auto !important;
    background: none !important;
    border: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.resend-text #resend {
    display: none;
    cursor: pointer;
}

.loading-spinner {
    border: 2px solid #f3f3f3;

    border-top: 2px solid #3498db;

    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.descktop-nav {
    display: block;

    position: relative;
    right: 0;
    left: 0;
    margin: auto;
}

.desktop-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.desktop-nav-list li {
    display: flex;
    align-items: center;
}

.desktop-nav-list a {
    font-family: var(--font-primary), Arial, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: var(--fs-button);
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition:
        color 0.2s,
        background 0.2s;
    padding: 20px 10px;
    border-radius: 10px;
    border-bottom: 1px solid transparent;
    opacity: 1;
}

.desktop-nav-list a:hover {
    background: #ffffff33;
    border-bottom-width: 1px;
    padding: 20px 10px;
    border-radius: 10px;
    opacity: 1;
}

.desktop-nav-list a.active {
    border-bottom: 3px solid #ffffffb2;
    border-radius: 0;
}

.desktop-nav-list .chev-icon {
    width: 20px;
    height: 20px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}


.has-chevron {
    position: relative;
}


.dropdown-model a {
    font-family: var(--font-primary), Arial, sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: var(--fs-button);
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    border-radius: 0;
    padding: 0;
}


.dropdown-model a:hover {
    border-radius: 0;
}

.dropdown-model a:first-child {
    border-bottom: 1px solid #b0b0b0;
    padding: 0 0 20px 0;
}

.dropdown-model a:last-child {
    padding: 10px 0 0 0;
}




.dropdown-model {
    background: #f6f6f6;
    padding: 28px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 500px;
    position: absolute;
    top: 65px;
    left: -155px;
}


.dropdown-model-one,
.dropdown-model-two {
    display: none;
}


.aed-currency-icon {
    width: 20px;
    object-fit: cover;
}

.aed-currency-icon-gray {
    filter: brightness(0) saturate(100%) invert(40%) sepia(1%) saturate(190%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.all-filter-mobile {
    z-index: 4;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
}


.loader-register {
    display: none;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #000;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite;
  
    animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 1760px) {
    .banner-listing-type-button {
        padding: 5px 10px;
    }

    .banner-tal {
        padding: 5px 10px;
    }

    .banner-price-range {
        padding: 5px 10px;
    }

    .range-container>input {
        bottom: -5px;
    }
}

@media (max-width: 1200px) {
    .descktop-nav {
        display: none !important;
    }
}

@media (max-width: 1280px) {
    .banner-filter-form-top input {
        height: 74px;
    }

    .banner-filter-input-container {
        height: 74px;
    }

    .banner-filter-form-bottom {
        margin-bottom: 0;
    }

    .banner-filters hr {
        display: none;
    }

    .banner-filter-form-bottom {
        flex-wrap: wrap;
    }

    .banner-listing-type {
        order: 2;
        max-width: calc(50% - 20px);
    }

    .banner-tal {
        order: 1;
        max-width: 100%;
    }

    .banner-price-range {
        order: 3;
        max-width: calc(50% - 20px);
    }

    .banner-tal-dropdown {
        max-width: 100%;
    }

    .search-modal-desktop-input input {
        height: 74px;
        font-size: 18px;
    }

    .language-currency-dropdown {
        width: 600px;
        padding: 40px;
    }

    .modal-content-telephone-left h2 {
        font-size: 26px;
    }

    .modal-content-telephone-left p {
        font-size: 22px;
    }

    .modal-content-menu a {
        font-size: 25px;
    }

    .language-currency-dropdown p {
        font-size: 18px;
    }

    .language-currency-dropdown-container span {
        height: 74px;
        font-size: 18px;
    }

    .language-currency-dropdown button {
        height: 74px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .modal-content-telephone {
        max-width: 600px;
    }

    .modal-content-telephone-left {
        width: 100%;
    }

    .modal-content-telephone-right {
        display: none;
    }

    .modal-exit-button {
        width: 60px;
        height: 60px;
    }

    .modal-exit-button-inner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 20px 20px 10px 20px;
    }

    .navbar-logo {
        width: 51px;
    }

    .navbar-logo img {
        width: 100%;
    }

    .navbar-icons {
      

display: none;
        width: 33px;
        height: 33px;
    }

    .navbar-icons img {
   
        object-fit: cover;
    }


    .navbar-button {
        margin: 0 28px 0 0;
    }

    .navbar-icons img,
    .navbar-icons svg {
        transform: scale(0.8);
    }


    .navbar-content {
        gap: 2px;
    }

    .navbar-button {
        width: 42px;
        height: 36px;
    }

    .navbar-button-inner {
        width: 45px;
        height: 40px;
    }

    .navbar-button-inner img {
        width: 34px;
    }

    .banner-filters hr {
        display: block;
        margin-top: 30px;
    }

    .modal-content-telephone-left h2 {
        font-size: 24px;
    }

    .modal-content-telephone-left p {
        font-size: 20px;
    }

    .modal-content-telephone-left label {
        font-size: 16px;
    }

    .modal-content-telephone-container {
        padding: 0;
    }

    .modal-content-menu a {
        font-size: 20px;
    }

    .modal-exit-button {
        width: 37px;
        height: 37px;
    }

    .modal-exit-button-inner {
        width: 28px;
        height: 28px;
    }

    .modal-exit-button-inner img {
    width: 16px;
}

    .language-currency-dropdown {
        top: 50px;
        width: 400px;
        padding: 30px;
    }

    .language-currency-dropdown p {
        font-size: 16px;
    }

    .search-modal-desktop-top {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 20px 0 20px;
    }

    .search-modal-desktop-top>img {
        order: 1;
    }

    .search-modal-desktop-input {
        order: 3;
        max-width: 100%;
    }

    .search-modal-desktop-top .modal-exit-button {
        order: 2;
    }

    .search-modal-desktop-input input {
        height: 64px;
        font-size: 16px;
    }

    .search-modal-desktop-bottom {
        padding: 20px;
    }

    .modal-content-telephone {
        width: 100%;
    }

    .modal-content-telephone {
        max-width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .language-currency-dropdown-container span {
        height: 44px;
        font-size: 16px;
        padding: 0 37px;
        width: 47%;
    }

    .language-currency-dropdown button {
        height: 53px;
        font-size: 16px;
    }


    .modal-content-telephone-left {
        padding: 40px 20px;
    }





    .search-modal-content h3 {
        font-size: 24px;
        padding-bottom: 30px;
    }

    #menuModal .modal-content-menu {
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        padding-bottom: 24px;
        overflow-y: auto;
    }

    #menuModal .search-modal-desktop-top {
        position: sticky;
        top: 0;
        z-index: 5;
        background: #fff;
        padding: 18px 20px 14px;
        border-bottom: 1px solid #ececec;
    }

    #menuModal .search-modal-desktop-bottom {
        padding: 20px 20px 30px;
    }

    #menuModal .menu-modal-tree {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    #menuModal .menu-modal-tree-item {
        border-bottom: 0 solid #efefef;
    }

    #menuModal .menu-modal-main-link {
        width: 100%;
        border: 0 solid #e8e8e8;
        border-radius: 12px;
        background: #fff;
        color: #111;
        padding: 14px 16px;
        text-align: start;
        font-family: "AvenirNextLTPro-Bold", sans-serif;
        font-size: 16px;
        line-height: 22px;
        transition: 0.2s ease;
        cursor: pointer;
    }

    #menuModal .menu-modal-main-link:hover {
        border-color: #d8d8d8;
        background: #fafafa;
    }

    #menuModal .menu-modal-toggle-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    #menuModal .menu-modal-arrow {
        width: 9px;
        height: 9px;
        border-right: 2px solid #54565a;
        border-bottom: 2px solid #54565a;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
        margin-inline-end: 4px;
    }

    #menuModal .menu-modal-toggle-link.is-open .menu-modal-arrow {
        transform: rotate(-135deg);
    }

    #menuModal .menu-modal-tree-content {
        display: none;
        padding: 0 10px 8px;
    }

    #menuModal .menu-modal-tree-content.active {
        display: block;
    }

    #menuModal .menu-modal-tree-content a {
        display: block;
        font-family: "AvenirNextLTPro-Regular", sans-serif;
        font-size: 16px;
        line-height: 22px;
        color: #54565a;
        padding: 12px 8px;
        border-bottom: 0 solid #f1f1f1;
    }

    #menuModal .menu-modal-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 40px;
        flex-direction: row;
        justify-content: flex-start;
        margin-left: 0;
    }

    #menuModal .menu-modal-socials .social-circle {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid #e6e6e6;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    #menuModal .menu-modal-socials .social-circle img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }


#menuModal .menu-modal-tree-content a {
    padding: 13px 18px !important;
}





}




@media (max-width: 1100px) {
    .navbar-button {
        display: flex;
    }

    #menuModal .modal-content-menu {
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        padding-bottom: 24px;
        overflow-y: auto;
    }

    #menuModal .search-modal-desktop-top {
        position: sticky;
        top: 0;
        z-index: 5;
        background: #fff;
        padding: 18px 20px 14px;
        border-bottom: 1px solid #ececec;
    }

    #menuModal .search-modal-desktop-bottom {
        padding: 20px 20px 30px;
    }

    #menuModal .menu-modal-tree {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    #menuModal .menu-modal-tree-item {
        border-bottom: 0 solid #efefef;
    }

    #menuModal .menu-modal-main-link {
        width: 100%;
        border: 0 solid #e8e8e8;
        border-radius: 12px;
        background: #fff;
        color: #111;
        padding: 14px 16px;
        text-align: start;
        font-family: "AvenirNextLTPro-Bold", sans-serif;
        font-size: 16px;
        line-height: 22px;
        transition: 0.2s ease;
        cursor: pointer;
    }

    #menuModal .menu-modal-main-link:hover {
        border-color: #d8d8d8;
        background: #fafafa;
    }

    #menuModal .menu-modal-toggle-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    #menuModal .menu-modal-arrow {
        width: 9px;
        height: 9px;
        border-right: 2px solid #54565a;
        border-bottom: 2px solid #54565a;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
        margin-inline-end: 4px;
    }

    #menuModal .menu-modal-toggle-link.is-open .menu-modal-arrow {
        transform: rotate(-135deg);
    }

    #menuModal .menu-modal-tree-content {
        display: none;
        padding: 0 10px 8px;
    }

    #menuModal .menu-modal-tree-content.active {
        display: block;
    }

    #menuModal .menu-modal-tree-content a {
        display: block;
        font-family: "AvenirNextLTPro-Regular", sans-serif;
        font-size: 16px;
        line-height: 22px;
        color: #54565a;
        padding: 12px 8px;
        border-bottom: 0 solid #f1f1f1;
    }

    #menuModal .menu-modal-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 30px;
        justify-content: flex-start;
        margin-left: 0;
    }

    #menuModal .menu-modal-socials .social-circle {
        width: 38px;
        height: 31px;
        border-radius: 50%;
        border: 1px solid #e6e6e6;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    #menuModal .menu-modal-socials .social-circle img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

}

@media (max-width: 910px) {
    .language-currency-dropdown {
        width: 300px;
        padding: 20px;
        right: -40px;
    }

    .profile-form__container {
        padding: 0 20px;
    }










}


.light-mode .profile-modal {
    background: #f5f5f5;
}

.light-mode .profile-form__header {
    color: #000;
}

.light-mode .profile-form-header__text {
    color: #333;
}

.light-mode .profile-form__container form label {
    color: #333;
}

.light-mode .profile-form__container form input {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .profile-form__container form button {
    background: #000;
    color: #fff;
}

.light-mode .profile-form__container form button:hover {
    background: #333;
}

.light-mode .social-button__containers button {
    background: #fff;
    border: 1px solid #d0d0d0;
    color: #000;
}

.light-mode .social-button__containers button:hover {
    background: #f0f0f0;
}

.light-mode .separator span {
    color: #666;
}

.light-mode .have-account {
    color: #333;
}

.light-mode .have-account span {
    color: #000;
}

.light-mode .password-hint__container li {
    color: #666;
}

.light-mode .modal-profile-back-button__container span {
    color: #666;
}

.light-mode .modal-profile-back-button__container img {
    filter: invert(1) brightness(0);
}


.light-mode .search-modal-desktop {
    background: #fff;
}

.light-mode .search-modal-desktop-top>img {
    filter: invert(1) brightness(0);
}

.light-mode .search-modal-desktop-input input {
    background: #f5f5f5;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .search-modal-desktop-input img {
    filter: invert(1) brightness(0);
}

.light-mode .search-modal-desktop-bottom p {
    color: #000;
}

.light-mode .search-title {
    color: #000;
}

.light-mode .propertiesCount-span {
    color: #666;
}


.light-mode .search-results-grid .property-card {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.light-mode .search-results-grid .property-card h3,
.light-mode .search-results-grid .property-card p,
.light-mode .search-results-grid .property-card span {
    color: #000;
}

.light-mode .search-results-grid .property-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.light-mode .modal-content-telephone {
    background: #fff;
}

.light-mode .modal-content-telephone-left {
    background: #f5f5f5;
}

.light-mode .modal-content-telephone-left h2 {
    color: #000;
}

.light-mode .modal-content-telephone-left p {
    color: #333;
}

.light-mode .modal-content-telephone-left label {
    color: #666;
}

.light-mode .modal-content-telephone-left input {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .modal-content-telephone-left-container button {
    background: #000;
    color: #fff;
    border-color: #000;
}

.light-mode .modal-content-telephone-left-container button:hover {
    background: #333;
}

.light-mode .modal-content-telephone-icons a {
    border-color: #000;
}

.light-mode .modal-content-telephone-icons a:hover div {
    background: #000;
}

.light-mode .modal-content-telephone-icons img {
    filter: invert(1) brightness(0);
}

.light-mode .modal-content-telephone-icons a:hover img {
    filter: invert(0) brightness(1);
}


.light-mode .modal-content-menu {
    background: #fff;
}

.light-mode .search-modal-desktop-bottom a {
    color: #000000;
}




.light-mode .model-icon-light {
    filter: brightness(0);
}

.light-mode .property-card-feature img {
    filter: brightness(0);
}

.light-mode .property-card-title {
    color: #000;
}



.light-mode .search-modal-content h3 {
    color: #000;
}

.light-mode .search-modal-content a {
    color: #333;
}

.light-mode .search-modal-content a:hover {
    color: #000;
}

.light-mode .search-modal-content .back-button {
    color: #666;
}

.light-mode .search-modal-content .back-button img {
    filter: invert(1) brightness(0);
}


.light-mode .modal-overlay-opacity-center {
    background: rgba(255, 255, 255, 0.8);
}

.light-mode .modal-content-opacity-center {
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


.light-mode .modal-exit-button {
    background: rgba(255, 255, 255, 0.9);
    border-color: #d0d0d0;
}

.light-mode .modal-exit-button-inner {
    background: #000;
}

.light-mode .modal-exit-button-inner img {
    filter: invert(0) brightness(1);
}


.light-mode .social-button__containers button span {
    color: #000;
}

.light-mode .social-button__containers button:hover span {
    color: #333;
}

.light-mode .profile-modal form label {
    color: #333;
}

.light-mode .profile-modal .have-account {
    color: #333;
}

.light-mode .profile-modal .have-account span {
    color: #000;
    font-weight: 600;
}

.light-mode .profile-modal .forgot-password {
    color: #666;
}

.light-mode .profile-modal form input:not([type="checkbox"]) {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .custom-select .selected-option {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .custom-select .options {
    background: #fff;
    border-color: #d0d0d0;
}

.light-mode .custom-select .option {
    color: #000;
}

.light-mode .custom-select .option:hover {
    background: #f0f0f0;
}

.light-mode .phone-input {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}


.light-mode .otp-container .otp-info {
    color: #333;
}

.light-mode .otp-container .otp-info strong {
    color: #000;
}

.light-mode .otp input {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .gmail-button {
    background: #fff;
    border: 1px solid #d0d0d0;
    color: #000;
}

.light-mode .resend-text {
    color: #666;
}

.light-mode .resend-text button {
    color: #000;
}


.light-mode .suggestions-dropdown {
    background: #fff;
    border: 1px solid #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.light-mode .suggestions-dropdown div {
    color: #000;
}

.light-mode .suggestions-dropdown div:hover {
    background: #f0f0f0;
}


.light-mode .language-currency-dropdown {
    background: #fff;
}

.light-mode .language-currency-dropdown p {
    color: #000;
}

.light-mode .language-currency-dropdown-container span,
.light-mode .language-currency-dropdown-container label {
    background: #fff;
    border-color: #d0d0d0;
    color: #000;
}

.light-mode .language-currency-dropdown-container span:hover,
.light-mode .language-currency-dropdown-container label:hover {
    background: #f0f0f0;
}

.light-mode .language-currency-dropdown button {
    background: #000;
    color: #fff;
    border-color: #000;
}

.light-mode .language-currency-dropdown button:hover {
    background: #333;
}

.light-mode .property-card-price-text {
    color: #ffffff !important;
}

.light-mode .property-card-location-text {
    color: #ffffff !important;
}

.light-mode .property-card-link {
    color: #ffffff !important;
}


.light-mode .value-display {
    color: #000 !important;
}

.light-mode .value-display[data-currency="AED"]::after {
    filter: brightness(0) invert(0) !important;
}

.light-mode .banner-filter-hr {
    background: #000;
}


.header-sub-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    width: 100%;
}

.header.expanded .header-sub-nav {
    max-height: 900px;
    height: 900px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-sub-nav-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.sub-nav-content {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 100px;
    padding: 40px 0;
    height: 100%;
}

.sub-nav-content.active {
    display: grid;
}

.sub-nav-item-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-nav-content a {
    color: #fff;
    text-decoration: none;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    width: fit-content;
}

.nav-desc {
    display: none;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    line-height: 1.5;
    white-space: normal;
    max-width: 450px;
}

.sub-nav-item-group:hover .nav-desc {
    display: block;
}

.sub-nav-item-group:hover a {
    color: #fff;
    font-weight: 500;
}

.sub-nav-content a:hover {
    color: #fff;
}


/* .light-mode .header-sub-nav {
    background: rgba(255, 255, 255, 0.9);
} */

.light-mode .header.expanded .header-sub-nav {
    border-top-color: rgba(0, 0, 0, 0.1);

}


.header-sub-nav {
    max-height: 900px;
}


.light-mode .sub-nav-content a {
    color: #000;
}

.light-mode .sub-nav-content a:hover {
    color: #000;
}

.light-mode .nav-desc {
    color: rgba(0, 0, 0, 0.5);
}


.nav-item-dropdown.active>a {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.light-mode .nav-item-dropdown.active>a {
    background: rgba(0, 0, 0, 0.1);
}



@media (max-width: 1200px) {
    .header-sub-nav {
        display: none !important;
    }
}


.theme-switch-wrapper {
    position: absolute;
    right: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.theme-switch {
    width: 32px;
    height: 56px;
    background: #1a1a1a;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 1.5px solid #353535;
    transition: all 0.3s ease;
}

.switch-ball {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 2.5px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-ball svg {
    width: 14px;
    height: 14px;
    color: #000 !important;
}


html.light-mode .switch-ball {
    transform: translateY(0);
}


html:not(.light-mode) .switch-ball {
    transform: translateY(24px);
}


html.light-mode .theme-switch {
    background: #f0f0f0;
    border-color: #ddd;
}


html.light-mode .switch-ball #sunIcon {
    display: block !important;
}

html.light-mode .switch-ball #moonIcon {
    display: none !important;
}

html:not(.light-mode) .switch-ball #sunIcon {
    display: none !important;
}

html:not(.light-mode) .switch-ball #moonIcon {
    display: block !important;
}

@media (max-width: 768px) {
    .theme-switch {
        width: 28px;
        height: 50px;
    }

    .switch-ball {
        width: 20px;
        height: 20px;
        left: 2.5px;
    }

    html:not(.light-mode) .switch-ball {
        transform: translateY(22px);
    }

    .modal-exit-button-inner img {
    width: 16px;
}
}


.header-sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.header.expanded .header-sub-nav {
    display: block;
}

.header-sub-nav-inner {
    position: relative;
}


.sub-nav-panel {
    display: none;
    background: #1c1c1c;
    border-radius: 16px;
    padding: 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    height: fit-content;
    flex-direction: row;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sub-nav-panel.active {
    display: flex;
}


.sub-nav-panel__left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sub-nav-panel__title {
    font-size: var(--fs-element-heading);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-primary-bold), sans-serif;
    line-height: 1.2;
}

.sub-nav-panel__desc {
    font-size: var(--fs-element-subtext);
    color: #aaaaaa;
    line-height: 1.6;
    font-family: var(--font-primary), sans-serif;
    margin: 0;
}

.sub-nav-panel__img-wrap {
    margin-top: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-height: 240px;
}

.sub-nav-panel__img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}


.sub-nav-panel__divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.sub-nav-panel__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-left: 0.5rem;
}


.sub-nav-link {
    display: block;
    font-size: var(--fs-button);
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1.4;
    font-family: var(--font-primary), sans-serif;
}

.sub-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    font-weight: 700;
}



.sub-nav-link--bold:hover {
    background: rgba(255, 255, 255, 0.1);
}


.currency-option {
    cursor: pointer;
}

.currency-option:hover {
    background-color: #54565A;
    color: #fff;
}

.currency-option.selected {
    background-color: #000;
    color: #fff;
    font-weight: bold;
}

.language-option {
    cursor: pointer;
}

.language-option:hover {
    background-color: #54565A;
    color: #fff;
}

.language-option.selected {
    background-color: #54565a;
    color: #fff;
    font-weight: bold;
}


.light-mode .sub-nav-panel {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.light-mode .sub-nav-panel__title {
    color: #000000;
}

.light-mode .sub-nav-panel__desc {
    color: #666666;
}

.light-mode .sub-nav-panel__divider {
    background: rgba(0, 0, 0, 0.1);
}

.light-mode .sub-nav-link {
    color: #333333;
}

.light-mode .sub-nav-link:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}
 
.contact-right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1rem !important;
}

.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}


.contact-cards-grid a {
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #e9e9e9;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.contact-card:hover {
    background: #dfdfdf;
    transform: translateY(-2px);
}

.contact-card__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
  
}

.contact-card__info {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.4;
}

.contact-card--address {
    align-items: flex-start;
}

.contact-socials-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-circle {
    width: 32px !important;
    height: 32px;
    border-radius: 50%;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.social-circle:hover {
    transform: scale(1.1);
    background: #d0d0d0;
}

.social-circle img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0);

}


[dir="rtl"] .contact-right-panel {
    padding-left: 0 !important;
    padding-right: 1rem !important;
}

[dir="rtl"] .contact-card__info {
    text-align: right;
}

@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}
