@font-face {
    font-family: "Adobe Clean UX Bold";
    src:
        url("../fonts/adobe-clean-ux-bold/fa7d3f2e91e9124379240b65260fb4cf.woff2") format("woff2"),
        url("../fonts/adobe-clean-ux-bold/fa7d3f2e91e9124379240b65260fb4cf.woff") format("woff");
    font-display: block;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "DIN Condensed Bold";
    src: url("../fonts/din-condensed-bold/din-condensed-bold.ttf") format("truetype");
    font-display: block;
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary: #d6573a;
    --secondary: #0f254c;
    --light: #b4bac1;
    --text-font: "Adobe Clean UX Bold", Arial, sans-serif;
    --title-font: "DIN Condensed Bold", "Adobe Clean UX Bold", Arial, sans-serif;
    --shadow:
        9px 10px 14px -12px rgba(15, 37, 76, .16),
        -9px 10px 14px -12px rgba(15, 37, 76, .16),
        0 14px 20px -12px rgba(15, 37, 76, .16);
}

/* SITE PRELOADER */

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f254c;
    opacity: 1;
    visibility: visible;
    transition:
        opacity .45s ease,
        visibility .45s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.site-preloader__logo {
    width: 230px;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderLogo .55s ease forwards;
}

.site-preloader__line {
    position: relative;
    width: 160px;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
}

.site-preloader__line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: #d6573a;
    animation: preloaderLine 1s ease-in-out infinite;
}

.site-wrapper {
    opacity: 0;
    transition: opacity .45s ease;
}

body.site-loaded .site-wrapper {
    opacity: 1;
}

@keyframes preloaderLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloaderLine {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--secondary);
    font-family: var(--text-font);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

.site-wrapper {
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.section-heading.align-left {
    align-items: flex-start;
    text-align: left;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary);
    font-family: var(--text-font);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-heading h2,
h1 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 60px;
}

h1 {
    color: #ffffff;
    font-size: 64px;
}

.btn-dark {
    color: var(--secondary);
}

.section-map-bg {
    background-image: url("../images/pattern_map.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10px;
}

/* HERO */

.hero-section {
    position: relative;
    min-height: 70vh;
    background-color: #0f254c;
    background-image:
        linear-gradient(rgba(15, 37, 76, .35), rgba(15, 37, 76, .35)),
        url("../images/DJI_0702.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 78%;
    font-family: var(--title-font);
}

@media (max-width: 1199px) {
    .hero-section {
        background-position: center 85%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        background-position: center bottom;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 120px;
}

.hero-top {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    color: #ffffff;
}

.logo-link {
    position: relative;
    z-index: 1003;
    flex: 0 0 auto;
}

.hero-logo {
    width: auto;
    height: 60px;
    margin-top: 16px;
    margin-left: 28px;
}

/* HERO BRAND + CONTACTS */

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    position: relative;
    z-index: 1003;
}

.hero-brand .hero-logo {
    margin-bottom: 18px;
}

.hero-contact-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 28px;
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 38px;
    padding: 0 14px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(15, 37, 76, .68);
    color: #ffffff;

    font-family: var(--text-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.hero-contact-link i {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.hero-contact-link:hover {
    border-color: rgba(214, 87, 58, .72);
    background: rgba(15, 37, 76, .86);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .20);
}

.hero-contact-link:hover i {
    color: var(--primary);
}

/* HERO RESPONSIVE */

@media (max-width: 767px) {
    .hero-inner {
        padding: 0 24px;
    }

    .hero-top {
        align-items: flex-start;
    }

    .hero-brand {
        max-width: calc(100% - 64px);
    }

    .hero-logo {
        height: 52px;
        margin-top: 14px;
        margin-left: 0;
    }

    .hero-brand .hero-logo {
        margin-bottom: 12px;
    }

    .hero-contact-links {
        margin-left: 0;
        gap: 8px;
    }

    .hero-contact-link {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }
}

@media (max-width: 450px) {
    .hero-inner {
        padding: 0 48px;
    }

    .hero-contact-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* HEADER NAV */

.main-nav {
    margin: 10px 0 0 auto;
    padding: 8px;
    background: rgba(15, 37, 76, .01);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
    flex-shrink: 0;
	margin-right: 28px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 16px;
    color: rgba(255, 255, 255, .94);
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
	white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.main-nav a:hover {
    color: #ffffff;
    background: rgba(214, 87, 58, .18);
    transform: translateY(-1px);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1003;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(15, 37, 76, .22);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
	margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: currentColor;
    border-radius: 3px;
    transition:
        transform .25s ease,
        opacity .25s ease,
        background .25s ease;
}

.menu-toggle:hover {
    color: var(--primary);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* HERO CONTENT */

.hero-content {
    max-width: 790px;
    padding: 70px 0 190px 28px;
    color: #ffffff;
    transform: translateY(32px);
}

.hero-content .eyebrow {
    font-size: 30px;
}

.hero-text {
    max-width: 720px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .9);
    font-family: var(--text-font);
    font-size: 24px;
    line-height: 1.28;
}

.scroll-down {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    transform: translate(-50%, 50%);
}

.scroll-down svg {
    width: 40px;
    height: 40px;
    margin-top: 5px;
}

/* VESSELS */

.vessels-section {
    position: relative;
    padding: 96px 0 90px;
    overflow: hidden;
}

.vessels-heading {
    margin-bottom: 58px;
}

.vessels-intro {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(15, 37, 76, .72);
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.vessels-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.vessel-card {
    position: relative;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: center;
    padding: 34px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 18px;
    box-shadow:
        0 24px 70px rgba(15, 37, 76, .10),
        inset 0 1px 0 rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
}

.vessel-card::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 0px;
    width: 3px;
    border-radius: 8px;
    background: var(--primary);
    opacity: .9;
}

.vessel-card--reverse {
    grid-template-columns: 1.05fr .95fr;
}

.vessel-card--reverse .vessel-card__media {
    order: 2;
}

.vessel-card--reverse .vessel-card__content {
    order: 1;
}

.vessel-card--reverse::before {
    left: auto;
    right: 34px;
}

.vessel-card__media {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background:
        radial-gradient(circle at 50% 50%, rgba(214, 87, 58, .08), transparent 58%),
        rgba(15, 37, 76, .03);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 16px;
    overflow: hidden;
}

.vessel-card__media img {
    width: 112%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(15, 37, 76, .16));
    transform: translateY(4px);
}

.vessel-card__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 18px;
    background: rgba(15, 37, 76, .92);
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vessel-card__content {
    padding: 10px 12px 10px 22px;
}

.vessel-card--reverse .vessel-card__content {
    padding: 10px 22px 10px 12px;
}

.vessel-card__label {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vessel-card h3 {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.vessel-card__text {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
}

.vessel-card__text p {
    margin: 0;
    color: rgba(15, 37, 76, .82);
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
    text-align: left;
}

.vessel-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
}

.vessel-specs div {
    padding: 13px 14px;
    background: rgba(15, 37, 76, .045);
    border: 1px solid rgba(15, 37, 76, .07);
    border-radius: 10px;
}

.vessel-specs span {
    display: block;
    margin-bottom: 4px;
    color: rgba(15, 37, 76, .56);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vessel-specs strong {
    display: block;
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.25;
}

.vessel-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
    padding: 0 24px;
    background: rgba(15, 37, 76, .96);
    color: #ffffff;
    border: 1px solid rgba(15, 37, 76, .96);
    border-radius: 6px;
    font-family: var(--title-font);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.vessel-card__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(214, 87, 58, .24);
}

/* VESSELS */

.vessels-section {
    position: relative;
    padding: 96px 0 90px;
    overflow: hidden;
}

.vessels-heading {
    margin-bottom: 58px;
}

.vessels-intro {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(15, 37, 76, .72);
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.vessels-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.vessel-card {
    position: relative;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: center;
    padding: 34px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 18px;
    box-shadow:
        0 24px 70px rgba(15, 37, 76, .10),
        inset 0 1px 0 rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
}

.vessel-card::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    right: 0px;
    width: 3px;
    border-radius: 8px;
    background: var(--primary);
    opacity: .9;
}

.vessel-card--reverse {
    grid-template-columns: 1.05fr .95fr;
}

.vessel-card--reverse .vessel-card__media {
    order: 2;
}

.vessel-card--reverse .vessel-card__content {
    order: 1;
}

.vessel-card--reverse::before {
    left: auto;
    right: 0px;
}

.vessel-card__media {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 37, 76, .10);
}

.vessel-card__media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: none;
}

.vessel-card__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 18px;
    background: rgba(15, 37, 76, .92);
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.vessel-card__content {
    padding: 10px 12px 10px 22px;
}

.vessel-card--reverse .vessel-card__content {
    padding: 10px 22px 10px 12px;
}

.vessel-card__label {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vessel-card h3 {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.vessel-card__text {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
}

.vessel-card__text p {
    margin: 0;
    color: rgba(15, 37, 76, .82);
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
    text-align: left;
}

.vessel-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
}

.vessel-specs div {
    padding: 13px 14px;
    background: rgba(15, 37, 76, .045);
    border: 1px solid rgba(15, 37, 76, .07);
    border-radius: 10px;
}

.vessel-specs span {
    display: block;
    margin-bottom: 4px;
    color: rgba(15, 37, 76, .56);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vessel-specs strong {
    display: block;
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.25;
}

.vessel-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
    padding: 0 24px;
    background: rgba(15, 37, 76, .96);
    color: #ffffff;
    border: 1px solid rgba(15, 37, 76, .96);
    border-radius: 6px;
    font-family: var(--title-font);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.vessel-card__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(214, 87, 58, .24);
}

/* VESSELS RESPONSIVE */

@media (max-width: 1199px) {
    .vessels-section {
        padding: 82px 0 72px;
    }

    .vessel-card,
    .vessel-card--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }

    .vessel-card::before,
    .vessel-card--reverse::before {
        display: none;
    }

    .vessel-card--reverse .vessel-card__media,
    .vessel-card--reverse .vessel-card__content {
        order: initial;
    }

    .vessel-card__media {
        min-height: 340px;
    }

    .vessel-card__media img {
        min-height: 340px;
    }

    .vessel-card__content,
    .vessel-card--reverse .vessel-card__content {
        padding: 0;
    }

    .vessel-card h3 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    /*.vessels-section {
        padding: 72px 0 30px;
    }*/

    .vessels-heading {
        margin-bottom: 38px;
    }

    .vessels-intro {
        font-size: 16px;
    }

    .vessels-list {
        gap: 34px;
    }

    .vessel-card,
    .vessel-card--reverse {
        padding: 20px;
        border-radius: 14px;
    }

    .vessel-card::before,
    .vessel-card--reverse::before {
        top: 20px;
        left: 20px;
    }

    .vessel-card__media {
        min-height: 260px;
        border-radius: 12px;
    }

    .vessel-card__media img {
        min-height: 260px;
    }

    .vessel-card__badge {
        left: 14px;
        bottom: 14px;
        height: 32px;
        padding: 0 14px;
        font-size: 12px;
    }

    .vessel-card h3 {
        font-size: 34px;
    }

    .vessel-card__label {
        font-size: 15px;
    }

    .vessel-card__text p {
        font-size: 14px;
        line-height: 1.58;
    }

    .vessel-specs {
        grid-template-columns: 1fr;
    }

    .vessel-card__btn {
        width: 100%;
        height: 48px;
    }
}

/* GALLERY */

.gallery-section {
    position: relative;
    padding: 0 0 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(214, 87, 58, .06), transparent 36%),
        #ffffff;
}

.gallery-heading {
    margin-bottom: 48px;
}

.gallery-intro {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(15, 37, 76, .72);
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.gallery-slider {
    position: relative;
    width: min(100% - 48px, 1380px);
    height: 520px;
    margin: 0 auto;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(15, 37, 76, .06);
    box-shadow:
        0 26px 70px rgba(15, 37, 76, .16),
        inset 0 1px 0 rgba(255, 255, 255, .55);
    transition:
        transform .45s ease,
        opacity .45s ease,
        filter .45s ease,
        box-shadow .45s ease;
}

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

.gallery-slide.is-active {
    z-index: 5;
    width: min(720px, 58vw);
    height: 460px;
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-slide.is-prev,
.gallery-slide.is-next {
    z-index: 3;
    width: min(420px, 34vw);
    height: 330px;
    opacity: .52;
    filter: grayscale(.15);
}

.gallery-slide.is-prev {
    transform: translate(calc(-50% - 470px), -50%) scale(.96);
}

.gallery-slide.is-next {
    transform: translate(calc(-50% + 470px), -50%) scale(.96);
}

.gallery-slide.is-hidden {
    z-index: 1;
    width: 360px;
    height: 280px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.88);
}

.gallery-caption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    background: rgba(15, 37, 76, .92);
    color: #ffffff;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    padding: 0;
    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    color: rgba(15, 37, 76, .72);

    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(15, 37, 76, .12);

    cursor: pointer;
    font-size: 0;
    line-height: 1;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.gallery-nav::before {
    display: block;
    color: inherit;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-2px);
}

.gallery-nav--prev::before {
    content: "‹";
}

.gallery-nav--next::before {
    content: "›";
}

.gallery-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 18px 40px rgba(214, 87, 58, .22);
}

.gallery-nav--prev {
    left: 0;
    transform: translateY(-50%);
}

.gallery-nav--next {
    right: 0;
    transform: translateY(-50%);
}

.gallery-empty {
    padding: 48px 24px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 18px;
    color: rgba(15, 37, 76, .66);
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 37, 76, .08);
}

