:root {
    --theme-main-color: #4733fa;
    --theme-main-color-darker: #3a2abf;
    --theme-secend-color: #777777;
    --theme-border: 0px solid #ddd;
    --theme-light-gray: #e9e9e9;
    --theme-dark-gray: #333;
    --theme-text-on-main: #fff;
    --element-background-color: #ffffff;
    --body-background-color: #ffffff;
    --text-color-title: #333;
    --text-color-paragraph: #333;
    --text-size-h1: 18px;
    --text-size-h2: 16px;
    --text-size-h3: 14px;
    --text-size-all: 12px;
    --text-size-paragraph: 14px;
    --theme-font-all: 'DanaFanum', sans-serif;
    --theme-font-title: 'On', sans-serif;
    --radius-small: 10px;
    --radius-medium: 18px;
    --app-max-width: 100%;
}

/* View containers */
.desktop-view {
    display: none;
}

.mobile-view {
    display: block;
}

@media (min-width: 1024px) {
    .desktop-view {
        display: block;
    }

    .mobile-view {
        display: none !IMPORTANT;
    }
}

/* Desktop Header */
.desktop-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    padding: 15px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.desktop-header.visible {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .desktop-header {
        display: block;
        position: relative;
        transform: translateY(0);
    }
}

.desktop-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 20px;
    justify-content: space-between;
}

/* Left Group (Menu + Account) */
.desktop-left-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    justify-content: space-around;
}

/* Menu Navigation */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-item {
    margin: 0px 10px;
    text-decoration: none;
    color: #8e8e8e;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.menu-item:hover {
    border-bottom-color: #4733fa;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 0px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    background: #f3f3f3;
    transition: all 0.2s ease;
}

.header-search-input:focus {
    border-color: #4733fa;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(71, 51, 250, 0.1);
}

.header-search-btn {
    position: absolute;
    background: none;
    border: none;
    margin: 15px;
    display: flex;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.header-search-btn:hover {
    background: rgba(71, 51, 250, 0.1);
}

.header-search-btn img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

/* Header Search Clear Button */
.header-search-clear-btn {
    position: absolute;
    left: 10px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.header-search-clear-btn:hover {
    background: #ccc;
}

/* Header Search Popup */
.header-search-popup {
    position: absolute;
    /* left: 0; */
    /* right: 0; */
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    z-index: 1000;
    max-height: 400px;
    width: 500px;
    overflow: hidden;
}

.header-search-results-container {
    max-height: 500px;
    overflow-y: auto;
    padding: 16px;
}

.header-search-initial {
    padding: 8px 0;
}

.header-search-initial h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.header-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.header-search-suggestion-tag {
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.header-search-suggestion-tag:hover {
    background: #e3e0fc;
    color: #4733fa;
}

/* Header Search Results */
#header-search-results .search-result-item {
    display: flex;
    padding: 12px;
    margin-bottom: 8px;
    /* background: #fafafa; */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    box-shadow: unset;
}

#header-search-results .search-result-item:hover {
    background: #f0f0f0;
    border-color: #4733fa;
    transform: translateY(-1px);
}

#header-search-results .search-result-image {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    margin-left: 12px;
    background: #f0f0f0;
    flex-shrink: 0;
}

#header-search-results .search-result-content {
    flex: 1;
    min-width: 0;
}

#header-search-results .search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#header-search-results .search-result-category {
    font-size: 11px;
    color: #4733fa;
    background: #e3e0fc;
    padding: 2px 6px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 3px;
}

#header-search-results .search-result-address {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#header-search-results .search-result-tags {
    margin-top: 4px;
}

#header-search-results .search-result-tag {
    font-size: 10px;
    color: #888;
    background: #f5f5f5;
    padding: 1px 4px;
    border-radius: 6px;
    display: inline-block;
    margin-left: 3px;
    margin-bottom: 2px;
}

.header-search-no-results {
    text-align: center;
    padding: 24px 16px;
    color: #666;
}

.header-search-no-results img {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    margin-bottom: 12px;
}

.header-search-no-results h3 {
    margin-bottom: 6px;
    color: #333;
    font-size: 14px;
}

.header-search-no-results p {
    font-size: 12px;
}

/* Logo */
.desktop-logo-link {
    flex-shrink: 0;
    text-decoration: none;
}

.desktop-logo {
    height: 40px;
    width: auto;
}

/* Desktop Authentication Styles */
.desktop-auth-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.desktop-auth-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #8e8e8e;
    transition: all 0.2s ease;
    text-decoration: none;
}

.desktop-auth-btn.linky {
    border: none;
    background: none;
    padding: 8px;
}

.desktop-auth-btn:hover {
    border-color: #4733fa;
    color: #4733fa;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.user-phone {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.desktop-auth-btn .auth-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    opacity: 0.6;
    rotate: 270deg;
    filter: grayscale(1);
}

.desktop-auth-btn.active .auth-arrow {
    transform: rotate(180deg);
}

