:root {
    --skn-bg: #f5f7fb;
    --skn-surface: #ffffff;
    --skn-surface-soft: #eef5ff;
    --skn-text: #14213d;
    --skn-muted: #61708a;
    --skn-border: #dbe3ef;
    --skn-blue: #0067ff;
    --skn-blue-dark: #004ac0;
    --skn-coral: #ff6b35;
    --skn-green: #0b9f6e;
    --skn-shadow: 0 16px 38px rgba(15, 35, 75, .13);
    --skn-radius: 8px;
    --skn-shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--skn-bg);
    color: var(--skn-text);
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.shell {
    width: min(var(--skn-shell), calc(100% - 32px));
    margin: 0 auto;
}

.top-strip {
    background: #0d1b35;
    color: #e7efff;
    font-size: 12px;
}

.top-strip__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    overflow-x: auto;
}

.top-strip i {
    margin-right: 6px;
    color: #7db4ff;
}

.top-strip a {
    color: #fff;
    font-weight: 700;
}

.top-strip__right {
    margin-left: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(219, 227, 239, .86);
}

.site-header__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--skn-radius);
    background: linear-gradient(135deg, var(--skn-blue), #00a3ff);
    color: #fff;
    letter-spacing: .02em;
    box-shadow: 0 10px 24px rgba(0, 103, 255, .28);
}

.brand__text {
    display: grid;
    font-size: 18px;
    line-height: 1.05;
}

.brand__text small {
    color: var(--skn-muted);
    font-size: 11px;
    font-weight: 700;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: var(--skn-radius);
    color: #31405a;
    font-size: 14px;
    font-weight: 800;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: #eef5ff;
    color: var(--skn-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-link,
.header-login {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--skn-radius);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.header-link {
    color: var(--skn-blue);
}

.header-login {
    padding: 0 14px;
    background: #101e37;
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    background: #fff;
    color: var(--skn-text);
    position: relative;
}

.nav-toggle i {
    display: none;
}

.nav-toggle::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--skn-text);
    box-shadow: 0 -6px 0 var(--skn-text), 0 6px 0 var(--skn-text);
}

.hero {
    min-height: 610px;
    padding: 58px 0 56px;
    background:
        linear-gradient(90deg, rgba(10, 25, 50, .84), rgba(10, 25, 50, .34), rgba(10, 25, 50, .1)),
        url("../img/1920x955/img1.jpg") center/cover no-repeat;
    color: #fff;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 38px;
    align-items: end;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(36px, 5vw, 70px);
    line-height: .96;
    font-weight: 800;
    letter-spacing: 0;
}

.hero p,
.page-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--skn-radius);
    background: rgba(255, 255, 255, .14);
    font-weight: 800;
}

.hero__proof i {
    color: #84ffca;
}

.search-widget {
    background: var(--skn-surface);
    border: 1px solid rgba(219, 227, 239, .94);
    border-radius: var(--skn-radius);
    box-shadow: var(--skn-shadow);
    overflow: hidden;
    color: var(--skn-text);
}

.search-widget--compact {
    margin-top: 28px;
}

.search-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f3f7fd;
    border-bottom: 1px solid var(--skn-border);
}

.search-tab {
    min-height: 66px;
    border: 0;
    border-right: 1px solid var(--skn-border);
    background: transparent;
    color: #334966;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.search-tab:last-child {
    border-right: 0;
}

.search-tab i {
    margin-right: 8px;
    color: var(--skn-blue);
}

.search-tab.is-active {
    background: #fff;
    color: var(--skn-blue);
    box-shadow: inset 0 -3px 0 var(--skn-blue);
}