/* GALLERY RESPONSIVE */

@media (max-width: 1199px) {
    .gallery-slider {
        height: 470px;
    }

    .gallery-slide.is-active {
        width: min(680px, 64vw);
        height: 420px;
    }

    .gallery-slide.is-prev,
    .gallery-slide.is-next {
        width: min(340px, 30vw);
        height: 280px;
    }

    .gallery-slide.is-prev {
        transform: translate(calc(-50% - 390px), -50%) scale(.96);
    }

    .gallery-slide.is-next {
        transform: translate(calc(-50% + 390px), -50%) scale(.96);
    }
}

@media (max-width: 767px) {
    .gallery-heading {
        margin-bottom: 32px;
    }

    .gallery-intro {
        font-size: 16px;
    }

    .gallery-slider {
        width: min(100% - 32px, 520px);
        height: auto;
        padding: 0 0 70px;
    }

    .gallery-track {
        height: 320px;
    }

    .gallery-slide,
    .gallery-slide.is-active,
    .gallery-slide.is-prev,
    .gallery-slide.is-next,
    .gallery-slide.is-hidden {
        width: 100%;
        height: 320px;
    }

    .gallery-slide.is-active {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .gallery-slide.is-prev,
    .gallery-slide.is-next,
    .gallery-slide.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(.94);
    }

	.gallery-nav {
		top: auto;
		bottom: 0;
		width: 48px;
		height: 48px;
	}

	.gallery-nav::before {
		font-size: 38px;
		transform: translateY(-2px);
	}

	.gallery-nav--prev {
		left: calc(50% - 58px);
		transform: none;
	}

	.gallery-nav--next {
		right: calc(50% - 58px);
		transform: none;
	}

	.gallery-nav:hover {
		transform: scale(1.04);
	}

    .gallery-caption {
        left: 16px;
        bottom: 16px;
        max-width: calc(100% - 32px);
        height: auto;
        min-height: 34px;
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* INFO */

.info-section {
    position: relative;
    padding: 90px 0 90px;
    background:
        radial-gradient(circle at 50% 10%, rgba(214, 87, 58, .06), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 18%, #f8fafc 82%, #ffffff 100%);
    overflow: hidden;
}

.info-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 90px),
        linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 90px);
    pointer-events: none;
    z-index: 1;
}

.info-section .container {
    position: relative;
    z-index: 2;
}

.info-section .container {
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.info-card,
.price-card,
.review-card {
    background: #ffffff;
    box-shadow: var(--shadow);
}

.info-card {
    position: relative;
    min-height: 228px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 34px 24px;
    text-align: center;

    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 18px;

    box-shadow:
        0 22px 54px rgba(15, 37, 76, .10),
        inset 0 1px 0 rgba(255, 255, 255, .74);

    backdrop-filter: blur(12px);
    overflow: hidden;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(.36);
    transform-origin: center;
    opacity: .9;
    transition:
        transform .28s ease,
        background .28s ease;
}

.info-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(214, 87, 58, .08);
    transition:
        transform .28s ease,
        opacity .28s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 87, 58, .28);
    background: rgba(255, 255, 255, .94);
    box-shadow:
        0 28px 70px rgba(15, 37, 76, .14),
        0 10px 26px rgba(214, 87, 58, .10);
}

.info-card:hover::before {
    background: var(--primary);
    transform: scaleX(1);
}

.info-card:hover::after {
    transform: scale(1.18);
    opacity: 1;
}

.info-card h4,
.price-card h4 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 64px;
    margin: 0 0 24px;

    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.info-card .big,
.price-card p {
    position: relative;
    z-index: 2;
    display: block;

    margin: 0 0 8px;

    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 56px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: .03em;
    text-align: center;
}

.muted,
.price-card span {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    color: rgba(15, 37, 76, .62);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

/* INFO RESPONSIVE */

@media (max-width: 1199px) {
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    /*.info-section {
        padding: 50px 0 20px;
    }*/

    .info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 36px;
    }

    .info-card {
        min-height: 190px;
        padding: 30px 22px;
        border-radius: 14px;
    }

    .info-card h4,
    .price-card h4 {
        min-height: auto;
        margin-bottom: 22px;
        font-size: 22px;
    }

    .info-card .big,
    .price-card p {
        font-size: 50px;
    }

    .muted,
    .price-card span {
        font-size: 15px;
    }
}

/* ROUTE */

.route-section {
    padding: 0 0 90px;
}

.route-map-wrap {
    position: relative;
    width: min(100%, 1920px);
    margin: 40px auto 0;
    isolation: isolate;
}

.route-map {
    width: 100%;
    height: auto;
}

.route-map-wrap::after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
}

.map-pin {
    position: absolute;
    z-index: 4;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: .2s ease;
}

.map-pin::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .75;
    animation: ping 1.3s cubic-bezier(0, 0, .2, 1) infinite;
}

.pin-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.pin-highlight svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
}

.pin-vrgada {
    left: 59.45%;
    top: 60%;
}

.pin-zut {
    left: 48.9%;
    top: 57.2%;
}

.pin-pasman {
    left: 52.79%;
    top: 49.7%;
}

.pin-galesnjak {
    left: 51.8%;
    top: 28.0%;
}

.pin-biograd {
    left: 57.65%;
    top: 44.65%;
}

.map-card {
    position: absolute;
    z-index: 10;
    width: min(256px, calc(100vw - 32px));
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(15, 37, 76, .18);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: .2s ease;
}

.map-card img {
    width: 100%;
    height: 128px;
    padding: 16px 16px 0;
    border-radius: 3px;
    object-fit: cover;
}

.map-card h4 {
    margin: 12px 16px 8px;
    color: var(--secondary);
    font-size: 22px;
    line-height: 1.1;
    text-align: center;
}

.map-card p {
    margin: 0 16px 18px;
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.28;
    text-align: left;
}

.card-vrgada {
    left: calc(59.45% + 28px);
    top: 60%;
}

.card-zut {
    right: calc(100% - 48.9% + 18px);
    top: 57.2%;
}

.card-pasman {
    right: calc(100% - 52.79% + 18px);
    top: 49.7%;
}

.card-biograd {
    left: calc(57.65% + 32px);
    top: 44.65%;
}

.card-galesnjak {
    right: calc(100% - 51.79% + 18px);
    top: 39.7%;
}

.pin-vrgada:hover ~ .card-vrgada,
.pin-zut:hover ~ .card-zut,
.pin-pasman:hover ~ .card-pasman,
.pin-biograd:hover ~ .card-biograd,
.pin-galesnjak:hover ~ .card-galesnjak,
.map-card:hover {
    opacity: 1;
    pointer-events: auto;
}

.route-name {
    position: absolute;
    z-index: 3;
    left: 24px;
    bottom: 48px;
    margin: 0;
    color: var(--primary);
    font-size: 24px;
    line-height: 1.15;
    white-space: nowrap;
}

.route-note {
    margin: 0 auto;
    color: var(--secondary);
    font-size: 18px;
    text-align: center;
}

/* PRICING */

.pricing-section {
    position: relative;
    padding: 0 0 90px;
    background:
        radial-gradient(circle at 50% 12%, rgba(214, 87, 58, .05), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 18%, #f8fafc 82%, #ffffff 100%);
    overflow: hidden;
}

.pricing-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 90px),
        linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 90px);
    pointer-events: none;
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.pricing-header .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-header h2 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 420px;
    gap: 64px;
    align-items: start;
}

.pricing-includes__inner {
    padding: 8px 0 0;
}

.pricing-includes h3 {
    margin: 0 0 28px;
    color: var(--secondary);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
}

.pricing-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(15, 37, 76, .12);
}

.pricing-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 60px;
    border-bottom: 1px solid rgba(15, 37, 76, .12);
}