.desktop-auth-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.desktop-auth-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 8px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.user-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.user-details .user-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.user-details .user-phone {
    font-size: 14px;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 8px 0;
}

.desktop-auth-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.desktop-auth-dropdown .dropdown-item:hover {
    background: #f8f9fa;
}

.desktop-auth-dropdown .dropdown-item.logout {
    color: #e74c3c;
}

.desktop-auth-dropdown .dropdown-item.logout:hover {
    background: #fef2f2;
}

.desktop-auth-dropdown .dropdown-item img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.desktop-hero {
    display: grid;
    grid-template-columns: 1fr minmax(700px, 1200px) 1fr;
    gap: 20px;
    align-items: center;
    padding: 10px 20px 0 20px;
}

.desktop-hero .side {
    background: #e9e9e9;
    border-radius: 18px;
    height: 420px;
}

.desktop-hero .center {
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
}

.desktop-hero .center .banner {
    height: 100%;
    margin: 0;
}

.desktop-hero .center .banner .swiper-slide {
    max-height: none;
    height: 100%;
    aspect-ratio: auto;
}

.desktop-services {
    display: flex;
    gap: 50px;
    padding: 30px 40px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.desktop-services a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.desktop-services a img {
    background: #f0f0f0;
    padding: 16px;
    width: 55px;
    border-radius: 15px;
    margin-bottom: 8px;
}

.desktop-services a span {
    font-size: 14px;
    color: #8e8e8e;
    FONT-WEIGHT: 700;
}

/* Hide mobile main slider on desktop */
.banner-swiper.mobile-main {
    display: block;
}

@media (min-width: 1024px) {
    .banner-swiper.mobile-main {
        display: none;
    }
}



/* Regular font weight */

@font-face {
    font-family: 'DanaFanum';
    src: url('../fonts/DanaFaNum-Regular.woff2') format('woff2');
    font-weight: 400;
    /* Normal weight */
    font-style: normal;
}


/* Bold font weight */

@font-face {
    font-family: 'DanaFanum';
    src: url('../fonts/DanaFaNum-Bold.woff2') format('woff2');
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
}


/* Black font weight */

@font-face {
    font-family: 'DanaFanum';
    src: url('../fonts/DanaFaNum-Black.woff2') format('woff2');
    font-weight: 900;
    /* Bold weight */
    font-style: normal;
}






* {
    box-sizing: border-box;
    font-size: var(--text-size-all);
    font-family: var(--theme-font-all);
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--body-background-color);
    color: var(--text-color-paragraph);
}

a {
    text-decoration: none;
    color: var(--text-color-paragraph);
}

h1 {
    font-size: var(--text-size-h1);
}

h2 {
    font-size: var(--text-size-h2);
}

h3 {
    font-size: var(--text-size-h3);
}


#app-frame {
    max-width: var(--app-max-width);
    margin: auto;
}


.search-bar {
    width: 100%;
    display: flex;
    position: sticky;
    z-index: 20;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(0, 0, 0, 0) 100%);
}








.search-bar button {
    width: 100%;
    border: 0;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: var(--radius-medium);
    margin: 20px;
    outline: none;
}

/* Services */
.services {
    display: flex;
    text-align: center;
    padding: 10px;
    direction: ltr;
    align-items: center;
    align-content: center;
    justify-content: space-around;
}

.services .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-medium);
    text-decoration: none;
    color: var(--text-color-paragraph);
    font-size: var(--text-size-h2);
}

.services .item img {
    background: var(--theme-light-gray);
    padding: 15px;
    margin: 7px 0px;
    border-radius: var(--radius-medium);
    width: 55px;
}



/* Swiper Banner */
.banner {
    width: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
    margin: 20px 0;
}

.banner .swiper-slide img,
.banner .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-large);
}

.banner .swiper-slide {
    overflow: hidden;
    FONT-VARIANT: JIS04;
    background-position: center;
    background-size: cover;
    /*max-width: 600px;*/
    width: calc(100% - 60px);
    aspect-ratio: 16 / 12;
    border-radius: 20px;
    max-height: 200px;
    object-fit: cover;
    /* background: var(--lower-gray);
    box-shadow: 0px 0px 80px -50px #000000f2; */
}


.desktop-banner .swiper-slide {
    max-width: 100% !important;
    max-height: 65vh;
    aspect-ratio: 1;
}

.banner .swiper-pagination {
    position: unset;
    margin: 10px 0px;
}

.banner .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 20px;
    background: #bfbfbf;
    opacity: 1;
    transition: .2s;
}


.banner .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 20px;
}



.service-swiper {
    padding: 0px 20px 10px 20px;
    overflow: hidden;
}


.service-swiper .swiper-slide {
    width: 230px;
    padding: 5px;
    overflow: hidden;
    border-radius: var(--radius-medium);
}


.service-swiper .swiper-slide img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    margin: 5px 0;
}


.service-swiper .swiper-slide span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.service-swiper .swiper-slide .star-gray {
    width: 12px;
    height: 12px;
    border-radius: 0;
    margin: 0px 5px;
}


