.topbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    padding: 0 32px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark-bg-15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-08);
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    box-shadow: var(--shadow-orange-20);
}

.brand-name {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-link-top {
    position: relative;
    padding: 10px 16px !important;
    color: var(--white-75) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
}

.nav-link-top:hover,
.nav-link-top.active {
    color: var(--white) !important;
}

.nav-link-top.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -4px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
}

.sign-link {
    color: var(--white-90) !important;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: color 0.2s ease;
}

.sign-link:hover {
    color: var(--white) !important;
}

.btn-book {
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    box-shadow: 0 6px 20px var(--orange-shadow-30);
    transition: all .2s ease;
}

.btn-book:hover {
    color: var(--white);
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px var(--orange-shadow-45);
}

.btn-track {
    background: var(--white-08);
    color: var(--white);
    border: 1px solid var(--white-15);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-track:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
    margin-top: -84px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            var(--dark-bg-10) 0%,
            var(--dark-bg-75) 50%,
            var(--dark-bg-40) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at top right,
            var(--orange-shadow-25),
            transparent 40%),
        radial-gradient(circle at bottom left,
            rgba(22, 77, 46, 0.25),
            transparent 40%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    padding: 107px 24px 34px;
}

.view-images-btn {
    z-index: 4;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.hero h1 .accent {
    color: var(--orange);
}

.hero .sub {
    color: var(--white-75);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-badges span,
.hero-badges a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--white-08);
    border: 1px solid var(--white-12);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-badges a.map-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--orange);
    color: var(--white);
}

.hero-badges span.coupon-badge {
    background: rgba(242, 138, 24, 0.15);
    border: 1px dashed var(--orange);
    color: var(--orange-hover);
    font-weight: 600;
}

.search-wrap {
    position: relative;
    max-width: 580px;
    box-shadow: var(--shadow-dark);
    border-radius: 16px;
    margin-bottom: 12px;
}

.search-wrap .bi-search {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    color: var(--gray-888);
    font-size: 18px;
}

.search-wrap input {
    width: 100%;
    height: 60px;
    padding: 0 24px 0 58px;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-111);
    transition: all 0.2s ease;
}

.search-wrap input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-shadow-25);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    flex-wrap: nowrap;
}

.feature-pill .icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--white-10);
    display: grid;
    place-items: center;
    border: 1px solid var(--white-10);
    flex-shrink: 0;
}

.feature-pill .title,
.feature-pill .desc {
    white-space: nowrap;
}

.feature-pill .title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.8;
}

.feature-pill .desc {
    font-size: 12px;
    color: var(--white-78);
}

.view-images-btn {
    position: absolute;
    right: 24px;
    bottom: 45px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--orange);
    border: 1px solid var(--orange-border);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-black-25);
    transition: all 0.25s ease;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .topbar {
        height: 76px;
        padding: 0 24px;
    }
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .brand-name {
        font-size: 20px;
    }
    .nav-link-top {
        padding: 8px 14px !important;
        font-size: 15px;
    }
    .btn-track,
    .btn-book {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero {
        margin-top: -76px;
    }
    .hero-inner {
        padding: 98px 24px 30px;
    }
    .hero h1 {
        font-size: clamp(48px, 4vw, 58px);
        margin-bottom: 12px;
    }
    .hero .sub {
        font-size: 16px;
    }
    .feature-pill {
        gap: 8px;
    }
    .feature-pill .icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }
    .feature-pill .title {
        font-size: 13px;
    }
    .feature-pill .desc {
        font-size: 11px;
    }
    .search-wrap {
        max-width: 520px;
    }
    .search-wrap input {
        height: 56px;
        font-size: 15px;
        padding: 0 22px 0 54px;
    }
    .search-wrap .bi-search {
        left: 20px;
        font-size: 16px;
    }
    .view-images-btn {
        right: 20px;
        bottom: 45px;
        padding: 10px 16px;
        font-size: 13px;
    }
    .hero-content .row.mb-4 {
        flex-wrap: nowrap;
        gap: 12px;
    }
    .hero-content .row.mb-4>[class*="col-"] {
        flex: 1 1 0;
        width: auto;
        max-width: none;
        padding-left: 6px;
        padding-right: 6px;
    }
    .feature-pill .title {
        font-size: 12px;
    }
    .feature-pill .desc {
        font-size: 11px;
    }
}

@media (min-width: 991px) and (max-width: 1199.98px) {
    .topbar {
        height: 72px;
        padding: 0 20px;
    }
    .brand-logo {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .brand-name {
        font-size: 18px;
    }
    .nav-link-top {
        padding: 8px 12px !important;
        font-size: 14px;
    }
    .btn-track,
    .btn-book {
        padding: 9px 16px;
        font-size: 13px;
        border-radius: 10px;
    }
    .sign-link {
        font-size: 14px;
    }
    .hero {
        margin-top: -72px;
    }
    .hero-inner {
        padding: 92px 20px 28px;
    }
    .hero h1 {
        font-size: clamp(42px, 4.5vw, 52px);
        margin-bottom: 10px;
    }
    .hero .sub {
        font-size: 15px;
        margin-bottom: 18px;
    }
    .hero-content .row.mb-4 {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .hero-content .row.mb-4>[class*="col-"] {
        flex: 1 1 0;
        width: auto;
        max-width: none;
        padding-left: 4px;
        padding-right: 4px;
    }
    .feature-pill {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }
    .feature-pill .icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .feature-pill .title,
    .feature-pill .desc {
        white-space: nowrap;
    }
    .feature-pill .title {
        font-size: 11px;
    }
    .feature-pill .desc {
        font-size: 10px;
    }
    .search-wrap {
        max-width: 480px;
    }
    .search-wrap input {
        height: 52px;
        font-size: 14px;
        padding: 0 20px 0 50px;
    }
    .search-wrap .bi-search {
        left: 18px;
        font-size: 15px;
    }
    .view-images-btn {
        right: 18px;
        bottom: 36px;
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 12px;
    }
}