.pricing-list span {
    display: block;
    color: var(--secondary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.pricing-list strong {
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
}

.pricing-list .is-included {
    color: var(--primary);
}

.pricing-list .is-excluded {
    color: var(--secondary);
}

.pricing-list__item--note {
    align-items: center;
    padding: 8px 0;
}

.pricing-list__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pricing-list__text small {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.price-card {
    position: relative;
    min-height: 220px;
    padding: 34px 28px 30px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(15, 37, 76, .10);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 58px rgba(15, 37, 76, .14);
    border-color: rgba(214, 87, 58, .16);
}

.price-card__top-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 92px;
    height: 3px;
    background: var(--primary);
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
}

.price-card h4 {
    margin: 0 0 24px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.price-card__value {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 60px;
    line-height: 1;
    letter-spacing: .02em;
}

.price-card p {
    margin: 14px 0 0;
    color: #71809b;
    font-size: 16px;
    font-weight: 700;
}

/* TABLET */

@media (max-width: 1199px) {
    .pricing-header h2 {
        font-size: 50px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .pricing-cards {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .pricing-header {
        margin-bottom: 40px;
    }

	.pricing-header .section-label {
		font-size: 19px;
	}

	.pricing-header h2 {
		font-size: 38px;
		line-height: 1;
	}

    .pricing-layout {
        gap: 34px;
    }

    .pricing-includes h3 {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 1.4;
    }

    .pricing-list li {
        min-height: 56px;
        gap: 14px;
    }

    .pricing-list span {
        font-size: 18px;
    }

    .pricing-list strong {
        width: 30px;
        font-size: 28px;
    }

    .pricing-list__text small {
        font-size: 13px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .price-card {
        min-height: 200px;
        padding: 30px 22px 26px;
        border-radius: 20px;
    }

    .price-card h4 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .price-card__value {
        font-size: 50px;
    }

    .price-card p {
        font-size: 15px;
    }
}

/* TABLET */

@media (max-width: 1199px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .pricing-cards {
        max-width: 760px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    /*.pricing-section {
        padding: 30px 0;
    }*/

    .pricing-layout {
        margin-top: 40px;
        gap: 34px;
    }

    .pricing-cards {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .price-card {
        min-height: 220px;
        padding: 30px 22px 26px;
        border-radius: 20px;
    }

    .price-card h4 {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .price-card__value {
        font-size: 52px;
    }

    .price-card p {
        font-size: 15px;
    }

    .pricing-includes h3 {
        margin-bottom: 22px;
        font-size: 23px;
        line-height: 1.4;
    }

    .pricing-list li {
        min-height: 60px;
        gap: 16px;
    }

    .pricing-list span {
        font-size: 18px;
    }

    .pricing-list strong {
        width: 34px;
        font-size: 30px;
    }

    .pricing-list__text small {
        font-size: 13px;
    }
}

/* FAQ */

.faq-section {
    padding: 0 0 90px;
}

.faq-list {
    width: min(100% - 48px, 672px);
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid #d1d5db;
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 0;
    border: 0;
    background: transparent;
    color: var(--secondary);
    font-size: 24px;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    font-size: 28px;
}

.faq-item div {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transition: .25s ease;
}

.faq-item.open div {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item p {
    min-height: 0;
    margin: 0;
    padding: 0 40px 20px 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

/* VIDEO */

.video-section {
    position: relative;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-heading {
    margin-bottom: 48px;
}

.video-intro {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(15, 37, 76, .72);
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.video-frame {
    position: relative;
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 14px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 24px;
    box-shadow:
        0 28px 78px rgba(15, 37, 76, .14),
        inset 0 1px 0 rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
}

.video-frame::before {
    content: "";
    position: absolute;
    left: 46px;
    right: 46px;
    top: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(.18);
    transform-origin: center;
    border-radius: 0 0 6px 6px;
}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #0f254c;
}

.video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            rgba(15, 37, 76, .08) 0%,
            rgba(15, 37, 76, .20) 100%
        );
    pointer-events: none;
    transition: opacity .25s ease;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0f254c;
}

/* Play button */

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;

    background: rgba(15, 37, 76, .64);
    color: #ffffff;

    backdrop-filter: blur(12px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .16);

    cursor: pointer;
    transform: translate(-50%, -50%);
    transition:
        background .25s ease,
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        opacity .25s ease,
        visibility .25s ease;
}

.video-play svg {
    width: 38px;
    height: 38px;
    margin-left: 4px;
}

.video-play:hover {
    background: rgba(214, 87, 58, .86);
    border-color: rgba(214, 87, 58, .86);
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, .26),
        0 0 0 8px rgba(214, 87, 58, .12);
}

.video-box.is-playing::after {
    opacity: 0;
}

.video-box.is-playing .video-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* VIDEO RESPONSIVE */

@media (max-width: 1199px) {
    .video-section {
        padding: 80px 0;
    }

    .video-box {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767px) {
    .video-section {
        padding: 45px 0;
    }

    .video-heading {
        margin-bottom: 32px;
    }

    .video-intro {
        font-size: 16px;
    }

    .video-frame {
        width: 100%;
        padding: 8px;
        border-radius: 18px;
    }

    .video-box {
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }

    .video-play {
        width: 64px;
        height: 64px;
    }

    .video-play svg {
        width: 30px;
        height: 30px;
    }
}

/* REVIEWS */

.reviews-section {
    position: relative;
    padding: 90px 0;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-heading {
    margin-bottom: 54px;
}

.reviews-intro {
    max-width: 760px;
    margin: 14px auto 0;
    color: rgba(15, 37, 76, .72);
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.reviews-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 160px;
    height: 48px;
    margin-top: 28px;
    padding: 0 24px;

    border: 2px solid rgba(214, 87, 58, .86);
    border-radius: 6px;
    background: rgba(255, 255, 255, .56);
    color: var(--secondary);

    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;

    backdrop-filter: blur(12px);
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.reviews-add-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(214, 87, 58, .24);
}

/* Slider */

.reviews-slider {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr 58px;
    align-items: center;
    gap: 22px;
    width: min(100% - 48px, 1240px);
    margin: 0 auto;
}

.reviews-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.review-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 26px 28px;

    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 22px;

    box-shadow:
        0 24px 60px rgba(15, 37, 76, .10),
        inset 0 1px 0 rgba(255, 255, 255, .78);

    backdrop-filter: blur(10px);
    overflow: hidden;
    text-align: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        opacity .3s ease;
}

.review-card::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 6px 6px;
    transform: scaleX(.34);
    transform-origin: center;
    transition: transform .3s ease;
}

.review-card::after {
    content: "“";
    position: absolute;
    right: 22px;
    bottom: -24px;
    color: rgba(214, 87, 58, .08);
    font-family: Georgia, serif;
    font-size: 150px;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 87, 58, .24);
    box-shadow:
        0 32px 78px rgba(15, 37, 76, .14),
        0 10px 26px rgba(214, 87, 58, .08);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card__source {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;

    background: rgba(15, 37, 76, .06);
    color: rgba(15, 37, 76, .58);
    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-card .avatar {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    margin-top: 18px;

    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;

    box-shadow:
        0 14px 28px rgba(214, 87, 58, .22),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.review-card__name {
    position: relative;
    z-index: 2;

    margin: 14px 0 0;
    color: var(--secondary);

    font-family: var(--title-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.stars {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;

    margin: 12px 0 14px;

    color: var(--primary);
    font-size: 21px;
    line-height: 1;
    letter-spacing: 1px;
}

.stars .is-filled {
    color: var(--primary);
}

.stars .is-empty {
    color: rgba(15, 37, 76, .18);
}

.review-card p {
    position: relative;
    z-index: 2;

    display: -webkit-box;
    min-height: 0;
    margin: 0;
    color: rgba(15, 37, 76, .78);

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.58;
    text-align: center;

    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.review-more-btn {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding: 18px 0 0;

    border: 0;
    background: transparent;
    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 4px;

    cursor: pointer;
    transition:
        color .25s ease,
        transform .25s ease;
}

.review-more-btn:hover {
    color: var(--secondary);
    transform: translateY(-1px);
}

/* Arrows */

.review-arrow {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    padding: 0;

    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    color: rgba(15, 37, 76, .72);

    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(15, 37, 76, .12);

    cursor: pointer;
    font-size: 0;
    line-height: 1;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.review-arrow::before {
    display: block;
    color: inherit;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-2px);
}

.review-prev::before {
    content: "‹";
}

.review-next::before {
    content: "›";
}

.review-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(214, 87, 58, .22);
}

/* Review dots */

.reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 34px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 999px;
    background: rgba(135, 146, 165, .42);

    cursor: pointer;
    transition:
        width .25s ease,
        background .25s ease,
        transform .25s ease;
}

.reviews-dot.active {
    width: 34px;
    background: var(--primary);
}

.reviews-dot:hover {
    transform: translateY(-1px);
}

/* Empty */

.reviews-empty {
    width: min(100% - 48px, 720px);
    margin: 0 auto;
    padding: 42px 24px;

    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 18px;

    color: rgba(15, 37, 76, .66);
    text-align: center;

    box-shadow: 0 20px 50px rgba(15, 37, 76, .08);
}

/* Review modal */

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.review-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 38, .72);
    backdrop-filter: blur(7px);
}

.review-modal__window {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;

    padding: 34px 34px 32px;

    background: #ffffff;
    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 24px;

    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);

    text-align: center;
}

.review-modal__window--form {
    max-width: 520px;
}

.review-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 0;
    background: transparent;
    color: var(--secondary);

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
    transition:
        color .25s ease,
        transform .25s ease;
}

.review-modal__close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.review-modal__avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;
    margin: 16px auto 12px;

    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 700;

    box-shadow:
        0 16px 34px rgba(214, 87, 58, .24),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.review-modal__source {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 0 12px;

    background: rgba(15, 37, 76, .06);
    color: rgba(15, 37, 76, .58);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-modal__window h3 {
    margin: 0;
    color: var(--secondary);

    font-family: var(--title-font);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.review-modal__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    margin: 14px 0 18px;

    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.review-modal__stars .is-filled {
    color: var(--primary);
}

.review-modal__stars .is-empty {
    color: rgba(15, 37, 76, .18);
}

.review-modal__window p {
    margin: 0;
    color: rgba(15, 37, 76, .78);

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.68;
    text-align: left;
    white-space: pre-line;
}

.review-google-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 18px;

    border: 2px solid rgba(15, 37, 76, .88);
    border-radius: 6px;
    background: transparent;
    color: var(--secondary);

    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.review-google-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Add review form */

.review-form-intro {
    margin: 14px 0 22px !important;
    color: rgba(15, 37, 76, .68) !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.review-form label {
    display: block;
}

.review-form label span {
    display: block;
    margin-bottom: 8px;

    color: rgba(15, 37, 76, .68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-form select,
.review-form textarea {
    width: 100%;

    border: 1px solid rgba(15, 37, 76, .16);
    border-radius: 12px;
    background: #ffffff;
    color: var(--secondary);

    font-family: var(--text-font);
    font-size: 15px;
    line-height: 1.45;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.review-form select {
    height: 52px;
    padding: 0 14px;
}

.review-form textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.review-form select:focus,
.review-form textarea:focus {
    border-color: rgba(214, 87, 58, .58);
    box-shadow: 0 0 0 4px rgba(214, 87, 58, .08);
}

.review-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;
    margin-top: 4px;

    border: 0;
    border-radius: 12px;
    background: var(--secondary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.review-submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(214, 87, 58, .22);
}

.review-submit-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.review-form-message {
    display: none;
    padding: 12px 14px;
    border-radius: 12px;

    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.review-form-message.error,
.review-form-message.success {
    display: block;
}

.review-form-message.error {
    background: #fff1f1;
    color: #b42318;
}

.review-form-message.success {
    background: #ecfdf3;
    color: #027a48;
}

body.modal-open {
    overflow: hidden;
}

/* REVIEWS RESPONSIVE */

@media (max-width: 1199px) {
    .reviews-slider {
        grid-template-columns: 52px 1fr 52px;
        gap: 16px;
    }

    .reviews-track {
        gap: 18px;
    }

    .review-card {
        min-height: 350px;
        padding: 28px 22px 26px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 45px 0;
    }

    .reviews-heading {
        margin-bottom: 34px;
    }

    .reviews-intro {
        font-size: 16px;
    }

    .reviews-add-btn {
        min-width: 150px;
        height: 46px;
        margin-top: 22px;
        font-size: 20px;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 420px);
        gap: 18px;
    }

    .reviews-track {
        display: block;
    }

    .review-card {
        display: none;
        min-height: 340px;
        padding: 28px 22px 26px;
        border-radius: 18px;
    }

	.review-card.active {
		display: flex;
	}

	.review-card.is-prev,
	.review-card.is-next,
	.review-card.is-hidden {
		display: none !important;
	}

    .review-card__source {
        top: 14px;
        right: 14px;
        font-size: 9px;
    }

    .review-card .avatar {
        width: 58px;
        height: 58px;
        font-size: 34px;
    }

    .review-card__name {
        font-size: 23px;
    }

    .review-card p {
        font-size: 14px;
        line-height: 1.56;
    }

    .review-arrow {
        position: absolute;
        bottom: -64px;
        width: 48px;
        height: 48px;
    }

    .review-arrow::before {
        font-size: 38px;
    }

    .review-prev {
        left: calc(50% - 58px);
    }

    .review-next {
        right: calc(50% - 58px);
    }

    .reviews-dots {
        margin-top: 84px;
    }

    .review-modal__window {
        padding: 30px 22px 26px;
        border-radius: 18px;
    }

    .review-modal__window h3 {
        font-size: 30px;
    }

    .review-modal__window p {
        font-size: 15px;
    }

    .review-google-link {
        font-size: 18px;
    }
}

/* BOOKING */

.booking-section {
    padding: 40px 0 80px;
}

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

.booking-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 36px;
}

.booking-content p {
    max-width: 512px;
    margin: 0;
    color: var(--secondary);
    font-size: 18px;
    line-height: 1.45;
    text-align: left;
}

.calendar-mockup {
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-head button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--secondary);
    font-size: 28px;
}

.calendar-week,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-week {
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 13px;
}

.calendar-days span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 50%;
    font-size: 15px;
}

.calendar-days .busy {
    background: #f3f4f6;
    color: #aaaaaa;
    text-decoration: line-through;
}

.calendar-days .selected {
    background: var(--primary);
    color: #ffffff;
}

/* FOOTER */

.site-footer {
    position: relative;
    padding: 78px 0 26px;
    background:
        radial-gradient(circle at 18% 0%, rgba(214, 87, 58, .16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .08), transparent 24%),
        #0f254c;
    color: #ffffff;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/pattern_map.webp");
    background-size: cover;
    background-position: center;
    opacity: .035;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: var(--primary);
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1.35fr;
    gap: 64px;
    align-items: start;
}

/* Brand */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 26px;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 110px;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.75;
}

/* Footer socials */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 26px 0 0;
    padding: 0;

    list-style: none;
}

.footer-socials li {
    display: flex;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;

    background: rgba(255, 255, 255, .06);
    color: #ffffff;

    backdrop-filter: blur(10px);

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(214, 87, 58, .22);
}

.footer-socials svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Contact */

.footer-contact {
    min-width: 0;
}

.footer-contact h3,
.footer-location h3 {
    margin: 0 0 26px;
    color: var(--primary);

    font-family: var(--title-font);
    font-size: 28px;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    margin-bottom: 18px;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact span {
    display: block;
    margin-bottom: 6px;

    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-contact a,
.footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, .86);

    font-size: 16px;
    line-height: 1.55;
    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

/* Location map */

.footer-location {
    min-width: 0;
}

.footer-map-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.footer-map {
    position: relative;
    width: 100%;
    min-height: 260px;

    border-radius: 18px;
    overflow: hidden;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .10);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.footer-map-link:hover .footer-map {
    transform: translateY(-4px);
    border-color: rgba(214, 87, 58, .52);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .26),
        0 0 0 1px rgba(214, 87, 58, .16);
}

.footer-map::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 0;
    z-index: 2;

    height: 3px;
    background: var(--primary);
    border-radius: 0 0 6px 6px;

    pointer-events: none;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
    filter: saturate(.9) contrast(.96);
    pointer-events: none;
}

/* Bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 58px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.4;
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;

    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .82);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.footer-top-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* FOOTER RESPONSIVE */

@media (max-width: 1199px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 46px 40px;
    }

    .footer-location {
        grid-column: span 2;
    }

    .footer-map {
        min-height: 300px;
    }

    .footer-map iframe {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 56px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-location {
        grid-column: auto;
    }

    .footer-logo img {
        width: 128px;
    }

    .footer-brand p {
        max-width: none;
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-socials {
        gap: 10px;
        margin-top: 22px;
    }

    .footer-socials a {
        width: 42px;
        height: 42px;
    }

    .footer-socials svg {
        width: 19px;
        height: 19px;
    }

    .footer-contact h3,
    .footer-location h3 {
        margin-bottom: 18px;
        font-size: 25px;
    }

    .footer-contact li {
        margin-bottom: 16px;
    }

    .footer-contact a,
    .footer-contact p {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer-map {
        min-height: 240px;
        border-radius: 16px;
    }

    .footer-map iframe {
        height: 240px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 42px;
        padding-top: 22px;
    }

    .footer-top-link {
        min-height: 40px;
    }
}

/* RESPONSIVE */

@media (min-width: 1600px) {
    .hero-inner {
        padding-inline: 120px;
    }
}

@media (max-width: 1399px) {
    .hero-inner {
        padding-inline: 48px;
    }

    .main-nav a {
        padding-inline: 12px;
        font-size: 20px;
    }
}

@media (max-width: 1050px) {
    .hero-section {
        background-position: 56% 34%;
    }

    .hero-inner {
        padding-inline: 16px;
    }

    .hero-top {
        align-items: flex-start;
        padding-top: 12px;
    }

    .hero-logo {
        height: 70px;
    }

    .menu-toggle {
        display: block;
        margin-top: 28px;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: 94px;
        left: 50%;
        z-index: 1002;
        display: block;
        width: min(390px, calc(100vw - 32px));
        max-height: calc(100vh - 118px);
        margin: 0;
        padding: 14px;
        overflow-y: auto;
        background: rgba(15, 37, 76, .30);
        border: 1px solid rgba(255, 255, 255, .16);
        backdrop-filter: blur(18px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 12px);
        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
        z-index: 999999;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 6px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        justify-content: center;
        width: 100%;
        height: 50px;
        padding: 0 18px;
        font-size: 22px;
    }

    .hero-content {
        align-items: center;
        max-width: 640px;
        margin-inline: auto;
        padding: 48px 0 160px;
        text-align: center;
        transform: translateY(20px);
    }

    .hero-content .eyebrow {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-text {
        max-width: 560px;
        font-size: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .vessel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vessel-content {
        padding: 80px 32px 0;
    }

    .vessel-image {
        margin-top: -48px;
    }

    .vessel-image img {
        width: 100%;
        max-width: 760px;
    }

    .gallery-section {
        /*width: min(100% - 32px, 1536px);*/
        gap: 12px;
    }

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

    .gallery-side {
        display: none;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .included-block {
        order: 2;
        max-width: 672px;
        margin: auto;
    }

    .price-cards {
        order: 1;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .section-heading h2 {
        font-size: 52px;
    }

    .pin-vrgada {
        left: 61.85%;
        top: 59.96%;
    }

    .pin-zut {
        left: 42.7%;
        top: 57%;
    }

    .pin-pasman {
        left: 49.8%;
        top: 49.3%;
    }
	
	.pin-galesnjak {
        left: 47.6%;
        top: 28.0%;
    }

    .pin-biograd {
        left: 58.55%;
        top: 44.25%;
    }

    .map-card {
        display: none;
    }

    .route-name {
        bottom: 32px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 32px, 1280px);
    }

    .hero-top {
        align-items: flex-start;
    }

    .hero-logo {
        height: 60px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        margin-top: 22px;
    }

    .main-nav {
        top: 84px;
        width: min(360px, calc(100vw - 24px));
        max-height: calc(100vh - 104px);
        padding: 12px;
        background: rgba(15, 37, 76, .36);
    }

    .main-nav a {
        height: 48px;
        font-size: 21px;
        letter-spacing: .09em;
    }

    .section-heading h2 {
        font-size: 43px;
    }

    .eyebrow {
        font-size: 24px;
    }

    .hero-section {
        background-position: 60% 78%;
    }

    .hero-content {
        padding-top: 48px;
        padding-bottom: 150px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 16px;
    }

    .scroll-down {
        width: 48px;
        height: 48px;
    }

    .scroll-down svg {
        width: 32px;
        height: 32px;
    }

    .vessel-section {
        min-height: auto;
    }

    .vessel-content {
        padding: 80px 24px 0;
    }

    .gallery-main img {
        height: 400px;
    }

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

    .info-card {
        width: 100%;
        max-width: 384px;
        margin-inline: auto;
    }

    .pin-vrgada {
        left: 62.3%;
        top: 57.26%;
    }

    .pin-zut {
        left: 41.38%;
        top: 54.2%;
    }

    .pin-pasman {
        left: 48.95%;
        top: 45.8%;
    }
	
	.pin-galesnjak {
        left: 47.5%;
        top: 20.0%;
    }

    .pin-biograd {
        left: 58.85%;
        top: 40.65%;
    }

    .route-name {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 12px auto 0;
        padding-inline: 16px;
        font-size: 18px;
        text-align: center;
        text-transform: uppercase;
        white-space: normal;
    }

    .route-note {
        margin-top: 8px;
        padding-inline: 16px;
        font-size: 12px;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .included-block h3 {
        text-align: center;
    }

    .included-list li {
        font-size: 22px;
    }

    .video-section {
        padding-top: 12px;
    }

    .video-box {
        width: min(100% - 32px, 1600px);
        height: clamp(215px, 30dvh, 320px);
		width: 100%;
    }

    .reviews-track {
        grid-template-columns: 1fr;
        width: min(100% - 96px, 360px);
    }

    .review-card:not(.active) {
        display: none;
    }

    .booking-content {
        padding-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-contact .eyebrow,
    .footer-map .eyebrow {
        margin-bottom: 24px;
    }

    .footer-about img {
        width: 200px;
    }

    .calendar-mockup {
        padding: 16px;
    }

    .calendar-days span {
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .hero-inner {
        padding-inline: 12px;
    }

    .hero-logo {
        height: 60px;
    }

    .menu-toggle {
        margin-top: 18px;
    }

    .main-nav {
        top: 93px;
        width: calc(100vw - 20px);
    }

    .main-nav a {
        font-size: 20px;
    }
}

body.menu-open {
    overflow: hidden;
}

/* HERO ACTIONS */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

/* Main Book Now button */

.hero-actions .btn-light {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 188px;
    height: 58px;
    padding: 0 36px;

    border: 2px solid rgba(214, 87, 58, .85);
    border-radius: 5px;

    background: rgba(15, 37, 76, .01);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center;

    backdrop-filter: blur(14px);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    overflow: hidden;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.hero-actions .btn-light::before,
.hero-actions .btn-light::after {
    display: none;
    content: none;
}

.hero-actions .btn-light:hover {
    border-color: #d6573a;
    background: rgba(214, 87, 58, .18);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .22),
        0 0 0 1px rgba(214, 87, 58, .18);
}

/* Social icons */

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links li {
    display: flex;
}

.social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(15, 37, 76, .20);
    color: #ffffff;

    backdrop-filter: blur(14px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .16),
        inset 0 1px 0 rgba(255, 255, 255, .10);

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.social-links a:hover {
    border-color: rgba(214, 87, 58, .78);
    background: rgba(214, 87, 58, .22);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, .22),
        0 0 0 1px rgba(214, 87, 58, .18);
}

.social-links svg {
    width: 23px;
    height: 23px;
    display: block;
}

/* Mobile */

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 28px;
    }

    .hero-actions .btn-light {
        min-width: 184px;
        height: 56px;
        font-size: 23px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 48px;
        height: 48px;
    }

    .social-links svg {
        width: 22px;
        height: 22px;
    }
}

/* REVIEWS SLIDER FINAL FIX */

.review-card {
    display: none;
}

.review-card.active,
.review-card.is-prev,
.review-card.is-next {
    display: flex;
}

.review-card.is-prev {
    order: 1;
}

.review-card.active {
    order: 2;
}

.review-card.is-next {
    order: 3;
}

.review-card.is-hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .reviews-track {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .reviews-slider {
        position: relative;
        display: block;
        width: min(100% - 24px, 460px);
        margin: 0 auto;
        padding-bottom: 78px;
    }

    .reviews-track {
        display: block !important;
        width: 100%;
    }

    .review-card {
        width: 100%;
        display: none !important;
    }

    .review-card.active {
        display: flex !important;
    }

    .review-card.is-prev,
    .review-card.is-next,
    .review-card.is-hidden {
        display: none !important;
    }

    .review-arrow {
        position: absolute;
        bottom: 0;
        top: auto;
    }

    .review-prev {
        left: calc(50% - 58px);
    }

    .review-next {
        right: calc(50% - 58px);
    }

    .reviews-dots {
        margin-top: 18px;
    }
}


/* ABOUT TOUR SECTION */

.about-tour-section {
    position: relative;
    padding-bottom: 90px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(248, 250, 252, 0.78) 12%,
            rgba(248, 250, 252, 0.96) 50%,
            rgba(248, 250, 252, 0.78) 88%,
            rgba(255, 255, 255, 0) 100%
        );
    overflow: hidden;
}

.about-tour-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/topography.webp") center center / cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.about-tour-wrap {
    position: relative;
    z-index: 1;
}

.about-tour-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-tour-heading .section-subtitle {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(15, 37, 76, 0.72);
    font-size: 22px;
    line-height: 1.7;
}

.about-tour-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.about-tour-card {
    position: relative;
    min-height: 100%;
    padding: 34px 28px 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 37, 76, 0.08);
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(15, 37, 76, 0.08);
    text-align: left;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.about-tour-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 86px;
    height: 3px;
    background: var(--primary);
    border-radius: 999px;
    opacity: 0.9;
}

.about-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(15, 37, 76, 0.12);
    border-color: rgba(214, 87, 58, 0.24);
}

.about-tour-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(214, 87, 58, 0.10);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(214, 87, 58, 0.10);
}

.about-tour-card__icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.about-tour-card h3 {
    margin: 0 0 14px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 28px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-tour-card p {
    margin: 0;
    color: rgba(15, 37, 76, 0.74);
    font-size: 18px;
    line-height: 1.75;
}

.about-tour-cta {
    max-width: 860px;
    margin: 60px auto 0;
    padding-top: 34px;
    text-align: center;
}

.about-tour-cta__text {
    margin: 0 0 24px;
    color: var(--secondary);
    font-size: 26px;
    line-height: 1.55;
    font-weight: 700;
}

.about-tour-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 58px;
    padding: 0 34px;
    border: 1px solid rgba(214, 87, 58, 0.9);
    border-radius: 8px;
    background: rgba(15, 37, 76, 0.02);
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-tour-cta__button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 37, 76, 0.16);
}

@media (max-width: 1199px) {
    .about-tour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-tour-heading .section-subtitle {
        font-size: 20px;
    }

    .about-tour-cta__text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .about-tour-section {
        padding: 45px 0;
    }

    .about-tour-heading .section-subtitle {
        margin-top: 16px;
        font-size: 17px;
        line-height: 1.65;
    }

    .about-tour-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 34px;
    }

    .about-tour-card {
        padding: 28px 22px 24px;
        border-radius: 18px;
    }

    .about-tour-card::before {
        left: 22px;
        width: 72px;
    }

    .about-tour-card__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .about-tour-card__icon svg {
        width: 26px;
        height: 26px;
    }

    .about-tour-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .about-tour-card p {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-tour-cta {
        margin-top: 40px;
        padding-top: 20px;
    }

    .about-tour-cta__text {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .about-tour-cta__button {
        min-width: 190px;
        height: 52px;
        font-size: 21px;
    }
}


/* PRICING PROMO SECTION */

.pricing-promo-section {
    position: relative;
    padding-bottom: 90px;
    background: #ffffff;
    overflow: hidden;
}

.pricing-promo-header {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.pricing-promo-header .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.pricing-promo-header h2 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-promo-header p {
    max-width: 700px;
    margin: 18px auto 0;
    color: rgba(15, 37, 76, .70);
    font-size: 17px;
    line-height: 1.65;
}

.pricing-promo-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-promo-item {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 26px;
    align-items: center;
    padding: 24px 24px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 37, 76, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pricing-promo-item:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 87, 58, .20);
    box-shadow: 0 24px 56px rgba(15, 37, 76, .09);
}

.pricing-promo-main {
    min-width: 0;
}

.pricing-promo-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-promo-duration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .10em;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-promo-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(214, 87, 58, .10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-promo-item h3 {
    max-width: 720px;
    margin: 0 0 10px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(26px, 3vw, 42px);
    line-height: .98;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-promo-description {
    margin: 0 0 10px;
    color: rgba(15, 37, 76, .72);
    font-size: 15px;
    line-height: 1.55;
}

.pricing-promo-route {
    margin: 0 0 14px;
    color: rgba(15, 37, 76, .78);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-promo-route strong {
    color: var(--secondary);
}

.pricing-promo-included {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-promo-included li {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 37, 76, .05);
    color: rgba(15, 37, 76, .74);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.pricing-promo-included li::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Price area */

.pricing-promo-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.pricing-promo-price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 116px;
    padding: 18px 18px;
    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 18px;
    background: #ffffff;
}

.pricing-promo-price-box--private {
    border-color: rgba(214, 87, 58, .28);
    background: linear-gradient(
        180deg,
        rgba(214, 87, 58, .05) 0%,
        rgba(214, 87, 58, .02) 100%
    );
}

.pricing-promo-price-box span {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .10em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pricing-promo-price-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.pricing-promo-price-box del {
    color: rgba(15, 37, 76, .42);
    font-family: var(--title-font);
    font-size: 28px;
    line-height: 1;
    letter-spacing: .03em;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
}

.pricing-promo-price-box strong {
    color: var(--primary);
    font-family: var(--title-font);
    font-size: 34px;
    line-height: .95;
    letter-spacing: .02em;
}

.pricing-promo-price-box--private strong {
    color: var(--primary);
}

.pricing-promo-price-box small {
    display: block;
    margin-top: 8px;
    color: rgba(15, 37, 76, .60);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Bottom button */

.pricing-promo-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pricing-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 58px;
    padding: 0 34px;

    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow: 0 16px 34px rgba(214, 87, 58, .22);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.pricing-promo-btn:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 37, 76, .24);
}

/* Tablet */

@media (max-width: 1100px) {
    .pricing-promo-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pricing-promo-prices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 767px) {
    .pricing-promo-header {
        margin-bottom: 32px;
    }

    .pricing-promo-header p {
        font-size: 15px;
    }

    .pricing-promo-item {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .pricing-promo-title-row {
        gap: 8px;
        margin-bottom: 10px;
    }

    .pricing-promo-duration,
    .pricing-promo-discount {
        min-height: 32px;
        font-size: 11px;
        padding: 0 12px;
    }

    .pricing-promo-item h3 {
        font-size: 30px;
    }

    .pricing-promo-description {
        font-size: 14px;
    }

    .pricing-promo-route {
        font-size: 13px;
    }

    .pricing-promo-included li {
        font-size: 11px;
        min-height: 28px;
        padding: 0 10px;
    }

    .pricing-promo-prices {
        grid-template-columns: 1fr;
    }

    .pricing-promo-price-box {
        min-height: auto;
        padding: 16px;
    }

    .pricing-promo-price-box span {
        font-size: 13px;
    }

    .pricing-promo-price-box del {
        font-size: 24px;
    }

    .pricing-promo-price-box strong {
        font-size: 30px;
    }

    .pricing-promo-btn {
        width: 100%;
        min-width: 0;
        font-size: 20px;
    }
}

#booking-tours {
    scroll-margin-top: 90px;
}

/* =========================
   BOOKING PAGE
========================= */

.booking-tours-section {
    padding: 70px 0 90px;
    background: #ffffff;
}

.booking-tours-container {
    max-width: 1480px;
}

.booking-tours-heading {
    max-width: 880px;
    margin: 0 auto 44px;
    text-align: center;
}

.booking-tours-heading .eyebrow {
    margin-bottom: 14px;
}

.booking-tours-heading h1 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(46px, 5vw, 72px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.booking-tours-intro {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(15, 37, 76, .72);
    font-size: 20px;
    line-height: 1.6;
}

.booking-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.booking-tour-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(15, 37, 76, .08);
}

.booking-tour-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(15, 37, 76, 1) 0%, rgba(19, 49, 98, 1) 100%);
}

.booking-tour-card__discount-wrap {
    display: flex;
    align-items: center;
}

.booking-tour-card__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(214, 87, 58, .98);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.booking-tour-card__duration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.booking-tour-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 22px 20px;
    flex: 1;
}

.booking-tour-card__title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.booking-tour-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(15, 37, 76, .06);
    font-size: 28px;
    line-height: 1;
}

.booking-tour-card__title-row h3 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 34px;
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.booking-tour-card__desc {
    margin: 0;
    color: rgba(15, 37, 76, .72);
    font-size: 17px;
    line-height: 1.55;
}

.booking-tour-card__route {
    margin: 0;
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.5;
}

.booking-tour-card__included {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.booking-tour-card__included span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 37, 76, .05);
    color: rgba(15, 37, 76, .72);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.booking-tour-card__included span::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.booking-tour-card__prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: auto;
}

.booking-tour-card__price-box {
    padding: 16px;
    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 18px;
    background: #ffffff;
}

.booking-tour-card__price-box--accent {
    border-color: rgba(214, 87, 58, .28);
    background: linear-gradient(180deg, rgba(214, 87, 58, .04) 0%, rgba(214, 87, 58, .08) 100%);
}

.booking-tour-card__price-label {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.booking-tour-card__price-value {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.booking-tour-card__old-price {
    color: #9aa6ba;
    font-size: 24px;
    line-height: 1;
    text-decoration: line-through;
}

.booking-tour-card__new-price {
    color: var(--primary);
    font-family: var(--title-font);
    font-size: 42px;
    line-height: .95;
    text-transform: uppercase;
}

.booking-tour-card__price-note {
    margin-top: 8px;
    color: rgba(15, 37, 76, .62);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.booking-tour-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    background: #d6573a;
    color: #ffffff;
    font-family: var(--title-font);
    font-size: 28px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(214, 87, 58, .22);
    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.booking-tour-card__btn:hover {
    background: #c94c31;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(214, 87, 58, .28);
}

/* =========================
   BOOKING ORDER MODAL
========================= */

.booking-order-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.booking-order-modal--active {
    display: flex;
}

.booking-order-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(6, 18, 38, .78);
    backdrop-filter: blur(9px);
}

.booking-order-modal__window {
    position: relative;
    z-index: 2;

    width: min(100%, 1080px);
    max-height: 92vh;
    overflow-y: auto;

    padding: 34px 34px 30px;

    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.booking-order-modal__window::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.booking-order-modal__window::before {
    content: "";
    position: absolute;
    left: 46px;
    right: 46px;
    top: 0;

    height: 4px;

    background: var(--primary);
    border-radius: 0 0 8px 8px;
}

.booking-order-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;
    background: rgba(15, 37, 76, .06);
    color: var(--secondary);

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.booking-order-modal__close:hover {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(90deg);
}

.booking-order-modal__header {
    max-width: 760px;
    margin: 0 auto 28px;
    padding-right: 48px;
    padding-left: 48px;
    text-align: center;
}

.booking-order-modal__eyebrow {
    margin: 0 0 10px;

    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.booking-order-modal__header h3 {
    margin: 0;

    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(38px, 4vw, 58px);
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.booking-order-modal__header p {
    max-width: 640px;
    margin: 14px auto 0;

    color: rgba(15, 37, 76, .70);
    font-size: 16px;
    line-height: 1.6;
}

.booking-order-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* top variants */

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

.booking-order-variant {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 116px;
    padding: 18px 20px;

    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 18px;
    background: #ffffff;
    color: var(--secondary);

    text-align: left;
    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.booking-order-variant.is-active {
    border-color: rgba(214, 87, 58, .48);
    background:
        radial-gradient(circle at 100% 0%, rgba(214, 87, 58, .12), transparent 34%),
        #ffffff;
    box-shadow: 0 16px 34px rgba(214, 87, 58, .12);
}

.booking-order-variant:hover {
    transform: translateY(-2px);
}

.booking-order-variant span {
    margin-bottom: 8px;

    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.booking-order-variant__prices {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.booking-order-variant__prices del {
    color: rgba(15, 37, 76, .38);
    font-family: var(--title-font);
    font-size: 30px;
    line-height: 1;
    letter-spacing: .04em;

    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
}

.booking-order-variant__prices strong {
    color: var(--primary);
    font-family: var(--title-font);
    font-size: 46px;
    line-height: .9;
    letter-spacing: .03em;
}

.booking-order-variant small {
    margin-top: 8px;

    color: rgba(15, 37, 76, .58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* form */

.booking-order-form-box {
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 24px;

    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 22px;
    background: rgba(15, 37, 76, .025);
}

.booking-order-form-box h4 {
    margin: 0 0 2px;

    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 34px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

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

.booking-order-form label span {
    display: block;
    margin-bottom: 8px;

    color: rgba(15, 37, 76, .62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.booking-order-form input[type="text"],
.booking-order-form input[type="tel"],
.booking-order-form input[type="email"],
.booking-order-form input[type="date"],
.booking-order-form input[type="number"] {
    width: 100%;
    height: 54px;
    padding: 0 15px;

    border: 1px solid rgba(15, 37, 76, .14);
    border-radius: 12px;
    background: #ffffff;
    color: var(--secondary);

    font-family: var(--text-font);
    font-size: 15px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.booking-order-form input[type="date"] {
    cursor: pointer;
    color-scheme: light;
}

.booking-order-form input:focus {
    border-color: rgba(214, 87, 58, .58);
    box-shadow: 0 0 0 4px rgba(214, 87, 58, .08);
}

/* summary bottom */

.booking-order-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.booking-order-summary div {
    padding: 18px 18px;

    border: 1px solid rgba(15, 37, 76, .08);
    border-radius: 16px;
    background: #ffffff;
}

.booking-order-summary span {
    display: block;
    margin-bottom: 8px;

    color: rgba(15, 37, 76, .52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.booking-order-summary strong {
    display: block;

    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 42px;
    line-height: .95;
    letter-spacing: .03em;
}

/* policy */

.booking-order-policy {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;

    padding: 16px;

    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 16px;
    background: rgba(15, 37, 76, .035);
}

.booking-order-policy input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: var(--primary);
}

.booking-order-policy span {
    margin: 0 !important;

    color: rgba(15, 37, 76, .72) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 1.55 !important;
}

.booking-order-policy a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* message */

.booking-order-message {
    display: none;

    padding: 13px 15px;
    border-radius: 12px;

    font-size: 14px;
    line-height: 1.4;
}

.booking-order-message--error,
.booking-order-message--success {
    display: block;
}

.booking-order-message--error {
    background: #fff1f1;
    color: #b42318;
}

.booking-order-message--success {
    background: #ecfdf3;
    color: #027a48;
}

/* submit */

.booking-order-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 58px;

    border: 0;
    border-radius: 8px;
    background: #d6573a;
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow: 0 16px 34px rgba(214, 87, 58, .22);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.booking-order-submit:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 37, 76, .24);
}

/* responsive modal */

@media (max-width: 900px) {
    .booking-order-variants,
    .booking-order-summary,
    .booking-order-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .booking-order-modal {
        padding: 12px;
    }

    .booking-order-modal__window {
        max-height: 92vh;
        padding: 28px 18px 22px;
        border-radius: 20px;
    }

    .booking-order-modal__header {
        padding-right: 38px;
        padding-left: 0;
    }

    .booking-order-modal__header h3 {
        font-size: 36px;
    }

    .booking-order-modal__header p {
        font-size: 15px;
    }

    .booking-order-variant {
        min-height: 104px;
    }

    .booking-order-variant__prices strong {
        font-size: 40px;
    }

    .booking-order-form-box {
        padding: 18px;
    }

    .booking-order-summary strong {
        font-size: 36px;
    }
}

/* BOOKING FIXES FINAL */

/* mobile cards */

@media (max-width: 767px) {
    .booking-tours-container {
        max-width: 100%;
    }

    .booking-tours-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }

    .booking-tour-card {
        width: 100%;
        border-radius: 20px;
    }

    .booking-tour-card__top {
        min-height: 58px;
        padding: 12px 14px;
    }

    .booking-tour-card__discount {
        min-height: 28px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: .08em;
    }

    .booking-tour-card__duration {
        min-width: 52px;
        height: 34px;
        padding: 0 12px;
        font-size: 20px;
    }

    .booking-tour-card__body {
        padding: 16px 14px;
        gap: 12px;
    }

    .booking-tour-card__title-row {
        gap: 10px;
        align-items: flex-start;
    }

    .booking-tour-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 21px;
    }

    .booking-tour-card__title-row h3 {
        font-size: 25px;
        line-height: 1;
    }

    .booking-tour-card__desc,
    .booking-tour-card__route {
        font-size: 14px;
        line-height: 1.55;
    }

    .booking-tour-card__included {
        gap: 7px;
    }

    .booking-tour-card__included span {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
        white-space: normal;
    }

    .booking-tour-card__prices {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .booking-tour-card__price-box {
        padding: 14px;
        border-radius: 15px;
    }

    .booking-tour-card__price-label {
        font-size: 12px;
    }

    .booking-tour-card__old-price {
        font-size: 22px;
    }

    .booking-tour-card__new-price {
        font-size: 36px;
    }

    .booking-tour-card__btn {
        min-height: 50px;
        border-radius: 8px;
        font-size: 22px;
    }
}

/* close button center */

.booking-order-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    width: 42px;
    height: 42px;

    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d6573a;
    color: #ffffff;

    cursor: pointer;

    font-size: 0 !important;
    line-height: 1;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.booking-order-modal__close::before,
.booking-order-modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;

    width: 18px;
    height: 3px;

    border-radius: 999px;
    background: #ffffff;

    transform-origin: center;
}

.booking-order-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.booking-order-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-order-modal__close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
    box-shadow: 0 12px 26px rgba(15, 37, 76, .22);
}

/* modal page scroll instead of inner window scroll */

.booking-order-modal {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    min-height: 100vh;
    align-items: flex-start;
    padding: 42px 24px;
}

.booking-order-modal__overlay {
    position: fixed;
}

.booking-order-modal__window {
    max-height: none !important;
    overflow: visible !important;
}

/* datepicker input */

.booking-order-form .flatpickr-input,
.booking-order-form input[type="text"].flatpickr-input {
    width: 100%;
    height: 54px;
    padding: 0 15px;

    border: 1px solid rgba(15, 37, 76, .14);
    border-radius: 12px;
    background: #ffffff;
    color: var(--secondary);

    font-family: var(--text-font);
    font-size: 15px;

    outline: none;
    cursor: pointer;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.booking-order-form .flatpickr-input:focus {
    border-color: rgba(214, 87, 58, .58);
    box-shadow: 0 0 0 4px rgba(214, 87, 58, .08);
}

/* flatpickr calendar style */

.flatpickr-calendar {
    border: 1px solid rgba(15, 37, 76, .12) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 60px rgba(15, 37, 76, .18) !important;
    font-family: var(--text-font) !important;
    overflow: hidden !important;
}

.flatpickr-months {
    background: var(--secondary) !important;
}

.flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: var(--secondary) !important;
}

.flatpickr-weekdays {
    background: var(--secondary) !important;
}

span.flatpickr-weekday {
    color: rgba(255, 255, 255, .8) !important;
    font-weight: 700 !important;
}

.flatpickr-day {
    color: var(--secondary) !important;
    border-radius: 10px !important;
}

.flatpickr-day:hover {
    background: rgba(214, 87, 58, .10) !important;
    border-color: rgba(214, 87, 58, .10) !important;
}

.flatpickr-day.today {
    border-color: var(--primary) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.flatpickr-day.disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(15, 37, 76, .30) !important;
}

/* modal mobile */

@media (max-width: 767px) {
    .booking-order-modal {
        padding: 18px 12px;
    }

    .booking-order-modal__window {
        width: 100%;
        padding: 26px 16px 18px;
        border-radius: 20px;
    }

    .booking-order-modal__window::before {
        left: 24px;
        right: 24px;
    }

    .booking-order-modal__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .booking-order-modal__close::before,
    .booking-order-modal__close::after {
        width: 16px;
        height: 3px;
    }

    .booking-order-modal__header {
        padding: 0 42px 0 0;
        margin-bottom: 22px;
        text-align: left;
    }

    .booking-order-modal__header h3 {
        font-size: 34px;
    }

    .booking-order-modal__header p {
        font-size: 14px;
    }
}

/* BOOKING POLICY PAGE */

#policy-content {
    scroll-margin-top: 40px;
}

.policy-section {
    padding: 88px 0 96px;
    background: #ffffff;
}

.policy-card {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 44px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 26px 70px rgba(15, 37, 76, .10),
        inset 0 1px 0 rgba(255, 255, 255, .84);
}

.policy-card__header {
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(15, 37, 76, .10);
    text-align: center;
}

.policy-card__header .eyebrow {
    margin-bottom: 14px;
}

.policy-card__header h1 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(46px, 5vw, 72px);
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.policy-card__header p {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(15, 37, 76, .70);
    font-size: 17px;
    line-height: 1.65;
}

.policy-content {
    color: rgba(15, 37, 76, .78);
    font-size: 17px;
    line-height: 1.72;
}

.policy-content h2 {
    margin: 0 0 20px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 46px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.policy-content h3 {
    margin: 34px 0 12px;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 32px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.policy-content p {
    margin: 0 0 18px;
}

.policy-content ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.policy-content li {
    position: relative;
    padding-left: 22px;
}

.policy-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.policy-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid rgba(15, 37, 76, .10);
}

.policy-back-btn {
    background: var(--secondary);
    color: #ffffff;
}

@media (max-width: 767px) {
    .policy-section {
        padding: 64px 0 72px;
    }

    .policy-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .policy-card__header {
        margin-bottom: 26px;
        padding-bottom: 22px;
    }

    .policy-card__header p {
        font-size: 15px;
    }

    .policy-content {
        font-size: 15px;
        line-height: 1.65;
    }

    .policy-content h2 {
        font-size: 36px;
    }

    .policy-content h3 {
        font-size: 27px;
    }

    .policy-actions .btn {
        width: 100%;
    }
}

.policy-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;

    margin-top: 42px;
    padding-top: 32px;

    border-top: 1px solid rgba(15, 37, 76, .10);
}

.policy-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 58px;
    padding: 0 34px;

    border: 0;
    border-radius: 8px;

    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.policy-actions .btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(214, 87, 58, .22);
}

.policy-actions .btn-primary:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 37, 76, .24);
}

.policy-back-btn {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 37, 76, .18);
}

.policy-back-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(214, 87, 58, .22);
}

@media (max-width: 767px) {
    .policy-actions {
        gap: 12px;
    }

    .policy-actions .btn {
        width: 100%;
        min-width: 0;
        height: 54px;
        font-size: 22px;
    }
}

#policy-content {
    scroll-margin-top: 40px;
}

.booking-order-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* BOOKING SUCCESS PAGE */

.booking-success-section {
    padding: 44px 0 96px;
    background: #ffffff;
}

.booking-success-card {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 48px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
    box-shadow:
        0 26px 70px rgba(15, 37, 76, .10),
        inset 0 1px 0 rgba(255, 255, 255, .84);
}

.booking-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;
    margin-bottom: 20px;

    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 48px;
    line-height: 1;
    box-shadow: 0 18px 38px rgba(214, 87, 58, .25);
}

.booking-success-icon--error {
    background: var(--secondary);
    box-shadow: 0 18px 38px rgba(15, 37, 76, .22);
}

.booking-success-card .eyebrow {
    margin-bottom: 14px;
}

.booking-success-card h1 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(46px, 5vw, 72px);
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.booking-success-intro {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(15, 37, 76, .70);
    font-size: 17px;
    line-height: 1.65;
}

.booking-success-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 28px;
    padding: 14px 22px;

    border-radius: 999px;
    background: rgba(214, 87, 58, .10);
    color: var(--secondary);

    font-size: 15px;
    font-weight: 700;
}

.booking-success-code strong {
    color: var(--primary);
}

.booking-success-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    margin-top: 34px;
    text-align: left;
}

.booking-success-details div {
    padding: 18px 20px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 16px;
    background: rgba(15, 37, 76, .035);
}

.booking-success-details span {
    display: block;
    margin-bottom: 8px;
    color: rgba(15, 37, 76, .56);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.booking-success-details strong {
    display: block;
    color: var(--secondary);
    font-size: 17px;
    line-height: 1.35;
}

.booking-success-note {
    margin-top: 26px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(214, 87, 58, .10);
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.55;
}

.booking-success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;

    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid rgba(15, 37, 76, .10);
}

.booking-success-account-btn {
    background: #ffffff;
    color: var(--secondary);
    border: 2px solid rgba(15, 37, 76, .18) !important;
    box-shadow: 0 16px 34px rgba(15, 37, 76, .10);
}

.booking-success-account-btn:hover {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 37, 76, .24);
}

.booking-success-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 58px;
    padding: 0 34px;

    border: 0;
    border-radius: 8px;

    font-family: var(--title-font);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.booking-success-actions .btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(214, 87, 58, .22);
}

.booking-success-actions .btn-primary:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 37, 76, .24);
}

.booking-success-home-btn {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 37, 76, .18);
}