.service-swiper .swiper-slide h3,
.service-swiper p {
    margin: 0px 5px;
}

.service-swiper * {
    color: #777777;
}







.service-ticket-swiper {
    padding: 0px 20px 30px 20px;
    overflow: hidden;
}


.service-ticket-swiper .swiper-slide {
    width: 230px;
    padding: 0px 10px;
    overflow: hidden;
    border-radius: 15px;
    background: #e2e2e2;
    height: 120px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}








.service-ticket-swiper .swiper-slide .star-gray {
    width: 12px;
    height: 12px;
    border-radius: 0;
    margin: 0px 5px;
}


.service-ticket-swiper .swiper-slide h3,
.service-ticket-swiper p {
    margin: 0;
}

.service-ticket-swiper * {
    color: #4e4e4e;
}








.squer-slider .swiper-slide {
    width: 150px;
    padding: 5px;
    overflow: hidden;
    border-radius: var(--radius-medium);
}




/* Swiper gallery */
.gallery-single-swiper {
    width: 100%;
    height: 40vh;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    margin: 0 0 30px 0;
}


.swiper-wrapper {
    z-index: 0
}


.gallery-single-swiper .swiper-slide img,
.gallery-single-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.gallery-single-swiper .swiper-slide {
    overflow: hidden;
    FONT-VARIANT: JIS04;
    background-position: center;
    background-size: cover;
    max-width: 600px;
    border-radius: 0;
    object-fit: cover;
    /* background: var(--lower-gray);
    box-shadow: 0px 0px 80px -50px #000000f2; */
    height: 100%;
    z-index: -2;
}

.gallery-single-swiper .swiper-pagination {
    position: unset;
    margin: 0;
    transform: translate(0px, -30px);
    z-index: 20;
}

.gallery-single-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 20px;
    background: #ffffff;
    opacity: 1;
    transition: .2s;
    box-shadow: 0px 0px 30px 0px #000;
}


.gallery-single-swiper .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 20px;
}







.static-banner {
    width: 100%;
    margin: 0px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px 10px 20px;
}

.static-banner img {
    width: 100%;
    border-radius: var(--radius-medium);
}


.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 18px 0;
    z-index: 100;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 20%, rgba(0, 0, 0, 0) 100%);
}

.nav-box {
    display: flex;
    background: var(--theme-main-color);
    border-radius: var(--radius-medium);
    gap: 10px;
    padding: 10px;
}

.nav-btn {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-small);
    aspect-ratio: 1;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn img {
    width: 22px;
    filter: brightness(5);
}

.nav-btn.active {
    background: var(--theme-text-on-main);
}


.nav-btn.active img {
    filter: brightness(1);
}


.tab-sec {
    display: none;
}

.tab-sec.show {
    display: block;
}


.wallet-modal-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    margin: 20px;
    width: -webkit-fill-available;
    background: var(--theme-main-color);
    color: var(--theme-text-on-main);
    font-size: var(--text-size-h3);
    font-weight: 700;
    border: 0;
    outline: none;
    padding: 14px;
    border-radius: var(--radius-medium);
    left: 0;
    right: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}



.sub-page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 25px;
    background: #fff;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 20;
}

.gap-holder-60 {
    padding: 60px;
    width: 100%;
}

.gap-holder-50 {
    padding: 50px;
    width: 100%;
}

.gap-holder-40 {
    padding: 40px;
    width: 100%;
}

.gap-holder-10 {
    padding: 10px;
    width: 100%;
}

.sub-page-head button {
    display: flex;
    gap: 10px;
    font-size: var(--text-size-h3);
    font-weight: 900;
    color: var(--theme-main-color);
    background: transparent;
    outline: none;
    border: 0;
    align-items: center;
}


.sub-page-head button img {
    width: 25px;
    margin: -5px 0 0 0;
}

.sub-page-head span {
    display: flex;
    gap: 15px;
}


.section-title-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 25px 15px 20px;
    align-items: center;
}

.section-title-container button {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-size-h3);
    font-weight: 400;
    color: var(--text-color-paragraph);
    background: transparent;
    outline: none;
    border: 0;
}

.section-title-container h3 {
    font-weight: 900;
    font-size: var(--text-size-h2);
    line-height: 120%;
}





/* Modal slider container (initially hidden) */
.modal-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    background-color: #000000;
    z-index: 30;
}

.modal-slider.active {
    width: 100%;
    height: 100%;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 20;
    padding: 20px 30px;
    font-size: 35px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Time bar styling */
.time-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 15;
    padding: 8px;
}

.time-bar-progress {
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 10s linear;
    border-radius: 20px;
}

/* Modal Swiper slider */
.modal-swiper {
    width: 100%;
    height: 100%;
}

.modal-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Thumbnail slider styling */
.thumb-swiper {
    max-width: 1200px;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 10px;
    overflow: hidden;
}

