* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ecebea;
    color: #202124;
}

a {
    color: inherit;
}

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

.container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    padding: 18px 0 8px;
    background: #ecebea;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    text-decoration: none;
    font-weight: 900;
    color: #111;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 25px;
    letter-spacing: .5px;
}

.logo small {
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 5px;
}

.header-since {
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.main-nav a,
.city-choose {
    text-decoration: none;
    font-weight: 700;
}

.city-choose {
    color: #222;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.city-choose::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.city-choose::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.menu-toggle {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background: #111;
    display: block;
}

.quick-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    width: min(335px, calc(100vw - 32px));
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
    padding: 18px 22px;
    z-index: 30;
}

.quick-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #00aee7;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 0;
}

.quick-menu span {
    width: 22px;
    text-align: center;
    font-size: 18px;
}

.hero {
    padding: 28px 0 18px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 24px;
}

.hero-main {
    min-height: 455px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.08)),
        linear-gradient(rgba(255,207,0,.72), rgba(255,207,0,.72)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 62px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 25px;
    font-weight: 800;
}

.hero-main h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 72px);
    line-height: .92;
    font-weight: 950;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-text {
    max-width: 540px;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
    margin: 24px 0 0;
}

.hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-actions a,
.hero-actions button {
    background: #fff;
    color: #111;
    border: 0;
    border-radius: 7px;
    padding: 17px 22px;
    font-weight: 800;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}

.hero-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-city-card,
.all-cities-card {
    min-height: 210px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 24px;
    text-decoration: none;
    display: flex;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.mini-city-card::before,
.big-city-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.02), rgba(0,0,0,.52));
}

.mini-city-card > *,
.big-city-card > * {
    position: relative;
    z-index: 1;
}

.mini-city-card span,
.big-city-card span {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 24px;
    font-weight: 950;
}

.mini-city-card strong,
.big-city-card strong {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-size: 25px;
    font-weight: 950;
}

.mini-city-card.blue {
    background: linear-gradient(rgba(0,170,216,.88), rgba(0,170,216,.88)), url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=700&q=80") center/cover;
}

.mini-city-card.yellow {
    background: linear-gradient(rgba(230,190,0,.82), rgba(230,190,0,.82)), url("https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=700&q=80") center/cover;
}

.mini-city-card.green {
    background: linear-gradient(rgba(95,200,55,.82), rgba(95,200,55,.82)), url("https://images.unsplash.com/photo-1564507592333-c60657eea523?auto=format&fit=crop&w=700&q=80") center/cover;
}

.all-cities-card {
    background: #ffd52d;
    color: #111;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.all-cities-card strong {
    font-size: 22px;
}

.all-cities-card span {
    max-width: 180px;
    font-weight: 700;
}

.all-cities-card em {
    background: #ff00db;
    color: #fff;
    padding: 13px 24px;
    border-radius: 6px;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 900;
    font-style: normal;
    margin-top: 10px;
}

.stats-section,
.promo-section,
.tours-section,
.reviews-section,
.cities-section,
.team-section,
.faq-section,
.about-section,
.archive-page,
.single-content-section,
.page-default {
    padding: 22px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.35fr .45fr .55fr;
    gap: 24px;
}

.stats-card,
.photo-card,
.white-panel,
.content-box {
    background: #fff;
    border-radius: 22px;
}

.stats-card {
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.stats-icon {
    font-size: 110px;
    line-height: .7;
    color: #ffd02e;
    font-weight: 300;
}

.stats-card p,
.stats-card span {
    text-transform: uppercase;
    margin: 0;
    font-size: 23px;
}

.stats-card strong {
    display: block;
    color: #06aee4;
    font-size: 54px;
    line-height: .95;
    font-weight: 950;
}

.stats-card small {
    display: block;
    margin-top: 20px;
    font-size: 16px;
}

.stats-card.compact {
    display: grid;
    gap: 4px;
}

.photo-card {
    background: url("https://images.unsplash.com/photo-1517760444937-f6397edcbbcd?auto=format&fit=crop&w=600&q=80") center/cover;
    min-height: 230px;
}

.promo-card {
    min-height: 125px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.2)),
        url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1500&q=80") center/cover;
    color: #fff;
    padding: 22px 46px;
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.promo-card span {
    background: #ffd52d;
    color: #111;
    padding: 9px 18px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 34px;
}