.search-panel {
    display: none;
    grid-template-columns: 1.3fr repeat(3, minmax(120px, .72fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
}

.search-panel.is-active {
    display: grid;
}

.search-panel[data-search-panel="flights"],
.search-panel[data-search-panel="bus"] {
    grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
}

.search-panel[data-search-panel="packages"] {
    grid-template-columns: 1.5fr repeat(2, minmax(140px, .8fr)) auto;
}

.field {
    display: grid;
    gap: 7px;
}

.field span {
    color: var(--skn-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    background: #fff;
    color: var(--skn-text);
    padding: 0 13px;
    font-size: 15px;
    font-weight: 800;
    outline: none;
}

.field textarea {
    min-height: 118px;
    padding-top: 13px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--skn-blue);
    box-shadow: 0 0 0 3px rgba(0, 103, 255, .12);
}

.search-submit,
.primary-btn,
.secondary-btn {
    min-height: 52px;
    border: 0;
    border-radius: var(--skn-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.search-submit,
.primary-btn {
    background: var(--skn-coral);
    color: #fff;
    box-shadow: 0 14px 24px rgba(255, 107, 53, .26);
}

.secondary-btn {
    background: #eaf2ff;
    color: var(--skn-blue);
}

.search-submit:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-1px);
}

.search-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 18px 18px;
    color: var(--skn-muted);
    font-size: 12px;
    font-weight: 800;
}

.search-assurance i {
    color: var(--skn-green);
    margin-right: 5px;
}

.section {
    padding: 62px 0;
}

.section--tight {
    padding: 38px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    font-weight: 800;
}

.section-head p {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--skn-muted);
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--skn-blue);
    font-weight: 800;
    white-space: nowrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: -36px;
    position: relative;
    z-index: 4;
}

.stat-card {
    min-height: 112px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    box-shadow: 0 10px 24px rgba(18, 38, 76, .08);
}

.stat-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: var(--skn-blue);
}

.stat-card span {
    display: block;
    margin-top: 9px;
    color: var(--skn-muted);
    font-size: 13px;
    font-weight: 800;
}

.deal-rail {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 16px;
}

.deal-card {
    min-height: 190px;
    display: grid;
    align-content: end;
    padding: 22px;
    border-radius: var(--skn-radius);
    overflow: hidden;
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.deal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 10%, rgba(4, 17, 38, .82));
}

.deal-card > * {
    position: relative;
    z-index: 1;
}

.deal-card h3 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.1;
}

.deal-card p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

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

.travel-card,
.result-card,
.booking-card,
.summary-card,
.empty-state {
    background: #fff;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(18, 38, 76, .07);
}

.travel-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}

.travel-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.travel-card:hover .travel-card__media img {
    transform: scale(1.04);
}

.travel-card__tag {
    position: absolute;
    left: 12px;
    top: 12px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: var(--skn-radius);
    background: rgba(255, 255, 255, .94);
    color: var(--skn-blue);
    font-size: 12px;
    font-weight: 800;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #d63b52;
    cursor: pointer;
}

.travel-card__body {
    padding: 16px;
}

.travel-card__title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.travel-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
}

.travel-card p {
    margin: 9px 0 0;
    color: #485a73;
    font-size: 13px;
}

.muted {
    color: var(--skn-muted);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 26px;
    padding: 0 8px;
    border-radius: var(--skn-radius);
    background: #e8fbf3;
    color: var(--skn-green);
    font-size: 12px;
    font-weight: 800;
}

.travel-card__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.travel-card__price strong {
    font-size: 20px;
}

.travel-card__price span {
    color: var(--skn-muted);
    font-size: 12px;
    font-weight: 700;
}

.travel-card__price em {
    margin-left: auto;
    color: var(--skn-coral);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.page-hero {
    padding: 54px 0 38px;
    background:
        linear-gradient(90deg, rgba(9, 27, 56, .9), rgba(9, 27, 56, .5)),
        url("../img/1920x750/img3.jpg") center/cover no-repeat;
    color: #fff;
}

.page-hero .search-widget {
    color: var(--skn-text);
}

.results-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
}

.filter-panel {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    box-shadow: 0 10px 24px rgba(18, 38, 76, .06);
}

.filter-panel h3 {
    margin: 0 0 14px;
}

.filter-panel label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 13px;
    color: #31405a;
    font-weight: 700;
}

.result-list {
    display: grid;
    gap: 16px;
}

.result-card {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 14px;
    align-items: center;
}

.result-card__media {
    aspect-ratio: 4 / 3;
    border-radius: var(--skn-radius);
    overflow: hidden;
}

.result-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-card h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.result-card p {
    margin: 9px 0 0;
    color: #485a73;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.result-meta span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: var(--skn-radius);
    background: #f1f6fd;
    color: #354a68;
    font-size: 12px;
    font-weight: 800;
}

.result-price {
    min-width: 170px;
    display: grid;
    gap: 10px;
    justify-items: end;
}

.result-price strong {
    font-size: 24px;
}