.thumb-swiper .swiper-slide {
    width: 65px !important;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #615dff;
    padding: 3px;
    background: transparent;
    cursor: pointer;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumb-swiper .swiper-wrapper {
    height: auto;
}


.thumb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}








.profile-icon-box {
    display: flex;
    padding: 30px 30px;
    gap: 20px;
    align-items: center;
}


.profile-icon-box .profile-icon {
    padding: 10px;
    width: 40px;
    border-radius: 20px;
    background-color: #e1e1e1;
}


.profile-icon-box h3 {
    font-size: 16px;
}


.profile-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 30px;
}

.profile-item span {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}


.profile-item span img {
    width: 20px;
}

.profile-item.exit {
    background: #efefef;
    padding: 15px;
    margin: 10px 15px;
    border-radius: 10px;
}





.service-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    flex-direction: column;
}


.service-info h3 {
    font-size: 16px;
    font-weight: 900;
}



.service-ticket-swiper .swiper-slide .ticket-cut {
    height: 100%;
    object-fit: cover;
    margin: 0px 5px;
}


.service-ticket-swiper .swiper-slide .ticket-fake-barcode {
    height: 80%;
    object-fit: cover;
    filter: opacity(0.4);
}

.service-info h3 {
    font-size: 16px;
    width: 100%;
    font-weight: 900;
}

.ticket-info {
    width: 75%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-info p {
    font-size: 14px;
    font-weight: 200;
    text-align: end;
    margin: 0;
    padding: 0;
}

.ticket-info h3 {
    font-size: 16px;
}


.ticket-info .ticket-price {
    font-size: 16px;
    font-weight: bold;
}

.ticket-info .ticket-text {
    text-align: start;
}

.service-info img {
    background-color: #ddd;
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0px 0px 0px 20px;
    border: 0;
    border-radius: 10px;
}


.swiper-slide .ticket-adder {
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}


.swiper-slide .ticket-adder button,
.swiper-slide .ticket-adder input {
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 20px;
    border: 0;
    outline: none;
    border-radius: 10px;
    text-align: center;
}

.swiper-slide .ticket-adder button {
    background: transparent;
}

.service-description p {
    font-size: 14px;
    margin: 10px 25px;
}

.service-description span {
    font-size: 14px;
}












/******** THE GLIDER TAB *******/

.glider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 20px 50px 20px;
    position: fixed;
    z-index: 30;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 60%, rgba(0, 0, 0, 0) 100%);
}


.glider-tabs {
    display: flex;
    position: relative;
    background-color: #e8e8e8;
    padding: 5px;
    border-radius: 20px;
    direction: ltr;
    width: 100%;
    justify-content: space-between;
}

.glider-tabs * {
    z-index: 2;
}

input[type=radio] {
    display: none;
}

.glider-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: calc(50% - 0px);
    font-size: 14px;
    font-weight: 700;
    border-radius: 99px;
    overflow: hidden;
    color: #888;
    cursor: pointer;
    transition: color 0.15s ease-in;
}

input[type=radio]:checked+label {
    color: #fff;
    font-weight: bold;
}

input[id=glider-tab-1]:checked~.glider-slider {
    transform: translateX(0);
}

input[id=glider-tab-2]:checked~.glider-slider {
    transform: translateX(100%);
}

.glider-slider {
    position: absolute;
    display: flex;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background-color: var(--theme-main-color);
    z-index: 1;
    border-radius: 15px;
    transition: 0.2s ease-out;
}


/*********** GLIDER TAB END ***********/


.notfound-icon {
    width: 80px;
    margin: 150px auto 20px auto;
}


.panel-content {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}


