.promo-card h2 {
    margin: 34px 0 4px;
    color: #adff6a;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: .95;
}

.promo-card p {
    font-size: 17px;
    font-weight: 900;
    margin: 0;
}

.promo-card strong {
    position: absolute;
    top: 30px;
    right: 34px;
    font-size: 28px;
}

.yellow-panel {
    background: #ffd52d;
    border-radius: 24px;
    padding: 32px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.section-head h2,
.cities-section h2,
.white-panel h2,
.white-panel h1,
.archive-head h1,
.content-box h1 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.05;
}

.section-head p {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.section-head a {
    color: #ff00d4;
    font-weight: 900;
    text-decoration: none;
}

.yellow-panel .section-head a {
    color: #111;
    border-bottom: 2px solid #111;
}

.filter-line {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: -18px 0 24px;
}

.filter-line button {
    border: none;
    background: transparent;
    font-weight: 800;
    cursor: pointer;
}

.filter-line button::before {
    content: "○ ";
    color: #111;
}

.filter-line button.active::before {
    content: "● ";
    color: #111;
}

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

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.tour-image {
    display: block;
    height: 215px;
    background: linear-gradient(135deg, #00aee7, #ffd52d);
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
}

.tour-image.demo-1 {
    background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1528909514045-2fa4ac7a08ba?auto=format&fit=crop&w=600&q=80") center/cover;
}

.tour-image.demo-2 {
    background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1513622470522-26c3c8a854bc?auto=format&fit=crop&w=600&q=80") center/cover;
}

.tour-image.demo-3 {
    background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=600&q=80") center/cover;
}

.tour-image.demo-4 {
    background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.3)), url("https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=600&q=80") center/cover;
}

.badge,
.duration {
    position: absolute;
    top: 12px;
    background: rgba(0,0,0,.45);
    color: #fff;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
}

.badge {
    left: 12px;
}

.duration {
    right: 12px;
}

.tour-body {
    padding: 15px;
}

.tour-meta {
    display: none;
}

.tour-card h3 {
    font-size: 19px;
    line-height: 1.05;
    margin: 0 0 10px;
}

.tour-card h3 a {
    text-decoration: none;
}

.tour-card p {
    margin: 0 0 12px;
    font-size: 14px;
}

.tour-price {
    color: #ff00d4;
    font-size: 27px;
    font-weight: 950;
}

.tour-price small {
    color: #222;
    font-size: 12px;
    font-weight: 500;
}

.simple {
    justify-content: flex-start;
    align-items: center;
}

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

.review-card {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 14px;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ff5b8f;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.avatar img,
.guide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.review-top h3 {
    margin: 0;
    font-size: 18px;
}

.review-top span {
    color: #777;
    font-size: 12px;
}

.stars {
    color: #009fe4;
    letter-spacing: 2px;
    font-size: 14px;
}

.review-card p {
    line-height: 1.35;
}

.big-city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.big-city-card {
    min-height: 300px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.7)),
        url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=700&q=80") center/cover;
}

.white-panel,
.content-box {
    padding: 32px;
}

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

.guide-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
}

.guide-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #6fd0e8;
    overflow: hidden;
}

.guide-card h3 {
    color: #00aee7;
    margin: 0 0 4px;
}

.guide-card a {
    color: #00aee7;
    text-decoration: none;
    font-weight: 900;
}

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

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 44px 22px 0;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    color: #2b2b2b;
    position: relative;
}

.faq-item button::after {
    content: "∨";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00aee7;
    font-size: 18px;
    line-height: 1;
}

.faq-item.open button::after {
    content: "∧";
}

.faq-answer {
    display: none;
    max-width: 1120px;
    padding: 0 42px 28px 38px;
    line-height: 1.5;
    font-size: 17px;
    color: #2f2f2f;
}

.faq-answer p {
    margin: 0;
}

.faq-item.open .faq-answer {
    display: block;
}

.about-panel h2 {
    max-width: 1060px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    line-height: 1.45;
    font-size: 17px;
}

.about-grid p {
    margin: 0 0 18px;
}

