:root {
    --brand: #0b867a;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
        Cantarell, "Noto Sans", Arial, "Apple Color Emoji", "Segoe UI Emoji",
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

a:hover,
a:focus {
    color: var(--brand);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 16px;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: grid;
    place-items: center;
    z-index: 9999;
}

#preloader .loader {
    width: min(480px, 90vw);
    text-align: center;
    padding: 0 16px;
}

#preloader .brand {
    font-weight: 900;
    color: var(--brand);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    text-transform: capitalize;
}

#preloader .progress {
    position: relative;
    height: 8px;
    background: #e6e9ef;
    border-radius: 0;
    overflow: visible;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

#preloader .progress .bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-radius: 0;
    background: linear-gradient(90deg, var(--brand), #0aa090 60%);
    transition: width 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#preloader .progress .bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    animation: bar-sheen 1.2s linear infinite;
}

@keyframes bar-sheen {
    to {
        transform: translateX(100%);
    }
}

#preloader .pct {
    display: block;
    margin-top: 8px;
    font-weight: 800;
    color: #475569;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

#preloader.is-done {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    #preloader .progress .bar {
        transition: none;
    }
    #preloader .progress .bar::after {
        animation: none;
    }
}

.site-header {
    width: 100%;
    background: #fff;
    color: #111;
}

.topbar {
    background: var(--brand);
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.topbar .social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.topbar .social i {
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

.menubar {
    border-top: 1px solid #f1f3f5;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    z-index: 2000;
    transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.menubar,
.menubar *,
.topbar,
.topbar * {
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.menubar .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 94px;
    position: relative;
    transition: min-height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 58px;
    width: auto;
    display: block;
    transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#navCheck {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    border: none;
    border-radius: 0;
    height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor !important;
    margin: 4px 0;
}

.nav-panel {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 1.35rem 1.25rem;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    text-decoration: none;
    color: #111;
    transition: color 0.15s ease,
        background 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.nav-link.is-active,
.nav-item.active > .nav-link {
    color: var(--brand) !important;
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 50;
    padding: 0.35rem 0;
    list-style: none;
}

.nav-item:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    width: 100%;
}

.nav-dropdown-link {
    display: block;
    padding: 0.7rem 1rem;
    color: #111;
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus,
.nav-dropdown-link:active {
    color: var(--brand);
    background: #f7f9fa;
}

.cta-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--brand);
    color: #fff !important;
    padding-inline: 28px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-left: 10px;
    height: 94px;
    transition: background 0.2s ease,
        height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-book:hover,
.cta-book:focus {
    filter: brightness(0.95);
    color: #fff !important;
}

.menubar.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 38px;
    background: transparent;
    border-color: transparent;
}

.menubar.overlay .nav-link {
    color: #fff;
}

.menubar.overlay .nav-dropdown {
    background: rgba(17, 17, 17, 0.94);
    border: none;
}

.menubar.overlay .nav-dropdown-link {
    color: #fff;
}

.menubar.overlay .nav-dropdown-link:hover {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.06);
}

.menubar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.94);
    border-color: transparent;
    z-index: 2000;
}

.menubar.is-sticky .wrap {
    min-height: 74px;
}

.menubar.is-sticky .nav-link {
    color: #fff;
}

.menubar.is-sticky .logo img {
    height: 46px;
}

.menubar.is-sticky .cta-book {
    height: 74px;
}

