.v-hero {
    background:
        radial-gradient(1200px 540px at 8% 6%, rgba(212, 170, 82, 0.2), transparent 58%),
        radial-gradient(980px 460px at 92% 10%, rgba(79, 137, 184, 0.2), transparent 60%),
        linear-gradient(130deg, rgba(104, 120, 140, 0.66), rgba(151, 167, 189, 0.68)),
        url("/local/templates/vega-template/assets/img/content/hero-turkey.jpg") center / cover no-repeat;
    color: var(--v-color-white);
    padding-block: var(--v-space-8);
    box-shadow: inset 0 -120px 140px rgba(31, 39, 49, 0.14);
}

.v-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: var(--v-space-6);
    align-items: center;
}

.v-hero__content h1 {
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.v-hero__content p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.96;
}

.v-hero__actions {
    margin-top: var(--v-space-4);
    display: flex;
    flex-wrap: wrap;
    gap: var(--v-space-2);
}

.v-hero__kicker {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.9;
}

.v-hero__logo-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid var(--v-color-line-soft);
    border-radius: var(--v-radius-lg);
    padding: var(--v-space-4);
    display: grid;
    gap: 14px;
    box-shadow: var(--v-shadow-soft);
}

.v-hero__logo-card img {
    border-radius: var(--v-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.v-hero__logo-card p {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v-home-search {
    margin-top: calc(var(--v-space-6) * -1);
    position: relative;
    z-index: 2;
}

.v-destination-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    background: var(--v-color-surface);
}

.v-destination-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 149, 167, 0.22), transparent 70%);
}

.v-destination-slider {
    position: relative;
}

.v-destination-slider__controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}

.v-slider-nav {
    width: 40px;
    height: 40px;
    border: 1px solid var(--v-color-line);
    border-radius: 999px;
    background: var(--v-color-surface);
    color: var(--v-color-brand-deep);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--v-transition), color var(--v-transition), border-color var(--v-transition), opacity var(--v-transition);
}

.v-slider-nav:hover,
.v-slider-nav:focus-visible {
    background: var(--v-color-brand-bright);
    color: var(--v-color-white);
    border-color: var(--v-color-brand-bright);
}

.v-slider-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.v-destination-slider__viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(116, 131, 150, 0.5) transparent;
}

.v-destination-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--v-space-3) * 2)) / 3);
    gap: var(--v-space-3);
}

.v-destination-slider__track .v-destination-card {
    margin: 0;
}

.v-hotel-carousel {
    position: relative;
}

.v-hotel-carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}

.v-hotel-carousel__viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(116, 131, 150, 0.5) transparent;
}

.v-hotel-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--v-space-3) * 3)) / 4);
    gap: var(--v-space-3);
}

.v-hotel-carousel__track .v-card {
    margin: 0;
}

.v-hotel-grid .v-card__meta,
.v-offer-grid .v-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-section--offers {
    background:
        linear-gradient(180deg, rgba(212, 170, 82, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(79, 137, 184, 0.06), transparent 70%);
}

.v-about-block {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: var(--v-space-4);
    align-items: stretch;
}

.v-about-block__photo {
    min-height: 320px;
    border-radius: var(--v-radius-md);
    border: 1px solid var(--v-color-line);
    background:
        linear-gradient(0deg, rgba(134, 149, 167, 0.45), rgba(134, 149, 167, 0.45)),
        url("/local/templates/vega-template/assets/img/content/hotel-1.jpg") center/cover no-repeat;
}

.v-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--v-space-3);
}

.v-feature-list li {
    background: var(--v-color-surface);
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-md);
    padding: var(--v-space-3);
}

.v-feature-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.v-feature-list p {
    color: var(--v-color-muted);
    font-size: 14px;
}

.v-review {
    background: var(--v-color-surface);
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-md);
    padding: var(--v-space-4);
    display: grid;
    gap: 12px;
}

.v-review p {
    color: var(--v-color-muted);
}

.v-review cite {
    font-style: normal;
    font-weight: 600;
}

.v-cta {
    background:
        linear-gradient(130deg, rgba(134, 149, 167, 0.96), rgba(116, 131, 150, 0.96));
    color: var(--v-color-white);
    border-radius: var(--v-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: var(--v-space-6);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--v-space-4);
    align-items: center;
}

.v-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.v-cta p {
    max-width: 620px;
    opacity: 0.95;
}

@media (max-width: 1100px) {
    .v-hero__inner {
        grid-template-columns: 1fr;
    }

    .v-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v-about-block {
        grid-template-columns: 1fr;
    }

    .v-destination-slider__track {
        grid-auto-columns: calc((100% - var(--v-space-3)) / 2);
    }

    .v-hotel-carousel__track {
        grid-auto-columns: calc((100% - var(--v-space-3)) / 2);
    }
}

@media (max-width: 767px) {
    .v-home-search {
        margin-top: calc(var(--v-space-4) * -1);
    }

    .v-hero__content p {
        font-size: 17px;
    }

    .v-feature-list {
        grid-template-columns: 1fr;
    }

    .v-cta {
        grid-template-columns: 1fr;
        padding: var(--v-space-4);
    }

    .v-destination-slider__controls {
        display: none;
    }

    .v-destination-slider__track {
        grid-auto-columns: 100%;
    }

    .v-hotel-carousel__controls {
        display: none;
    }

    .v-hotel-carousel__track {
        grid-auto-columns: 100%;
    }
}