.booking-page {
    padding: 36px 0 70px;
}

.booking-hero {
    background: #fff;
    border-radius: 22px;
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 42px;
}

.booking-hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.city-search {
    width: min(420px, 100%);
    display: block;
    position: relative;
    margin-top: 24px;
}

.city-picker {
    width: min(420px, 100%);
    position: relative;
}

.city-picker .city-search {
    width: 100%;
}

.city-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(0,0,0,.14);
    padding: 8px;
    z-index: 12;
    max-height: 260px;
    overflow: auto;
    text-align: left;
}

.city-dropdown button {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.city-dropdown button:hover {
    background: #ffd52d;
}

.city-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.city-search input {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: #ecebea;
    padding: 18px 48px 18px 18px;
    font: inherit;
    font-weight: 800;
}

.city-search::after {
    content: "⌕";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff00d4;
    font-size: 24px;
    font-weight: 900;
}

.booking-cities-panel {
    margin-top: 34px;
    background: #ffd52d;
    border-radius: 22px;
    padding: 54px 70px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 46px;
    align-items: center;
}

.booking-mark strong {
    display: block;
    font-size: 34px;
    line-height: .9;
}

.booking-mark span {
    display: block;
    margin-top: 8px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.booking-city-list {
    columns: 4;
    column-gap: 44px;
}

.booking-city-list a,
.booking-city-list span {
    break-inside: avoid;
    display: block;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    margin: 0 0 12px;
}

.booking-city-list [hidden] {
    display: none;
}

.site-footer {
    padding: 32px 0 70px;
}

.footer-box {
    background: #ffd52d;
    border-radius: 24px;
    padding: 38px 40px;
}

.footer-top,
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
}

.footer-logo strong {
    display: block;
    font-size: 32px;
}

.footer-contacts {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 18px;
    font-weight: 900;
    justify-content: end;
    align-items: center;
}

.footer-contacts a,
.footer-bottom a {
    text-decoration: none;
}

.footer-cities {
    margin: 30px 0 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    gap: 10px 34px;
    max-width: 700px;
}

.footer-cities a,
.footer-cities span {
    display: block;
    text-decoration: none;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(0,0,0,.12);
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #ffd52d;
    font-size: 25px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.archive-head {
    padding-top: 36px;
}

.archive-grid {
    margin-bottom: 35px;
}

.single-hero {
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    color: #fff;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.75)),
        linear-gradient(135deg, #00aee7, #ffd52d);
    background-size: cover;
    background-position: center;
}

.single-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    max-width: 850px;
    margin: 18px 0;
    line-height: .98;
}

.single-hero p {
    max-width: 680px;
    font-size: 22px;
    font-weight: 800;
}

.tour-detail-hero {
    padding: 78px 0 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.42)),
        linear-gradient(135deg, #00aee7, #ffd52d);
    background-size: cover;
    background-position: center;
}

.tour-detail-hero-card {
    min-height: 285px;
    max-width: 760px;
    color: #fff;
    padding: 34px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.18));
}

.tour-detail-hero-card h1 {
    margin: 18px 0 14px;
    max-width: 620px;
    font-size: clamp(38px, 5.5vw, 58px);
    line-height: 1;
}

.tour-detail-hero-card p {
    max-width: 560px;
    font-weight: 800;
}

.tour-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    font-weight: 900;
    color: #00aee7;
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
    align-items: start;
}

.tour-detail-content {
    display: grid;
    gap: 24px;
}

.breadcrumbs {
    font-weight: 800;
}

.breadcrumbs a {
    color: #00aee7;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 8px;
}

.tour-story {
    line-height: 1.55;
    font-size: 17px;
}

.tour-story h2,
.tour-faq h2,
.related-tours h2,
.tour-meeting-card h2 {
    margin: 0 0 18px;
    font-size: 27px;
    line-height: 1.08;
}

.tour-story p {
    margin: 0 0 18px;
}

.route-link {
    color: #00aee7;
    font-weight: 900;
    text-decoration: none;
}

.route-link-button {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.tour-faq {
    padding-top: 24px;
    padding-bottom: 16px;
}

.tour-meeting-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    background: #b8ff75;
    border-radius: 18px;
    overflow: hidden;
}