.booking-success-home-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(214, 87, 58, .22);
}

@media (max-width: 767px) {
    .booking-success-section {
        padding: 64px 0 72px;
    }

    .booking-success-card {
        padding: 32px 20px;
        border-radius: 22px;
    }

    .booking-success-icon {
        width: 66px;
        height: 66px;
        font-size: 40px;
    }

    .booking-success-intro {
        font-size: 15px;
    }

    .booking-success-code {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        border-radius: 16px;
    }

    .booking-success-details {
        grid-template-columns: 1fr;
    }

    .booking-success-actions .btn {
        width: 100%;
        min-width: 0;
        height: 54px;
        font-size: 21px;
    }
}

/* MY BOOKINGS PAGE */

.user-bookings-section {
    padding: 16px 0 86px;
    background: #ffffff;
}

.user-bookings-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.user-bookings-heading h1 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(46px, 5vw, 72px);
    line-height: .95;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.user-bookings-heading p {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(15, 37, 76, .70);
    font-size: 17px;
    line-height: 1.65;
}

.user-bookings-list {
    display: grid;
    gap: 16px;
    max-width: 1120px;
    margin: 0 auto;
}

.user-booking-card {
    padding: 24px 28px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(15, 37, 76, .07);
}

.user-booking-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 37, 76, .10);
}