.wallet-card {
    background-color: #f9f9f9;
    border-radius: var(--radius-medium);
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wallet-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wallet-balance-amount {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.wallet-balance-currency {
    font-size: 16px;
    color: #666;
    margin-right: 5px;
}

.wallet-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-action-button {
    flex: 1;
    background-color: white;
    border: 1px solid #eee;
    border-radius: var(--radius-small);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-main-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.wallet-action-button img,
.wallet-action-button svg {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

.wallet-transactions {
    margin-top: 10px;
}

.wallet-transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.wallet-transaction-item:last-child {
    border-bottom: none;
}

.wallet-transaction-title {
    font-size: 14px;
    color: #333;
}

.wallet-transaction-amount {
    font-size: 14px;
    font-weight: 500;
}

.wallet-transaction-amount.negative {
    color: #ff3b30;
}

.wallet-transaction-amount.positive {
    color: #34c759;
}

.wallet-footer-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 20px;
}

.wallet-footer-button {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.wallet-footer-button.primary {
    background-color: var(--theme-main-color);
    color: white;
}

.wallet-footer-button.secondary {
    background-color: white;
    border: 1px solid #eee;
    color: var(--theme-main-color);
}

.wallet-footer-button img,
.wallet-footer-button svg {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}









.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.facility-tag {
    background-color: #e9e9e9;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--theme-dark-gray);
    display: inline-flex;
    align-items: center;
    border: 1px solid #eee;
}





.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
}

.contact-item * {
    font-size: 15px
}

.contact-item span {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}


.contact-item span img {
    width: 16px;
}






.btn-primary-cta {
    background-color: #4733fa;
    color: #fff;
    padding: 12px 24px;
    display: flex;
    gap: 10px;
    border-radius: 15px;
    border: 0;
    outline: 0;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 20px;
    font-size: 16px;
    align-items: center;
    font-weight: bold;
    z-index: 10;
    justify-content: center;
}


.btn-primary-cta img {
    width: 20px;
    filter: brightness(4);
}








.counter-container {
    padding: 20px;
    direction: rtl;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    /* background-color: #F8F8F8; */
    /* border-radius: 16px; */
    /* padding: 15px 20px; */
}

.counter-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: bold;
}

.counter-info p {
    margin: 0;
    font-size: 14px;
    color: #718096;
}

.counter-controls {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 5px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background-color: #3B82F6;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-value {
    font-size: 18px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-btn.decrease {
    background-color: #EDF2F7;
    color: #4A5568;
}

.divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 20px 0;
}

.ticket-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E2E8F0;
}








/* Calendar Styles (shared with accommodation) */
.calendar-container {
    padding: 20px;
    direction: rtl;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-nav {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #3B82F6;
}

.days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
    background-color: #EDF2F7;
    border-radius: 8px;
    padding: 8px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.day {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.day:hover {
    background-color: #EDF2F7;
}

.day.selected {
    background-color: #3B82F6;
    color: white;
}

.day.range {
    background-color: #BFDBFE;
}

.day.disabled {
    color: #CBD5E0;
    cursor: not-allowed;
}

.selected-dates {
    text-align: center;
    margin: 30px 0 15px 0;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
}

.selected-dates * {
    font-size: 16px;
}

/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E2E8F0;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #3B82F6;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Driver Option Styles */
.driver-option {
    margin-bottom: 20px;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.option-label h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.driver-fee {
    margin: 0;
    font-size: 14px;
    color: #718096;
}

.time-selection {
    /* background-color: #F7FAFC; */
    border-radius: 8px;
    /* padding: 15px; */
    margin-top: 15px;
}

.time-selection.hidden {
    display: none;
}

.time-range {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.time-input {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
}

.time-input label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #718096;
}

.time-input select {
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
}

.time-display {
    text-align: center;
    font-weight: bold;
    margin: 10px 0 0 0;
}

/* Total Summary Styles */
.total-summary,
.ticket-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 15px;
    box-shadow: 0 -4px 20px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.total-price {
    font-weight: bold;
    font-size: 18px;
}

.purchase-btn {
    padding: 12px 20px;
}



.ticket-selection {
    margin: 20px 0;
}


.ticket-selection * {
    font-size: 16px;
    font-weight: bold;
}


.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ticket-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.clear-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.clear-btn img {
    width: 20px;
    height: 20px;
}


.total-section {
    display: flex;
    flex-direction: column;
}

.total-label {
    font-size: 14px;
    color: #666;
}

.total-price {
    font-weight: bold;
}

.price-value {
    font-size: 20px;
}

.purchase-btn {
    background-color: var(--theme-main-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.purchase-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}









.counter-container,
.guest-room-selection {
    direction: rtl;
}

.counter-row,
.selection-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.counter-info h3,
.selection-label h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
}

.counter-info p,
.selection-label p {
    margin: 0;
    font-size: 14px;
    color: #718096;
}

.counter-controls,
.counter-control {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 5px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background-color: #3B82F6;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-value,
#guest-count,
#room-count {
    font-size: 18px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-btn.decrease {
    background-color: #EDF2F7;
    color: #4A5568;
}



.faq-section {
    padding: 0 20px 30px 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: right;
}

.faq-container {
    margin: 0 auto;
}

.faq-item {
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    /* margin-bottom: 10px; */
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    background-color: #f8f9fa;
    cursor: pointer;
}

.faq-answer *,
faq-answer {
    margin: 0;
    font-size: 14px;
    color: #4c4c4c;
    font-weight: 500;
}


.faq-toggle {
    font-size: 1.5rem;
    color: #464646;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 500px;
}











































/* Map styling */
#map {
    height: 100%;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    position: fixed;
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

/* Driving mode specific styles */
#map.driving-mode .mapboxgl-user-location-dot {
    width: 50px !important;
    height: 50px !important;
    background-image: url(assets/icon/nav.png) !important;
    filter: hue-rotate(230deg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
    box-shadow: none !important;
    background-color: transparent;
    border-radius: 0 !important;
}

#map.driving-mode .mapboxgl-user-location-dot::after {
    display: none !important;
}

#map.driving-mode .mapboxgl-user-location-dot::before {
    display: none !important;
}


/* Search bar container */
#search-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 30;
    text-align: center;
}

#search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px;
    font-size: 14px;
}

.mapboxgl-ctrl-attrib.mapboxgl-compact {
    display: none
}

#search-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0px 15px;
    display: flex;
}