.menubar.overlay .menu-toggle span,
.menubar.is-sticky .menu-toggle span {
    background: #fff !important;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: inline-flex;
    }

    .logo img {
        height: 46px;
    }

    .menubar {
        position: sticky;
        top: 0;
        background: rgba(17, 17, 17, 0.94);
        border-color: transparent;
        z-index: 2000;
    }

    .menubar .menu-toggle {
        color: #fff;
    }

    .nav-panel {
        margin-left: 0;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 1003;
    }

    .nav-panel {
        position: fixed;
        top: 10vh;
        left: 0;
        height: 80vh;
        width: min(72vw, 360px);
        background: var(--brand);
        border-radius: 12px;
        box-shadow: 20px 0 50px rgba(15, 23, 42, 0.35);
        transform: translateX(-110%);
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1004;
        display: block;
        overflow: hidden;
    }

    .nav-panel .nav {
        display: block;
        height: 100%;
        overflow: auto;
        padding: 18px 18px;
    }

    .nav-link {
        padding: 14px 4px !important;
        width: 100%;
        font-weight: 800;
        color: #fff !important;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .nav-link.is-active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.18) !important;
        border-left: 3px solid #fff !important;
        padding-left: 10px !important;
    }

    .nav-dropdown {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        border-radius: 8px;
        box-shadow: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.08);
    }

    .nav-dropdown-link {
        padding: 10px 10px;
        color: #fff !important;
    }

    .nav-dropdown-link:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .drawer-close {
        position: absolute;
        top: 10px;
        right: 10px;
        height: 38px;
        width: 38px;
        border: none;
        background: rgba(255, 255, 255, 0.12);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
        z-index: 2;
    }

    .drawer-close span {
        position: absolute;
        display: block;
        width: 20px;
        height: 2px;
        background: #fff !important;
        transform-origin: center;
    }

    .drawer-close span:first-child {
        transform: rotate(45deg);
    }

    .drawer-close span:last-child {
        transform: rotate(-45deg);
    }

    #navCheck:checked ~ .wrap .nav-panel {
        transform: translateX(0);
    }

    #navCheck:checked ~ .wrap .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .cta-book.desktop {
        display: none;
    }

    .cta-book.mobile {
        display: flex;
        width: 100%;
        height: 48px;
        margin: 12px 18px 6px;
        border-radius: 8px;
    }
}

/* Sliders */
.slider-hero {
    position: relative;
    z-index: 0;
}

.slider-hero .section-lg {
    position: relative;
    min-height: 88vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-hero .section-lg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.25)
    );
    z-index: 0;
}

.slider-hero .section-lg::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.12);
    z-index: 0;
}

.slider-hero .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.slider-hero:hover .owl-nav {
    opacity: 1;
    pointer-events: auto;
}

.slider-hero .owl-nav button.owl-prev,
.slider-hero .owl-nav button.owl-next {
    position: relative;
    width: 72px;
    height: 72px;
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.slider-hero .owl-nav button.owl-prev::before,
.slider-hero .owl-nav button.owl-prev::after,
.slider-hero .owl-nav button.owl-next::before,
.slider-hero .owl-nav button.owl-next::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 4px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 2px;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-hero .owl-nav button.owl-prev::before,
.slider-hero .owl-nav button.owl-prev::after {
    left: calc(50% - 2px);
    top: 50%;
    transform-origin: left center;
}

.slider-hero .owl-nav button.owl-prev::before {
    transform: translateY(-50%) rotate(-45deg);
}

.slider-hero .owl-nav button.owl-prev::after {
    transform: translateY(-50%) rotate(45deg);
}

.slider-hero .owl-nav button.owl-prev:hover::before {
    transform: translateY(-50%) rotate(-60deg);
}

.slider-hero .owl-nav button.owl-prev:hover::after {
    transform: translateY(-50%) rotate(60deg);
}

.slider-hero .owl-nav button.owl-next::before,
.slider-hero .owl-nav button.owl-next::after {
    right: calc(50% - 2px);
    top: 50%;
    transform-origin: right center;
}

.slider-hero .owl-nav button.owl-next::before {
    transform: translateY(-50%) rotate(45deg);
}

.slider-hero .owl-nav button.owl-next::after {
    transform: translateY(-50%) rotate(-45deg);
}

.slider-hero .owl-nav button.owl-next:hover::before {
    transform: translateY(-50%) rotate(60deg);
}

.slider-hero .owl-nav button.owl-next:hover::after {
    transform: translateY(-50%) rotate(-60deg);
}

@media (max-width: 576px) {
    .slider-hero .owl-nav button.owl-prev,
    .slider-hero .owl-nav button.owl-next {
        width: 56px;
        height: 56px;
    }

    .slider-hero .owl-nav button.owl-prev::before,
    .slider-hero .owl-nav button.owl-prev::after,
    .slider-hero .owl-nav button.owl-next::before,
    .slider-hero .owl-nav button.owl-next::after {
        width: 28px;
        height: 3px;
    }
}

.slider-hero .owl-nav button.owl-prev::before,
.slider-hero .owl-nav button.owl-prev::after,
.slider-hero .owl-nav button.owl-next::before,
.slider-hero .owl-nav button.owl-next::after {
    background: #bbbec0;
}

.slider-hero .owl-nav button.owl-prev:hover::before {
    transform: translateY(-50%) rotate(-30deg);
}

.slider-hero .owl-nav button.owl-prev:hover::after {
    transform: translateY(-50%) rotate(30deg);
}

.slider-hero .owl-nav button.owl-next:hover::before {
    transform: translateY(-50%) rotate(30deg);
}

.slider-hero .owl-nav button.owl-next:hover::after {
    transform: translateY(-50%) rotate(-30deg);
}

.hero-center {
    position: relative;
    text-align: center;
    max-width: 980px;
    padding-inline: 16px;
    z-index: 1;
}

.hero-center,
.hero-center * {
    text-shadow: none;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
}

.hero-title .accent {
    color: #ff5a1f;
}

.hero-sub {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.3;
}

.hero-cta {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 0;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.02rem;
    border: 2px solid var(--brand);
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.hero-cta:hover,
.hero-cta:focus {
    background: var(--brand);
    color: #fff !important;
    transform: translateY(-1px);
}

.owl-dots-overlay .owl-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
}

.features-wrap {
    position: relative;
    z-index: 1;
    background: #fff;
}

.features-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    border-top: 1px solid #eef2f5;
    border-bottom: 1px solid #eef2f5;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 10px;
    transition: transform 0.18s, box-shadow 0.18s;
    background: #fff;
}