.user-booking-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(15, 37, 76, .52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.user-booking-code {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;

    border-radius: 999px;
    background: rgba(214, 87, 58, .10);
    color: var(--primary);

    font-size: 13px;
    line-height: 1;
}

.user-booking-status-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.user-booking-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    white-space: nowrap;
}

.user-booking-status--paid {
    background: rgba(31, 164, 99, .12);
    color: #1fa463;
}

.user-booking-status--pending_payment {
    background: rgba(230, 162, 60, .14);
    color: #b87919;
}

.user-booking-status--failed {
    background: rgba(214, 87, 58, .14);
    color: var(--primary);
}

.user-booking-status--cancelled {
    background: rgba(15, 37, 76, .10);
    color: rgba(15, 37, 76, .72);
}

.user-booking-status--refunded {
    background: rgba(111, 66, 193, .12);
    color: #6f42c1;
}

.user-booking-tour h2 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.user-booking-tour p {
    margin: 8px 0 0;
    color: rgba(15, 37, 76, .62);
    font-size: 15px;
    font-weight: 700;
}

.user-booking-grid--compact {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.user-booking-grid--compact div,
.user-booking-extra-row div {
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 15px;
    background: rgba(15, 37, 76, .035);
}

.user-booking-grid--compact span,
.user-booking-extra-row span {
    display: block;
    margin-bottom: 8px;
    color: rgba(15, 37, 76, .54);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.user-booking-grid--compact strong,
.user-booking-extra-row strong {
    display: block;
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.35;
}

.user-booking-extra-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.user-bookings-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 28px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 26px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 20px 54px rgba(15, 37, 76, .08);
}

.user-bookings-empty h2 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--title-font);
    font-size: 44px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.user-bookings-empty p {
    margin: 16px 0 26px;
    color: rgba(15, 37, 76, .66);
    font-size: 16px;
    line-height: 1.6;
}