.tour-meeting-card > div:first-child {
    padding: 32px;
}

.tour-meeting-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.1;
}

.tour-meeting-card p {
    line-height: 1.35;
    font-weight: 800;
}

.tour-meeting-photo {
    min-height: 275px;
    background: url("https://picsum.photos/id/1043/900/650") center/cover;
}

.related-tours {
    background: #ecebea;
    padding: 24px 0 0;
    border-radius: 0;
}

.related-tours .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-box {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    position: sticky;
    top: 92px;
    box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.booking-box h2 {
    color: #ff00d4;
    font-size: 46px;
    margin: 0;
    line-height: .9;
}

.booking-price {
    margin-bottom: 24px;
}

.booking-price span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
}

.booking-facts {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 13px;
}

.booking-facts li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 16px;
    line-height: 1.1;
}

.booking-facts li span {
    color: #555;
    font-weight: 900;
}

.booking-assurances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.booking-assurances small {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #555;
}

.primary-btn {
    display: block;
    width: 100%;
    border: 0;
    text-align: center;
    background: #ff00d4;
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 950;
    margin-top: 20px;
    cursor: pointer;
    font: inherit;
}

.page-box,
.post-item {
    margin-top: 35px;
}

body.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.78);
    z-index: 80;
}

.khodimo-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 430px);
    max-height: min(88vh, 780px);
    overflow: auto;
    background: #fff;
    border-radius: 22px;
    padding: 36px 28px 30px;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    z-index: 90;
}

.khodimo-modal h2 {
    margin: 0 0 22px;
    text-align: center;
    font-size: 30px;
    line-height: 1.05;
}

.route-modal {
    width: min(94vw, 980px);
    padding: 52px 22px 22px;
}

.route-modal h2 {
    margin-bottom: 16px;
}

.route-modal img {
    display: block;
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 14px;
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.modal-search {
    display: block;
    position: relative;
}

.modal-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.modal-search input {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: #ecebea;
    padding: 17px 48px 17px 16px;
    font: inherit;
    font-weight: 800;
}

.modal-search::after {
    content: "⌕";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff00d4;
    font-size: 24px;
    font-weight: 900;
}

.modal-city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}

.modal-city-list button {
    border: 0;
    border-radius: 8px;
    background: #f3f2f1;
    padding: 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-align: left;
}

.modal-city-list button:hover {
    background: #ffd52d;
}

.booking-modal {
    width: min(96vw, 710px);
    max-height: calc(100vh - 28px);
    padding: 0 0 26px;
    border-radius: 0 18px 18px 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.booking-modal-head {
    background: #ffd52d;
    margin: 0 0 26px;
    padding: 30px 24px 28px;
    border-radius: 0;
}

.booking-modal-head span {
    color: #00aee7;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
}

.booking-modal-head h2 {
    text-align: left;
    margin: 0 0 10px;
    font-size: 31px;
    line-height: 1.05;
}

.booking-modal-head p {
    margin: 0;
    font-weight: 800;
    font-size: 17px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 15px;
    padding: 0 24px;
}

.booking-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    font-size: 17px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: #ecebea;
    padding: 15px 14px;
    font: inherit;
    font-weight: 800;
    color: #222;
}

.booking-form input[readonly] {
    cursor: pointer;
}

.booking-form textarea {
    min-height: 110px;
    resize: vertical;
}

.booking-calendar {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .06);
}

.booking-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e2e0dc;
}

.booking-calendar-head strong {
    display: block;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 7px;
}

.booking-calendar-head span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.booking-calendar-head button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #00aee7;
    font-size: 34px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1;
}

.booking-calendar-head button[aria-expanded="false"] {
    transform: rotate(180deg);
}

.booking-calendar-body {
    display: grid;
    gap: 22px;
    max-height: 260px;
    overflow-y: auto;
    padding: 19px 24px 20px;
}

.booking-calendar-body[hidden] {
    display: none;
}

.booking-month {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 12px;
    align-items: start;
}

.booking-month-title strong {
    display: block;
    font-size: 17px;
    line-height: 1;
}