.feature-item img {
    width: 64px;
    height: 64px;
    display: block;
}

.feature-item span {
    margin-top: 10px;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    color: #3b4047;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

@media (max-width: 1200px) {
    .feature-item img {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 992px) {
    .features-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .features-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.leaders {
    position: relative;
    background: #fff;
    padding-block: 84px;
}

.leaders .grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.leaders .title {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 900;
    color: #3b4047;
    margin: 0;
}

.leaders .rule {
    width: 64px;
    height: 6px;
    background: var(--brand);
    margin: 18px 0 22px;
}

.leaders .desc {
    color: #4b5563;
    font-size: 1.22rem;
    line-height: 1.85;
    max-width: 760px;
}

.leaders .art {
    position: relative;
}

.leaders .art::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -40px;
    top: -40px;
    background: radial-gradient(
        closest-side,
        rgba(2, 6, 23, 0.06),
        rgba(2, 6, 23, 0) 70%
    );
    z-index: 0;
    pointer-events: none;
}

.leaders .art img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .leaders .title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .leaders {
        padding-block: 60px;
    }

    .leaders .grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .leaders .art::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

.split {
    padding-block: 70px;
    background: #fff;
}

.split.whitesmoke {
    background: #f5f5f5;
}

.split.dim {
    background: #f6f8fa;
}

.split .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split .img,
.split .video {
    width: 100%;
}

.split .img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.split .video .plyr {
    width: 100%;
    height: 560px;
    max-width: 100%;
}

.split .video .plyr video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.split .content {
    max-width: 740px;
}

.split .title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.split .accent {
    width: 4px;
    height: 36px;
    background: var(--brand);
    margin-top: 0.45rem;
}

.split .title {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 800;
    color: #3b4047;
    margin: 0;
}

.split .lead {
    color: #4b5563;
    font-size: 1.25rem;
    margin: 18px 0 16px;
}

.split ul {
    margin: 0 0 24px 0;
    padding-left: 1rem;
    color: #4b5563;
}

.split ul li {
    margin: 0.42rem 0;
}

.split .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    transition: transform 0.18s, box-shadow 0.18s;
}

.split .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 134, 122, 0.28);
    color: #fff !important;
}

@media (min-width: 1240px) {
    .split .img.bleed-left {
        margin-left: calc((100vw - var(--container)) / -2 - 1px) !important;
        width: calc(100% + (100vw - var(--container)) / 2 + 1px) !important;
    }

    .split .img.bleed-right {
        margin-right: calc((100vw - var(--container)) / -2 - 1px) !important;
        width: calc(100% + (100vw - var(--container)) / 2 + 1px) !important;
    }

    .split .video.bleed-left {
        margin-left: calc((100vw - var(--container)) / -2 - 1px) !important;
        width: calc(100% + (100vw - var(--container)) / 2 + 1px) !important;
    }

    .split .video.bleed-right {
        margin-right: calc((100vw - var(--container)) / -2 - 1px) !important;
        width: calc(100% + (100vw - var(--container)) / 2 + 1px) !important;
    }
}