.user-bookings-empty .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 58px;
    padding: 0 34px;

    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .user-booking-grid--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .user-booking-extra-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .user-bookings-section {
        padding: 64px 0 72px;
    }

    .user-booking-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .user-booking-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-booking-status-wrap {
        justify-content: flex-start;
    }

    .user-booking-tour h2 {
        font-size: 31px;
    }

    .user-booking-grid--compact,
    .user-booking-extra-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .user-booking-grid--compact div,
    .user-booking-extra-row div {
        min-height: auto;
        padding: 13px 14px;
    }
}

.account-dropdown-btn--account {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .38);
}

.account-dropdown-btn--account:hover {
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
}

.account-dropdown .account-dropdown__btn.account-dropdown__btn--bookings {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 42px;
    margin-bottom: 12px;

    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: rgba(255, 255, 255, .14) !important;
    color: #ffffff !important;

    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 10px 24px rgba(0, 0, 0, .08);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.account-dropdown .account-dropdown__btn.account-dropdown__btn--bookings:hover {
    border-color: rgba(255, 255, 255, .35) !important;
    background: rgba(255, 255, 255, .22) !important;
    color: #ffffff !important;
    transform: translateY(-1px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        0 14px 28px rgba(0, 0, 0, .12);
}

/* INNER HERO */

.inner-hero-section {
    position: relative;
    min-height: 170px;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at 84% 10%, rgba(66, 184, 255, .12) 0%, rgba(66, 184, 255, 0) 35%),
        linear-gradient(135deg, #1f5ca7 0%, #1d4c94 48%, #12346f 100%);
    font-family: var(--title-font);
    overflow: visible;
}

.inner-hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .28),
        transparent
    );
}