/* Filter buttons container (separate from search container) */
#filter-container {
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 29;
    padding: 20px 15px;
    overflow-x: hidden;
    white-space: nowrap;
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 20px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

/* Card container for search results (stage 2) */
#card-container {
    display: none;
    /* hidden in stage 1 */
    position: static;
    bottom: 0;
    width: 500px;
    margin: auto;
    overflow: hidden;
    z-index: 10;
}

#filter-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: auto;
    padding: 8px 10px;
}

#filter-container * {
    font-size: 12px;
}


.swiper-slide-active {
    transform: translateY(0);
}

#card-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    width: auto;
}


.store-card {
    width: 100%;
    height: 142px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px #d7d7d7 solid;
    display: flex;
    gap: 0;
    flex-direction: row-reverse;
    padding: 5px;
    justify-content: space-between;
}

.store-photo {
    width: 110px;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
}

.store-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.store-hours {
    font-size: 14px;
    color: #666;
}

.store-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 8px;
    justify-content: flex-start;
}

.direction-btn,
.service-link {
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 30px;
    justify-content: center;
}

/* Marker styling */
.custom-marker {
    width: 55px;
    aspect-ratio: 1;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    transition: border 0.3s ease-in-out;
}

.custom-marker.active {
    border: 3px solid #007aff;
    transform: scale(1.2);
}


.mapboxgl-ctrl-top-right {
    top: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

/* Navigation top bar styles */
#navigation-top-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 10px;
    height: auto;
    background: #1e88e5;
    color: white;
    padding: 20px;
    z-index: 40;
    display: none;
    flex-direction: column;
    border-radius: 20px;
}

#navigation-top-bar.visible {
    display: flex;
}

.navigation-main-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.turn-indicator {
    width: 32px;
    height: 32px;
    margin-left: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border-radius: 50%;
    padding: 6px;
}

.next-instruction {
    flex: 1;
    font-size: 24px;
    font-weight: 500;
}

.navigation-secondary-info {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.distance-remaining,
.time-remaining {
    font-size: 14px;
    opacity: 0.9;
}

/* Bottom navigation info bar */
#navigation-info-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 10px;
    background: white;
    padding: 15px 20px;
    z-index: 40;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.route-info {
    flex: 1;
}

.distance,
.duration {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

/* Navigation state styles */
#navigation-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 15px;
    z-index: 40;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#navigation-container.visible {
    transform: translateY(0);
}

.direction-btn {
    background: #e7e7e7;
    color: #4733fa;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    padding: 10px;
}


/* Navigation modal styles */
#navigation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 50;
    padding: 20px;
}

#navigation-modal.visible {
    display: block;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.navigation-steps {
    margin-top: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 10px;
}

.step-icon {
    margin-left: 10px;
    font-size: 20px;
}

.step-text {
    flex: 1;
}

/* User location marker styles */
.user-location-marker {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    display: none;
    /* Hide by default */
}

.user-location-marker.driving-mode {
    width: 60px;
    height: 60px;
    background-image: url('nav.png');
    transform-origin: center bottom;
    display: block;
    /* Show only in driving mode */
    transform: translateY(-50%) scale(1.2);
    /* Adjust the vertical position and size */
}

/* Back button styles */
.back-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 41;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.back-button.visible {
    display: flex;
}


.filter-btn {
    display: flex;
    align-items: center;
    padding: 8px 12px;
}

.filter-btn .filter-icon {
    width: 16px;
    margin-left: 6px;
    filter: contrast(0) brightness(1.2);
}


.mapboxgl-ctrl-group {
    background: #fff;
    border-radius: 15px;
    padding: 6px;
}

.mapboxgl-ctrl-group:not(:empty) {
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
}


.mapboxgl-ctrl-group button+button {
    border-top: 0;
}

.mapboxgl-ctrl button:not(:disabled):hover {
    background-color: rgb(0 0 0 / 0%);
}





















/**     desktop warning     **/


.desktop-warning {
    display: none;
    height: 100%;
    width: 100%;
    background: #fff;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    z-index: 100;
    position: fixed;
}

.desktop-warning h1 {
    font-size: 2rem;
    color: #333;
}

.desktop-warning p {
    font-size: 1.2rem;
    color: #666;
}

.fake-map-image {
    width: calc(100% - 40px);
    height: 100px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    margin: 0px 20px;
    object-fit: cover;
}

