@charset "utf-8";

:root {
    --header-bg: #fff;
    --header-color: #333;
    --icon-search-small: url(/images/icon-search-small.png);
    --border-header-bg: #1e1e1e;
    --footer-bg: #f0f0f0;
    --footer-text: #555;
    --type_light: #fff;
    --type_light_color: #000;
    --type_light_border: #d9d9d9;
    --type_light_content_bg: #00000008;
    --type_light_content_bg_hover: #d9d9d9;
    --type_light_content_color: #4d4d4d;
    --type_light_color_2: #141414;
    --type_dark: #111;
    --type_dark_color: #fff;
    --button_standard_bg: #e63;
    --button_standard_hover: #f83;
    --bg-dark: #F5F5F7;
    --bg-card: #FFFFFF;
    --bg-card-2: #F5F5F7;
    --border: rgba(0, 0, 0, 0.09);
    --text-muted: #8A8C90;
}

.accordion-button {
    --bs-accordion-active-bg: var(--orange);
    --bs-accordion-active-color: black;
    --bs-accordion-btn-focus-border-color: orange;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem var(--orange-8);
}

.mapouter {
    position: relative;
    text-align: right;
    height: 400px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    height: 400px;
    width: 100%;
    background: none !important;
}

#topnavbar {
    position: fixed;
    z-index: 999;
    height: 64px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    background-color: black;
}

#topnavbar .logo {
    height: 100%;
}

#topnavbar img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#navbar-content {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

#anchor-wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.5vw;
}

#anchor-wrap a {
    width: fit-content;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.menulist-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3.5vw, 56px);
    flex-wrap: wrap;
    padding: 0 16px;
    flex: 1;
}

.menulist-welcome a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    transition: color 0.15s;
    white-space: nowrap;
}

#button-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

#button-wrap button.bordered-btn,
#button-wrap button.solid-btn {
    height: fit-content;
    width: fit-content;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.2vw 1vw;
}

#button-wrap button.bordered-btn {
    background-color: white;
    border: 2px solid var(--orange);
    color: var(--orange);
}

#button-wrap button.solid-btn {
    background-color: var(--orange);
    border: none;
    color: white;
}

#button-wrap button.bordered-btn a {
    text-decoration: none;
    color: var(--orange);
}

#button-wrap button.solid-btn a {
    text-decoration: none;
    color: white;
}

#button-wrap .avatar-wrap {
    position: relative;
    display: inline-block;
}

.avatar-btn {
    border: 2px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 0px;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.15s, transform 0.08s, border-color 0.15s;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 6px;
}

.avatar-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 12px;
}

.avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    -webkit-user-drag: none;
}

.avatar-menu {
    display: none;
    position: absolute;
    right: 0px;
    top: calc(100% + 8px);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 18px;
    border-radius: 6px;
    min-width: 160px;
    padding: 8px 0px;
    z-index: 1000;
}

.avatar-menu li {
    list-style: none;
    padding: 0px;
}

.avatar-menu a,
.avatar-menu .logout-btn {
    display: block;
    padding: 8px 14px;
    color: rgb(34, 34, 34);
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.avatar-menu a:hover,
.avatar-menu .logout-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

.avatar-wrap.open .avatar-menu {
    display: block;
}

.avatar-menu a {
    color: inherit;
}

.access-banner-top {
    background: #F5F5F7;
    padding-top: 64px;
}

.welcome-logo {
    max-width: 35%;
}

.welcome-logo img {
    width: 100%;
    object-fit: fill;
}

#banner-slider {
    width: 65%;
}

.carousel-dashboard .owl-stage-outer {
    text-align: center !important;
}

.owl-stage {
    transition: 0.25s;
    width: 65vw;
}

.carousel-dashboard img.item {
    width: clamp(100px, 65vw, 2336px);
    aspect-ratio: 16 / 9;
    object-fit: fill;
    display: block;
}

.carousel-dashboard .owl-dots {
    color: var(--header-color);
    z-index: 1000;
    position: relative;
    margin-top: -30px !important;
}