.inner-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 28px;
}

.inner-hero-section .hero-top {
    position: relative;
    z-index: 5;
}

.inner-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;

    padding: 26px 28px 0;
}

/* Left contacts */

.inner-hero-contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.inner-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 42px;
    padding: 0 16px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;

    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    backdrop-filter: blur(10px);

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.inner-contact-link i {
    color: var(--primary);
    font-size: 14px;
}

.inner-contact-link:hover {
    border-color: rgba(214, 87, 58, .72);
    background: rgba(214, 87, 58, .16);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Right actions */

.inner-hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.inner-hero-actions .social-links {
    margin: 0;
    gap: 10px;
}

.inner-hero-actions .social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
}

.inner-hero-actions .social-links svg {
    width: 19px;
    height: 19px;
}

.inner-hero-actions .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.inner-hero-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 160px;
    height: 46px;
    padding: 0 26px;

    border: 2px solid var(--primary);
    border-radius: 6px;
    background: var(--primary);
    color: #ffffff !important;

    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow: 0 14px 28px rgba(214, 87, 58, .20);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.inner-hero-book-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

/* Responsive */

@media (max-width: 1199px) {
    .inner-hero-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
    }

    .inner-hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .inner-hero-section {
        min-height: auto;
    }

    .inner-hero-inner {
        padding-bottom: 26px;
    }

    .inner-hero-content {
        padding: 24px 0 0;
    }

    .inner-hero-contact-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .inner-contact-link {
        width: 100%;
        min-height: 44px;
    }

    .inner-hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .inner-hero-actions .social-links {
        justify-content: center;
    }

    .inner-hero-book-btn {
        width: 100%;
        height: 48px;
        font-size: 22px;
    }
}