/* Gallery Swiper Styles */
.gallery-thumbs-swiper {
    margin-top: 15px;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.gallery-thumbs-swiper .swiper-wrapper {
    align-items: center;
}

.gallery-thumbs-swiper .swiper-slide {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumb-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active .thumb-image {
    border-color: #3B5BF4;
}

.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Desktop only elements */
.desktop-only {
    display: none;
}



.comming-soon-item-btn {
    background: #6756ff;
    color: #ffffff;
    border: 0px solid #000;
    border-radius: 20px;
    padding: 2px 5px;
    font-size: 8px;
    position: absolute;
    transform: translate(-15px, -35px);
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

/* Support Modal */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.support-modal.active {
    opacity: 1;
    visibility: visible;
}

.support-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.support-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    overflow: hidden;
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.support-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.support-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.support-close:hover {
    background: #e9ecef;
    color: #333;
}

.support-content {
    padding: 24px;
}

.support-content p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.support-action:hover {
    background: #4733fa;
    color: white;
    border-color: #4733fa;
}


.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
    display: none !important;
}




.desktop-static-container{
display: flex !important  ;
flex-direction: column;
flex-direction: row;
gap: 20px;
padding: 0 10px;
max-width: 1200px;
margin: 0 auto;
}

.desktop-static-container img{
    width: 100%;
    border-radius: 20px;
}

/* Desktop App Download Section */
.desktop-app-download {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5px;
}

.app-download-container {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    border: 2px solid #e5e5e5;
}

.app-download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.app-download-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-download-image img {
    max-width: 200px;
    height: 100%;
    margin: 30px 20px 0 0;
    object-fit: contain;
}

.app-download-text {
    flex: 1;
    padding: 30px 0px;
}

.app-download-text h2 {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    /* margin: 0 0 10px 0; */
}

.app-download-text p {
    font-size: 16px;
    color: #666;
    /* margin: 0 0 20px 0; */
    line-height: 1.5;
}

.download-links {
    margin-top: 20px;
}

.download-link {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 0 10px 10px 0;
    transition: background-color 0.2s ease;
}

.download-link:hover {
    background: #4733fa;
    text-decoration: none;
}

.platform-info {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.app-download-qr {
    text-align: center;
    flex-shrink: 0;
    margin: 0 60px;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    overflow: hidden;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-download-qr p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Desktop FAQ Section */
.desktop-faq {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-container {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #e5e5e5;
}

.faq-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: unset;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Desktop SEO Text Section */
.desktop-seo-text {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.seo-text-container {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #e5e5e5;
}

.seo-text-content {
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.seo-text-content.expanded {
    max-height: none;
}

.seo-text-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.seo-text-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.seo-text-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    color: #4733fa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 0 0 0;
    margin: 0 auto;
    width: 100%;
}

.seo-text-toggle:hover {
    color: #3a2abf;
}

.toggle-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.seo-text-toggle.expanded .toggle-arrow {
    transform: rotate(180deg);
}




@media (min-width: 500px) {
    
.desktop-view{
    display: block;
}

    .desktop-warning {
        display: flex;
    }

    .section-title-container {
        margin: 20px auto;
        max-width: 1200px;
    }

    .service-swiper {
        padding: 0px 0px 10px 20px;
        overflow: hidden;
        margin: 20px auto;
        max-width: 1200px;

        mask: linear-gradient(270deg, rgba(255, 255, 255, 1) 90%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask: linear-gradient(270deg, rgba(255, 255, 255, 1) 90%, rgba(0, 0, 0, 0) 100%);
    }

    .service-swiper .swiper-slide {
        width: 270px;
    }

    .service-swiper .swiper-slide img {
        width: 100%;
        height: 170px;
    }

    .section-title-container h3 {
        font-size: 18px;
    }

    .service-swiper .swiper-slide span {
        padding: 5px 0px;
    }

    .banner {
        margin: 0px;
    }

    .service-page-container {
        display: block;
    }

    .service-page-slider,
    .service-page-content {
        flex: none;
        max-width: none;
        position: static;
    }

    .service-page-container .gallery-single-swiper {
        height: 40vh;
        border-radius: 0 0 20px 20px;
        margin: 0 0 30px 0;
    }


    .service-page-container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
        padding: 20px;
        align-items: flex-start;
    }

    /* Left side - Image slider */
    .service-page-slider {
        flex: 1;
        max-width: 500px;
        position: sticky;
        top: 20px;
    }

    /* Right side - Content */
    .service-page-content {
        flex: 1;
        min-width: 0;
        /* Prevents flex item from overflowing */
    }

    /* Adjust gallery slider for desktop */
    .service-page-container .gallery-single-swiper {
        height: 400px;
        border-radius: 15px;
        margin: 0;
    }

    /* Adjust section title container for desktop */
    .service-page-container .section-title-container {
        margin: 20px 0 15px 0;
        max-width: none;
    }

    /* Adjust service sections for desktop */
    .service-page-container .service-ticket-swiper,
    .service-page-container .car-display-section,
    .service-page-container .room-display-section {
        margin: 20px 0;
    }

    /* Adjust swiper padding for desktop service page */
    .service-page-container .service-ticket-swiper,
    .service-page-container .car-display-swiper,
    .service-page-container .room-display-swiper {
        padding: 0;
    }

    /* Service description adjustments */
    .service-page-container .service-description {
        padding: 0;
        margin: 20px 0;
    }

    /* Details section adjustments */
    .service-page-container .details-section {
        padding: 0;
        margin: 20px 0;
    }

    /* Purchase button adjustments */
    .service-page-container .btn-primary-cta {
        margin: 20px auto;
        width: 100%;
        max-width: 400px;
        display: block;
    }

    /* Facilities section adjustments */
    .service-page-container .facilities-section {
        padding: 0;
        margin: 20px 0;
    }

    /* FAQ section adjustments */
    .service-page-container .faq-section {
        padding: 0;
        margin: 20px 0;
    }

    /* Similar places section - spans full width */
    .similar-places-section {
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 0 20px;
    }

    .similar-places-section .section-title-container {
        margin: 20px 0 15px 0;
        max-width: none;
    }

    .service-description p {
        font-size: 14px;
        margin: 10px 0px;
    }

    .service-page-container .btn-primary-cta {
        margin: 20px 0;
        width: auto;
        padding: 15px 30px;
        max-width: 400px;
        display: flex;
        position: static;
    }

    .contact-item {
        padding: 10px 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }


    .fake-map-image {
        margin: 0px;
        width: 100%;
    }

    .ticket-card {
        width: 32% !important;
        background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
        border-left: none;
        border-right: none;
        border-radius: 15px;
        min-width: 30%;
        padding: 20px;
        direction: rtl;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .glider-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        position: unset;
        max-width: 400px;
        margin: auto;
        padding: 0;
        z-index: 30;
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .orders-panel {
        display: flex;
        gap: 16px;
        padding: 30px 50px !important;
        width: 1200px;
        justify-items: center;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        margin: 0 auto;
    }

    #search-container {
        position: unset;
        width: 100%;
        text-align: center;
        max-width: 1000px;
        margin: auto;
    }

    #search-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        background: #f3f3f3;
        border-radius: 15px;
        box-shadow: unset;
    }

    #filter-container {
        position: unset;
        width: 100%;
        max-width: 1000px;
        margin: auto;
        padding: 20px 0px 0px 0px;
        overflow-x: hidden;
        white-space: nowrap;
    }

    #filter-container .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f3f3f3;
        border-radius: 15px;
        box-shadow: unset;
        transition: transform 0.3s ease-in-out;
        width: auto;
        padding: 10px 15px;
    }

    /* Map styling */
    #map {
        height: 100vh;
        width: 100vw;
        max-height: 400px;
        max-width: 1000px;
        margin: 20px auto;
        border-radius: 20px;
        position: relative;
        mask: linear-gradient(0deg, rgb(255 255 255) 20%, rgb(0 0 0) 100%);
    }

    .sub-page-head {
        display: flex;
        align-items: center;
        max-width: 1200px;
        margin: auto;
    }

    .sub-page-head span {
        display: none;
    }
    
    .sub-page-head button{
        display: flex;
            gap: 30px;
            font-size: 18px;
            font-weight: 900;
            color: #7a7a7a;
            background: transparent;
            outline: none;
            border: 0;
            align-items: center;
    }

    .sub-page-head button img {
        width: 30px;
        margin: -5px 0 0 0;
        filter: grayscale(1);
    }

.static-banner {
    display: none;
}

        .service-page-container {
            gap: 30px;
            padding: 15px;
        }

        .service-page-slider {
            max-width: 450px;
        }

        .service-page-container .gallery-single-swiper {
            height: 350px;
        }

        .service-page-container {
            gap: 50px;
            padding: 30px;
        }

        .service-page-slider {
            max-width: 550px;
        }

        .service-page-container .gallery-single-swiper {
            height: 420px;
        }



        .gallery-thumbs-swiper {
            display: block;
        }

        /* Swiper navigation buttons */
        .swiper-button-next,
        .swiper-button-prev {
            color: #3B5BF4;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-top: -20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 16px;
            font-weight: bold;
        }


        .service-info h3 {
            font-size: 22px !important;
            width: 100%;
            font-weight: 900;
        }
        .survey-swiper{
            height: auto !important;
        }

        .results-container {
            padding: 20px;
            max-width: 1000px;
            margin: auto;
            min-height: calc(100vh - 120px);
        }
    }

    @media (max-width: 767px) {
        .gallery-thumbs-swiper {
            display: none;
        }
    }

    /* Full-Screen Image Modal */
    .image-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        text-align: center;
    }

    .modal-content img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .close-modal {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
        z-index: 1001;
    }

    .close-modal:hover {
        color: #3B5BF4;
    }

    .modal-navigation {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .modal-nav-btn {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        padding: 15px 20px;
        font-size: 24px;
        cursor: pointer;
        border-radius: 50%;
        transition: all 0.3s ease;
        pointer-events: all;
        backdrop-filter: blur(10px);
    }

    .modal-nav-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .modal-counter {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 16px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }


    /* Mobile modal adjustments */
    @media (max-width: 768px) {
        .modal-content {
            max-width: 95%;
            max-height: 95%;
        }

        .close-modal {
            top: -50px;
            font-size: 30px;
        }

        .modal-nav-btn {
            padding: 12px 16px;
            font-size: 20px;
        }

        .modal-counter {
            bottom: -50px;
            font-size: 14px;
        }
    }