.slogan1 {
    color: rgb(238, 104, 31);
    font-weight: bold;
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.slogan2 {
    background-color: transparent;
    border-radius: 5px;
    width: 30%;
}

.access-banner {
    background: #F5F5F7;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    color: #222222;
}

.access-inner {
    max-width: 1100px;
    margin: 0px auto;
}

.access-inner > p.section-label {
    margin-bottom: 10px;
}

.access-inner > h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.section-label {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.access-intro {
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 44px;
    line-height: 1.7;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.access-card {
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}

.access-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 4px;
    opacity: 1;
    transition: height 0.18s;
}

.dealer-card {
    background: #FFFAF5;
    border-color: rgba(238, 104, 31, 0.3);
    border-left: 4px solid #EE681F;
}

.dealer-card::before {
    background: linear-gradient(90deg, #EE681F 0%, rgba(238, 104, 31, 0.15) 100%);
}

.public-card {
    background: #F2F7FF;
    border-color: rgba(59, 130, 246, 0.3);
    border-left: 4px solid #3B82F6;
}

.public-card::before {
    background: linear-gradient(90deg, #3B82F6 0%, rgba(59, 130, 246, 0.15) 100%);
}

.access-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.access-card:hover {
    border-color: rgba(244, 151, 44, 0.4);
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 16px 40px;
}

.access-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.access-card p {
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.access-card ul {
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.85;
    padding-left: 18px;
    margin-bottom: 22px;
}

.badge-dealer {
    background: rgba(244, 151, 44, 0.15);
    color: var(--orange);
    border: 1px solid rgba(244, 151, 44, 0.3);
}

.badge-public {
    background: rgba(80, 180, 120, 0.15);
    color: rgb(93, 184, 122);
    border: 1px solid rgba(80, 180, 120, 0.3);
}

.access-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: Arial, sans-serif;
    margin-bottom: 14px;
}

.access-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.access-cta-link:hover {
    color: rgb(255, 176, 87);
}

.cta-banner {
    background: #FFFFFF;
    border-top: 1px solid var(--border);
    padding: 70px 24px;
    text-align: center;
    color: #000;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 14px;
}

.cta-banner p {
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    max-width: 520px;
    margin: 0px auto 30px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--orange);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 28px;
    padding: 13px 34px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    font-family: Arial, sans-serif;
}

.cta-btn-secondary {
    background: transparent;
    color: #222222;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: 28px;
    padding: 13px 34px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
    font-family: Arial, sans-serif;
}

.ftco-footer {
    animation: 15s ease 0s infinite normal none running gradient;
    min-height: 60px;
    margin-top: auto;
    font-size: 12px;
    background-color: #F5F5F7;
    display: block !important;
    padding: 0.5vw !important;
}

/* 8K screens (up to 7680px) */
@media screen and (max-width: 7680px) {
    .welcome-logo {
        max-width: 39%;
    }
    .welcome-logo img {
        height: 50vh;
    }

    #banner-slider {
        width: 61%;
    }

    .carousel-dashboard img.item {
        height: 50vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}

/* 5K screens (up to 5120px) */
@media screen and (max-width: 5120px) {
    .welcome-logo {
        max-width: 39%;
    }
    .welcome-logo img {
        height: 50vh;
    }

    #banner-slider {
        width: 61%;
    }

    .carousel-dashboard img.item {
        height: 50vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}

@media screen and (max-width: 3840px) {
    .welcome-logo {
        max-width: 39%;
    }
    .welcome-logo img {
        height: 50vh;
    }

    #banner-slider {
        width: 61%;
    }

    .carousel-dashboard img.item {
        height: 50vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}


@media screen and (max-width: 2560px) {
    .welcome-logo {
        max-width: 39%;
    }
    .welcome-logo img {
        height: 40vh;
    }

    #banner-slider {
        width: 61%;
    }

    .carousel-dashboard img.item {
        height: 40vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}

@media screen and (max-width: 1920px) {
    .welcome-logo img {
        height: 40vh;
    }

    .carousel-dashboard img.item {
        height: 40vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
    
}

@media screen and (max-width: 1399px) {
    .welcome-logo img {
        height: 40vh;
    }

    .carousel-dashboard img.item {
        height: 40vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}

@media screen and (max-width: 1199px) {
    .welcome-logo img {
        height: 40vh;
    }

    .carousel-dashboard img.item {
        height: 40vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .welcome-logo img {
        height: 40vh;
    }

    .carousel-dashboard img.item {
        height: 40vh;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}

@media (max-width: 767px) {

    .welcome-logo {
        max-width: 100%;
        transform: translate3d(0, 0px, 0px);
    }

    .welcome-logo img {
        height: auto;
    }

    #banner-slider {
        width: 100%;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }


    .carousel-dashboard .owl-stage-outer {
        text-align: center !important;
    }

    .owl-stage {
        transition: 0.25s;
        width: 100%;
    }

    .carousel-dashboard img.item {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: fill;
        display: block;
    }
}