.booking-month-title span {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.booking-weekdays,
.booking-days {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(7, 64px);
    gap: 8px;
    justify-content: end;
}

.booking-weekdays {
    margin-bottom: 0;
    font-weight: 900;
    text-align: center;
}

.booking-days button,
.booking-days span {
    width: 64px;
    min-height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font: inherit;
    font-weight: 900;
    line-height: 1;
}

.booking-days button {
    border: 0;
    background: #c9f5a8;
    color: #222;
    cursor: pointer;
}

.booking-days button:hover,
.booking-days button.selected {
    background: #00aee7;
    color: #fff;
}

.booking-days button.booking-day-unavailable,
.booking-days button:disabled {
    background: transparent;
    color: #d1d1d1;
    cursor: default;
}

.booking-days button.booking-day-unavailable:hover,
.booking-days button:disabled:hover {
    background: transparent;
    color: #d1d1d1;
}

.booking-day-muted {
    color: #d1d1d1;
}

.booking-error,
.booking-form-wide,
.booking-submit,
.booking-success {
    grid-column: 1 / -1;
}

.booking-error {
    margin: 0;
    color: #d21b2b;
    font-weight: 800;
}

.booking-submit {
    margin-top: 18px;
}

.booking-modal .modal-close {
    top: 18px;
    right: 18px;
    z-index: 2;
    font-size: 31px;
}

.booking-form input[aria-invalid="true"] {
    outline: 2px solid #d21b2b;
}

.booking-success {
    margin: 0;
    background: #b8ff75;
    border-radius: 8px;
    padding: 14px;
    font-weight: 900;
}

.booking-submit:disabled {
    opacity: .68;
    cursor: wait;
}

@media (max-width: 1180px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        gap: 16px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: auto;
        padding: clamp(34px, 6vw, 54px);
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-cities {
        grid-template-columns: repeat(4, 1fr);
    }

    .mini-city-card,
    .all-cities-card {
        min-height: 185px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .site-header {
        position: relative;
    }

    .hero-main h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .hero-actions {
        margin-top: 28px;
    }

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

@media (max-width: 1024px) {
    .hero-layout,
    .stats-grid,
    .single-layout,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .tour-grid,
    .related-tours .tour-grid,
    .big-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .review-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .filter-line {
        margin: 20px 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-cities {
        grid-template-columns: repeat(2, minmax(90px, 1fr));
    }

    .booking-cities-panel {
        grid-template-columns: 1fr;
    }

    .booking-city-list {
        columns: 2;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .hero-main {
        padding: 30px;
        min-height: auto;
    }

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

    .hero-cities,
    .tour-grid,
    .related-tours .tour-grid,
    .big-city-grid {
        grid-template-columns: 1fr;
    }

    .tour-detail-hero {
        padding-top: 30px;
    }

    .tour-detail-hero-card {
        padding: 26px;
        min-height: 250px;
    }

    .tour-meeting-card > div:first-child {
        padding: 24px;
    }

    .booking-assurances {
        grid-template-columns: 1fr;
    }

    .stats-card,
    .yellow-panel,
    .white-panel,
    .content-box,
    .footer-box {
        padding: 22px;
    }

    .footer-top,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-cities {
        grid-template-columns: repeat(2, minmax(90px, 1fr));
        max-width: none;
    }

    .footer-contacts {
        grid-template-columns: 1fr;
        justify-content: start;
    }

    .booking-hero,
    .booking-cities-panel {
        padding: 24px;
    }

    .booking-city-list {
        columns: 1;
    }

    .modal-city-list,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .khodimo-modal {
        padding: 32px 22px 24px;
    }

    .booking-modal {
        padding: 0 0 24px;
    }

    .booking-modal-head {
        margin: 0 0 24px;
        padding: 30px 22px;
    }

    .booking-form {
        padding: 0 22px;
    }

    .booking-calendar-head {
        padding: 20px;
    }

    .booking-calendar-body {
        padding: 18px 20px 22px;
    }

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

    .booking-weekdays,
    .booking-days {
        grid-column: 1;
        grid-template-columns: repeat(7, minmax(28px, 1fr));
        gap: 6px;
        justify-content: stretch;
    }

    .booking-days button,
    .booking-days span {
        width: auto;
    }

    .booking-calendar-head strong {
        font-size: 21px;
    }
}