@media (min-width: 992px) {
    .join-bottom {
        padding-bottom: 0 !important;
    }

    .join-top {
        padding-top: 0 !important;
    }

    .join-bottom .grid,
    .join-top .grid {
        gap: 0;
    }

    .join-bottom .content {
        padding-right: 60px;
    }

    .join-top .content {
        padding-left: 60px;
    }
}

@media (max-width: 1200px) {
    .split .title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .split {
        padding-block: 52px;
    }

    .split .grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .split .title {
        font-size: 2rem;
    }

    .split .img img {
        height: auto;
    }

    .split .video .plyr {
        height: auto;
    }

    .join-bottom .content,
    .join-top .content {
        padding: 0;
    }
}

.section {
    padding-block: 56px;
}

.section-lg {
    padding-block: 84px;
}

.bg-light {
    background: #f8fafc;
}

.tabs-wrap {
    background: #f5f5f5;
    padding-top: 56px;
}

.tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-btn {
    appearance: none;
    border: 1px solid #e5e7eb;
    background: #f1f5f9;
    color: #111;
    padding: 12px 18px;
    border-radius: 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
}

.tab-btn.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.band {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--brand);
    color: #fff;
    margin-bottom: 0 !important;
}

.band .inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-block: 64px;
    padding-inline: 16px;
    text-align: center;
}

.band .title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.band .subtitle {
    margin-top: 14px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
}

.band .rule {
    width: 64px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 18px auto 22px;
}

.band .desc {
    max-width: 980px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.85;
}

.tabs-wrap.video-tabs .grid {
    display: grid;
    grid-template-columns: 1fr 680px;
    column-gap: 40px;
    align-items: center;
}

.tabs-wrap.video-tabs .content {
    align-self: center;
}

.tabs-wrap.video-tabs .video {
    display: flex;
    justify-content: flex-end;
}

.tabs-wrap.video-tabs .video.bleed-right,
.tabs-wrap.video-tabs .video.bleed-left {
    margin: 0 !important;
    width: 100% !important;
}

.tabs-wrap.video-tabs .video .video-frame {
    position: relative;
    width: 680px;
    height: 382.5px;
    max-width: 100%;
    background: #000;
    overflow: hidden;
    margin-left: auto;
    margin-right: 0;
}

.tabs-wrap.video-tabs .video .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 992px) {
    .tabs-wrap.video-tabs .grid {
        grid-template-columns: 1fr;
    }

    .tabs-wrap.video-tabs .video {
        justify-content: center;
    }

    .tabs-wrap.video-tabs .video .video-frame {
        width: 680px;
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .tabs-wrap.video-tabs .grid {
        grid-template-columns: 1fr !important;
    }
}

.testimonials-wrap {
    background: #f5f5f5;
    position: relative;
    padding-block: 84px;
}

.t-head {
    text-align: center;
    margin-bottom: 34px;
}

.t-head h2 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 900;
    color: #2b2f33;
    margin: 0;
}

.t-head p {
    margin: 10px 0 18px 0;
    color: #6b7280;
    font-size: 1.2rem;
}

.t-head .rule {
    width: 56px;
    height: 2px;
    background: var(--brand);
    margin: 0 auto;
}

.testimonial-slider {
    max-width: 980px;
    margin: 0 auto;
}

.testimonials {
    position: relative;
    min-height: 210px;
}

.t-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.t-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.t-quote {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #3b4047;
    text-align: center;
    font-style: italic;
    margin: 0 10px;
}

.t-author {
    text-align: center;
    margin-top: 18px;
    font-weight: 800;
    color: #2f343a;
    letter-spacing: 0.02em;
}

.t-role {
    text-align: center;
    margin-top: 6px;
    color: #9aa1a9;
}

.t-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.t-dot.active {
    background: var(--brand);
    transform: scale(1.2);
}

.site-footer {
    background: #232323;
    color: #c9c9c9;
    position: relative;
}