.detail-hero {
    background: #fff;
    border-bottom: 1px solid var(--skn-border);
    padding: 34px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.detail-gallery {
    border-radius: var(--skn-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-card {
    padding: 20px;
    position: sticky;
    top: 96px;
}

.summary-card h1,
.summary-card h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.12;
}

.summary-card p {
    color: var(--skn-muted);
}

.summary-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 18px 0;
}

.summary-price strong {
    font-size: 30px;
}

.detail-content {
    padding: 34px 0 62px;
}

.detail-section {
    background: #fff;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    padding: 22px;
    margin-bottom: 18px;
}

.detail-section h2 {
    margin: 0 0 12px;
}

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

.amenity-grid span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: #f2f7fe;
    border-radius: var(--skn-radius);
    color: #334966;
    font-weight: 800;
}

.booking-shell {
    min-height: 70vh;
    padding: 42px 0 70px;
    background:
        linear-gradient(180deg, #edf5ff, var(--skn-bg) 260px);
}

.booking-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.booking-steps span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--skn-border);
    border-radius: var(--skn-radius);
    background: #fff;
    color: var(--skn-muted);
    font-weight: 800;
}

.booking-steps b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e4ecf8;
    color: #53647e;
}

.booking-steps span.is-active {
    border-color: rgba(0, 103, 255, .25);
    color: var(--skn-blue);
}

.booking-steps span.is-active b {
    background: var(--skn-blue);
    color: #fff;
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.booking-card {
    padding: 22px;
}

.booking-card h2 {
    margin: 0 0 16px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.booking-form .field--full,
.booking-form .primary-btn {
    grid-column: 1 / -1;
}

.price-breakup {
    display: grid;
    gap: 12px;
}

.price-breakup div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.price-breakup strong {
    font-size: 22px;
}

.empty-state {
    padding: 44px 24px;
    text-align: center;
}

.empty-state i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--skn-blue);
    font-size: 22px;
}

.empty-state h2 {
    margin: 0 0 8px;
}

.empty-state p {
    margin: 0 auto;
    max-width: 520px;
    color: var(--skn-muted);
}

.site-footer {
    padding: 46px 0;
    background: #0d1b35;
    color: #dce7f7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
}

.brand--footer {
    color: #fff;
}

.site-footer p {
    color: #a9b8cc;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #fff;
}

.site-footer a {
    display: block;
    margin-top: 9px;
    color: #dce7f7;
}

@media (max-width: 1020px) {
    .top-strip__right,
    .header-actions {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding-bottom: 14px;
        border-top: 1px solid var(--skn-border);
    }

    .main-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding: 38px 0;
    }

    .hero__grid,
    .detail-grid,
    .booking-grid,
    .results-layout {
        grid-template-columns: 1fr;
    }

    .search-panel,
    .search-panel[data-search-panel="flights"],
    .search-panel[data-search-panel="bus"],
    .search-panel[data-search-panel="packages"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-submit {
        grid-column: 1 / -1;
    }

    .stats-grid,
    .card-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deal-rail {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .summary-card {
        position: static;
    }

    .result-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .result-price {
        grid-column: 1 / -1;
        min-width: 0;
        grid-auto-flow: column;
        justify-content: space-between;
        justify-items: start;
        align-items: center;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 14px;
    }

    .shell {
        width: min(100% - 22px, var(--skn-shell));
    }

    .top-strip {
        display: none;
    }

    .site-header__inner {
        min-height: 64px;
    }

    .brand__mark {
        width: 40px;
        height: 40px;
    }

    .brand__text {
        font-size: 16px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .hero p,
    .page-hero p {
        font-size: 15px;
    }

    .search-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-tab {
        min-height: 54px;
    }

    .search-panel,
    .search-panel[data-search-panel="flights"],
    .search-panel[data-search-panel="bus"],
    .search-panel[data-search-panel="packages"],
    .stats-grid,
    .card-grid,
    .footer-grid,
    .amenity-grid,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 42px 0;
    }

    .section-head {
        display: block;
    }

    .link-action {
        margin-top: 12px;
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-card__media {
        aspect-ratio: 16 / 10;
    }

    .result-price {
        grid-auto-flow: row;
        justify-items: stretch;
    }

    .booking-steps {
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .booking-steps span {
        flex: 0 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