/* TOP MARQUEE */

.top-marquee {
    position: relative;
    z-index: 1005;

    width: 100%;
    height: 38px;

    overflow: hidden;

    background: #7eb8c9;
    color: #0f254c;

    border-bottom: 1px solid rgba(15, 37, 76, .10);
}

.top-marquee__track {
    display: flex;
    align-items: center;

    width: max-content;
    height: 100%;

    animation: topMarqueeMove 32s linear infinite;
    will-change: transform;
}

.top-marquee__group {
    display: flex;
    align-items: center;
    gap: 80px;

    height: 100%;
    padding-right: 80px;

    white-space: nowrap;
    flex-shrink: 0;
}

.top-marquee__group span {
    display: inline-flex;
    align-items: center;

    font-family: var(--text-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: .02em;
}

.top-marquee__group span::before {
    content: "🔥";
    display: inline-block;
    margin-right: 10px;
    font-size: 17px;
    line-height: 1;
    transform: translateY(1px);
}

@keyframes topMarqueeMove {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .top-marquee {
        height: 34px;
    }

    .top-marquee__track {
        animation-duration: 24s;
    }

    .top-marquee__group {
        gap: 54px;
        padding-right: 54px;
    }

    .top-marquee__group span {
        font-size: 13px;
    }

    .top-marquee__group span::before {
        margin-right: 8px;
        font-size: 15px;
    }
}

/* BOOKING CARD ACTIONS */

.booking-tour-card__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.booking-tour-card__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;
    padding: 0 20px;

    border: 2px solid rgba(15, 37, 76, .16);
    border-radius: 8px;
    background: #ffffff;
    color: #0f254c;

    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.booking-tour-card__whatsapp:hover {
    border-color: #0f254c;
    background: linear-gradient(135deg, rgba(15, 37, 76, 1) 0%, rgba(19, 49, 98, 1) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, .22);
}

/* BOOKING WHATSAPP MODAL */

.booking-whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.booking-whatsapp-modal.is-active {
    display: flex;
}

.booking-whatsapp-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 37, 76, .72);
    backdrop-filter: blur(8px);
}

.booking-whatsapp-modal__window {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 460px;
    padding: 34px;

    border-radius: 22px;
    background: #ffffff;
    color: #0f254c;

    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.booking-whatsapp-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: rgba(15, 37, 76, .08);
    color: #0f254c;

    font-size: 30px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.booking-whatsapp-modal__close:hover {
    background: #0f254c;
    color: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 10px 24px rgba(15, 37, 76, .18);
}

.booking-whatsapp-modal__close span {
    display: block;
    line-height: 1;
    transform: translateY(-2px);
}

.booking-whatsapp-modal__close:hover span {
    transform: translateY(-2px);
}

.booking-whatsapp-modal__header {
    text-align: center;
    margin-bottom: 26px;
}

.booking-whatsapp-modal__eyebrow {
    margin: 0 0 8px;

    color: #d6573a;

    font-family: var(--text-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-whatsapp-modal__header h3 {
    margin: 0 0 12px;

    color: #0f254c;

    font-family: var(--title-font);
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.booking-whatsapp-modal__header p {
    margin: 0;

    color: rgba(15, 37, 76, .66);

    font-family: var(--text-font);
    font-size: 14px;
    line-height: 1.6;
}

.booking-whatsapp-modal__actions {
    display: grid;
    gap: 12px;
}

.booking-whatsapp-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 9px;

    font-family: var(--title-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.booking-whatsapp-modal__btn--shared {
    border: 2px solid #d6573a;
    background: #d6573a;
    color: #ffffff;
}

.booking-whatsapp-modal__btn--private {
    border: 2px solid #0f254c;
    background: #0f254c;
    color: #ffffff;
}

.booking-whatsapp-modal__btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 37, 76, .18);
}

.booking-whatsapp-modal__btn--shared:hover {
    background: #ff7859;
    border-color: #ff7859;
}

.booking-whatsapp-modal__btn--private:hover {
    background: #18386f;
    border-color: #18386f;
}

@media (max-width: 600px) {
    .booking-whatsapp-modal__window {
        padding: 30px 22px 24px;
    }

    .booking-whatsapp-modal__header h3 {
        font-size: 30px;
    }

    .booking-whatsapp-modal__btn {
        font-size: 22px;
    }
}

/* MY BOOKINGS CONTINUE PAYMENT */

.user-booking-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

.user-booking-continue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 24px;

    border: 2px solid var(--primary);
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;

    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.user-booking-continue-btn:hover {
    background: #0f254c;
    border-color: #0f254c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 37, 76, .18);
}

@media (max-width: 600px) {
    .user-booking-actions {
        justify-content: stretch;
    }

    .user-booking-continue-btn {
        width: 100%;
        font-size: 20px;
    }
}

/* MY BOOKINGS ACTIONS */

.user-bookings-message {
    margin: 0 0 24px;
    padding: 15px 18px;
    border: 1px solid rgba(15, 37, 76, .10);
    border-radius: 14px;
    background: #ffffff;
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(15, 37, 76, .06);
}

.user-booking-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.user-booking-delete-form {
    margin: 0;
}

.user-booking-continue-btn,
.user-booking-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 24px;

    border-radius: 8px;

    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.user-booking-continue-btn {
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.user-booking-continue-btn:hover {
    background: #0f254c;
    border-color: #0f254c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 37, 76, .18);
}

.user-booking-delete-btn {
    border: 2px solid rgba(214, 87, 58, .18);
    background: rgba(214, 87, 58, .08);
    color: #d6573a;
}

.user-booking-delete-btn:hover {
    border-color: #d6573a;
    background: #d6573a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(214, 87, 58, .18);
}

@media (max-width: 600px) {
    .user-booking-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .user-booking-continue-btn,
    .user-booking-delete-btn,
    .user-booking-delete-form {
        width: 100%;
    }
}


/* MY BOOKINGS NEW STATUS */

.user-booking-status-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.user-booking-status-group {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.user-booking-status-title {
    color: rgba(15, 37, 76, .48);
    font-family: var(--text-font);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.user-booking-status--booking-awaiting_confirmation {
    background: rgba(126, 184, 201, .16);
    color: #0f254c;
}

.user-booking-status--booking-confirmed {
    background: rgba(53, 150, 93, .14);
    color: #23854b;
}

.user-booking-status--booking-rescheduled {
    background: rgba(245, 168, 66, .16);
    color: #b86a00;
}

.user-booking-status--booking-cancelled {
    background: rgba(214, 87, 58, .12);
    color: #d6573a;
}

.user-booking-info-note {
    margin: 18px 0 22px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(126, 184, 201, .12);
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.user-booking-info-note--success {
    background: rgba(53, 150, 93, .12);
    color: #23854b;
}

.user-booking-info-note--warning {
    background: rgba(245, 168, 66, .14);
    color: #9b5b00;
}

.user-booking-info-note--danger {
    background: rgba(214, 87, 58, .10);
    color: #d6573a;
}

.user-booking-extra-row__note {
    grid-column: 1 / -1;
}

@media (max-width: 700px) {
    .user-booking-card__top {
        gap: 18px;
    }

    .user-booking-status-wrap {
        justify-content: flex-start;
    }

    .user-booking-status-group {
        justify-items: start;
    }
}


/* BOOKING TOUR TIME */

.booking-tour-card__time {
    display: grid;
    gap: 7px;
    margin: 14px 0 12px;
}

.booking-tour-card__time span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(126, 184, 201, .12);
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.booking-modal-tour-time {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(126, 184, 201, .10);
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.booking-modal-tour-time span {
    display: block;
}

.booking-order-time-field {
    display: grid;
    gap: 8px;
}

.booking-order-time-field__label {
    color: rgba(15, 37, 76, .55);
    font-family: var(--text-font);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.booking-order-time-field__content {
    display: grid;
    gap: 8px;
}

.booking-order-time-static {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 14px;
    background: #ffffff;
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.booking-order-time-options {
    display: grid;
    gap: 8px;
}

.booking-order-time-option {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(15, 37, 76, .12);
    border-radius: 14px;
    background: #ffffff;
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.booking-order-time-option:hover,
.booking-order-time-option.is-active {
    border-color: rgba(214, 87, 58, .42);
    background: rgba(214, 87, 58, .06);
    box-shadow: inset 0 0 0 1px rgba(214, 87, 58, .18);
}

@media (max-width: 640px) {
    .booking-tour-card__time span,
    .booking-order-time-static,
    .booking-order-time-option {
        font-size: 13px;
    }
}

.booking-order-variant__prices strong:not(.is-discounted) {
    color: #d6573a;
}

/* BOOKING SUCCESS ACCOUNT NOTICE */

.booking-success-account-note {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid rgba(53, 150, 93, .24);
    border-radius: 18px;
    background: rgba(53, 150, 93, .12);
    color: #23854b;
}

.booking-success-account-note h2 {
    margin: 0 0 12px;
    color: #23854b;
    font-family: var(--title-font);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.booking-success-account-note p {
    margin: 0;
    color: #0f254c;
    font-family: var(--text-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
}

.booking-success-account-note p + p {
    margin-top: 10px;
}

.booking-success-account-note strong {
    color: #23854b;
}