.site-footer a {
    color: #d7d7d7;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--brand) !important;
    text-decoration: none;
}

.site-footer .container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

.ftr-main {
    padding: 56px 0;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.brand-logo img {
    max-width: 180px;
    height: auto;
    display: block;
    filter: none;
}

.ftr-title {
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.addr p {
    margin: 0.18rem 0;
    color: #bdbdbd;
}

.addr .label {
    color: #eaeaea;
}

.addr a {
    color: #d7d7d7;
}

.socials {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #e7e7e7;
    background: #2b2b2b;
}

.socials a:hover {
    border-color: var(--brand);
    color: #fff;
    background: #333;
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.link-list li {
    margin: 0.55rem 0;
    position: relative;
    padding-left: 14px;
}

.link-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #9fa6ad;
}

.more-badge {
    margin-top: 26px;
}

.more-badge img {
    max-width: 170px;
    height: auto;
    display: block;
}

.ftr-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    color: #a7a7a7;
}

.ftr-bottom .ftr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    margin-inline: 0;
    width: 100%;
}

.ftr-bottom .row {
    margin-inline: 0;
    width: 100%;
}

.ftr-bottom .copy {
    margin-right: auto;
    flex: 1 1 auto;
    min-width: 0;
}

.policies {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-left: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

.policies a {
    color: #d7d7d7;
}

.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #111;
    border: none;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 30;
}

.to-top:hover {
    background: #000;
}

@media (max-width: 1200px) {
    .ftr-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .ftr-grid {
        grid-template-columns: 1fr;
    }

    .ftr-bottom .ftr-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .ftr-bottom .copy,
    .ftr-bottom .policies {
        width: 100%;
        margin: 0;
        justify-content: center;
        white-space: normal;
    }
}

/*footer side*/
.hero-footer {
    background: #0b867a;
    color: #fff;
    position: relative;
}

.hero-footer a {
    color: #fff;
    text-decoration: none;
}

.hero-footer a:hover {
    /*color: whitesmoke !important;*/
    text-decoration: none;
    opacity: 0.9;
}

.hero-footer .footer-section {
    position: relative;
    min-height: 750px;
    padding-block: 64px;
    overflow: hidden;
}

.hero-footer .footer-inner {
    position: relative;
    z-index: 1;
}

.hero-footer .footer-art {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(48vw, 860px);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.hero-footer .svc-title {
    font-weight: 900;
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.hero-footer .svc-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 64px;
}

.hero-footer .svc-cols ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-footer .svc-cols li {
    margin: 0.45rem 0;
    font-size: 1.1rem;
}

.hero-footer .touch {
    margin-top: 38px;
    max-width: 680px;
}

.hero-footer .touch .title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
}

.hero-footer .touch .rule {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.85);
    margin: 12px 0 18px;
}

.hero-footer .touch p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 10px;
}

.cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 800;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}

.cta-outline:hover {
    background: #fff;
    color: #0b867a !important;
    transform: translateY(-1px);
}

.hero-footer .divider {
    width: 550px;
    max-width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 34px 0;
    position: relative;
    z-index: 2;
}

.hero-footer .promo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.hero-footer .promo .big {
    font-size: 2rem;
    font-weight: 900;
}

.hero-footer .promo .accent {
    color: #ffd54a;
}

.hero-footer .promo a {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.65);
}

.hero-footer .copyright {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

@media (max-width: 1200px) {
    .hero-footer .footer-art {
        width: min(60vw, 760px);
    }

    .hero-footer .touch .title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-footer .footer-section {
        min-height: auto;
        padding-block: 44px;
    }

    .hero-footer .footer-art {
        opacity: 0.25;
        width: 100%;
        right: -10%;
        background-position: 80% center;
    }

    .hero-footer .svc-cols {
        grid-template-columns: 1fr;
        gap: 12px 24px;
    }
}

@media (max-width: 576px) {
    .hero-footer .promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* Booking */
.book-wrap {
    padding-bottom: 90px;
}

.wizard {
    background: #fff;
}

.wizard-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 26px 16px;
}

.wiz-step {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
}

.wiz-step .dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e5e7eb;
    color: #111;
    font-weight: 800;
}

.wiz-step .label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.98rem;
}

.wiz-step.active .dot {
    background: var(--brand);
    color: #fff;
}

.wiz-step.done .dot {
    background: #16a34a;
    color: #fff;
}

.wiz-step.active .label,
.wiz-step.done .label {
    color: #111;
}

.book-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    margin: 18px 0;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #111;
}

.card-sub {
    color: #6b7280;
    margin: 6px 0 18px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.type-card {
    position: relative;
    border-radius: 12px;
    height: 200px;
    overflow: hidden;
    display: grid;
    place-items: end start;
    background: #e5e7eb;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}

.type-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
    transition: opacity 0.2s;
}

.type-card .text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 900;
    font-size: 1.6rem;
    padding: 16px;
}

.type-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.type-card.active::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 4px var(--brand);
}

.vacant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.vacant-label {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
}

.vacant-ctl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill-label {
    background: var(--brand);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
}

.switch {
    position: relative;
    width: 48px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 999px;
    display: inline-block;
    vertical-align: middle;
    transition: background 0.18s;
}

#vacantSwitch {
    display: none;
}

.switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: left 0.18s;
}

#vacantSwitch:checked + .switch {
    background: var(--brand);
}

#vacantSwitch:checked + .switch::after {
    left: 23px;
}

.addr-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.addr-head .note {
    color: #6b7280;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #111;
    height: 40px;
    border-radius: 10px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.addr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.addr-grid .col-2 {
    grid-column: span 2;
}

.fld {
    display: block;
}

.fld .lbl {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 6px;
}

.fld input {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
}

.gmap {
    width: 100%;
    height: 520px;
    margin-top: 16px;
}

.num-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wizard-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1f2937;
    padding: 14px 0;
    z-index: 50;
}

.act-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-muted {
    background: #374151;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-next {
    background: var(--brand);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.is-hidden {
    display: none;
}

@media (max-width: 992px) {
    .type-grid {
        grid-template-columns: 1fr;
    }

    .addr-grid {
        grid-template-columns: 1fr;
    }

    .addr-grid .col-2 {
        grid-column: span 1;
    }

    .gmap {
        height: 360px;
    }
}

#step-1 .type-card {
    place-items: center;
}

#step-1 .type-card .text {
    text-align: center;
    padding: 0 16px;
}

/*additional style for header */

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown > .nav-dropdown {
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
    transform: translateY(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: opacity, transform;
}

.nav-item.has-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.has-dropdown .nav-dropdown-link {
    color: #111;
    transition: color 0.15s ease, background 0.15s ease;
}

.nav-item.has-dropdown .nav-dropdown-link:hover {
    color: var(--brand);
    background: #f7f9fa;
}

.menubar.overlay .nav-item.has-dropdown > .nav-dropdown {
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
}

.menubar.overlay .nav-item.has-dropdown .nav-dropdown-link {
    color: #111;
}

.menubar.overlay .nav-item.has-dropdown .nav-dropdown-link:hover {
    color: var(--brand);
    background: #f7f9fa;
}

@media (max-width: 992px) {
    .nav-item.has-dropdown > .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.08);
    }

    .menubar.overlay .nav-item.has-dropdown > .nav-dropdown {
        background: rgba(0, 0, 0, 0.08);
    }

    .nav-item.has-dropdown .nav-dropdown-link {
        color: #fff;
    }

    .nav-item.has-dropdown .nav-dropdown-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 993px) {
    .nav-item.has-dropdown > .nav-dropdown {
        min-width: 300px;
    }

    .nav-item.has-dropdown .nav-dropdown-link {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }
}

.text a:hover {
    opacity: 1;
    color: whitesmoke !important;
}
/*new footer styles*/
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0;
    position: relative;
    z-index: 0;
}

.footer-bottom {
    background: #0b867a;
    color: #fff;
    height: 70px;
    display: flex;
    align-items: center;
}

.footer-bottom .ftr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-copy a:hover {
    color: whitesmoke !important;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.18s;
}

.footer-links a:hover {
    opacity: 1;
    color: whitesmoke !important;
}

.footer-links .sep {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .footer-bottom {
        height: auto;
    }

    .footer-bottom .ftr-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
    }

    .footer-copy,
    .footer-links {
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-links .sep {
        display: none;
    }
}

section.leaders::before {
    content: none !important;
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    transform: none !important;
}
