/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #FFB300;
    --secondary-color: #FF8C00;
    --accent-color: #FFD700;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: color 0.2s ease, background-color 0.2s ease;
    /* Одинаковый отступ: картинка→заголовок и примечание о стоимости→кнопка */
    --excursion-block-gap: 1.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

/* Lightbox (просмотр фото) */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 5000;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-dialog {
    position: relative;
    box-sizing: border-box;
    width: min(920px, 100%);
    /* Высота = экран минус padding оверлея (24+24), как и по ширине */
    height: calc(100vh - 48px);
    max-height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
    max-height: calc(100dvh - 48px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: rgba(0, 0, 0, 0.25);
}

.lightbox-img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.12);
}

.lightbox-topbar {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
    z-index: 2;
}

.lightbox-counter {
    pointer-events: auto;
    padding: 8px 12px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
}

.lightbox-btn {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

/* Стрелки: без анимации сдвига; общий .lightbox-btn:hover ломал центрирование translateY(-50%) */
.lightbox-btn.lightbox-nav {
    transition: none;
}

.lightbox-btn.lightbox-nav:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.lightbox-nav--prev {
    left: 12px;
}

.lightbox-nav--next {
    right: 12px;
}

@media (max-width: 768px) {
    .lightbox-overlay {
        padding: 12px;
    }

    .lightbox-dialog {
        border-radius: 16px;
        height: calc(100vh - 24px);
        max-height: calc(100vh - 24px);
        height: calc(100dvh - 24px);
        max-height: calc(100dvh - 24px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    -webkit-opacity: 1 !important;
    box-shadow: 0;
    z-index: 1000;
    will-change: auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-dropdown {
    position: relative;
}

.language-select-btn {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text-dark);
    font-size: inherit;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.language-select-btn:hover {
    color: var(--primary-color);
}

.language-select-btn svg {
    transition: transform 0.2s ease;
    color: currentColor;
}

.language-dropdown.active .language-select-btn {
    color: var(--text-dark);
}

.language-dropdown.active .language-select-btn:hover {
    color: var(--primary-color);
}

.language-dropdown.active .language-select-btn svg {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
    overflow: hidden;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: inherit;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.language-option:hover {
    background: rgba(255, 179, 0, 0.1);
    color: var(--primary-color);
}

.language-option.active {
    background: var(--primary-color);
    color: var(--white);
}

.language-select-hidden {
    display: none;
}

/* На десктопе показываем кастомный dropdown, на мобильных - стандартный select */
@media (min-width: 769px) {
    .language-select-hidden {
        display: none !important;
    }
    
    .language-select-btn {
        display: flex;
    }
    
    .language-dropdown-menu {
        display: block;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 769px) {
    .logo-image {
        height: 65px;
    }
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu .menu-header,
.nav-menu .menu-divider,
.nav-menu .menu-tagline-item {
    display: none;
}

.menu-close {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition), font-size 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    display: none;
}

.nav-link:hover::after {
    display: none;
}

.nav-link.active {
    color: var(--primary-color);
    font-size: 1.05em;
}

.nav-link.active::after {
    display: none;
}

.nav-link.active:hover {
    color: var(--primary-color);
}

.nav-link.active:hover::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active {
    outline: none;
    box-shadow: none;
    background: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Главная секция */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB300 0%, #FF8C00 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/hero-bg.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.1);
    transform-origin: center center;
}

.hero-background .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;  /* единая база для подзаголовка и кнопок */
}

.hero-logo-mobile {
    display: none;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    width: 320px;
    text-align: center;
    padding: 0.75rem 2.5rem;
    line-height: 1.5;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: inherit;
    letter-spacing: normal;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: normal;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary,
.hero-buttons .btn-outline {
    border: 1px solid var(--white);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

/* Секции */
.section {
    padding: 80px 0;
    scroll-margin-top: 100px;
    will-change: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.excursions-section .section-title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    padding-top: 0.5rem;
}

.excursions-section .section-subtitle {
    margin-bottom: 2rem;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #4a5568;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.brand-name,
.highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.transfers-section .section-title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    padding-top: 0.5rem;
}

.transfers-section .section-subtitle {
    margin-bottom: 2rem;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #4a5568;
}

/* Секция трансферов */
.transfers-section {
    background: var(--bg-light);
    padding-top: 140px;
    scroll-margin-top: 100px;
}

.transfer-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    margin-top: 1rem;
}

/* На мобильной и планшете — один столбец, галочки строго друг под другом */
@media (max-width: 992px) {
    .transfer-features {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 3.5rem;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.transfer-feature-item {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 14px;
}

/* Фиксированная ширина галочки — все ✓ в одну вертикальную линию */
.transfer-feature-item .feature-check {
    flex-shrink: 0;
    width: 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.transfer-trust {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.transfer-trust p {
    margin: 0.25rem 0;
    font-weight: 400;
}

.hotels-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.hotels-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: stretch;
    }

    .service-card {
        padding: 36px 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 3px;
        line-height: 1.3;
        font-weight: 600;
    }

    .service-card p {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.4;
        color: #94a3b8;
        font-weight: 400;
    }

    .service-card-footer {
        margin-top: 22px;
        gap: 8px;
    }

    .service-price {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--secondary-color);
    }

    .service-icon {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .service-icon-bus svg {
        width: 36px;
        height: 36px;
    }
}

.service-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-icon-bus {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bus svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 3px;
    margin-top: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.service-card h3 span {
    display: inline-flex;
    align-items: center;
}

/* Подпись «Трансфер» — вторичный текст, не спорит с заголовком */
.service-card p {
    width: 100%;
    text-align: center;
    color: #94a3b8;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* Блок «Кнопка + Цена» на одной линии, отступ сверху — «воздух» */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    width: 100%;
}

.service-card-btn {
    display: inline-block;
    margin: 0;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 999px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    white-space: nowrap;
}

/* Секция экскурсий — те же размеры и отступы, что и в секции трансферов */
.excursions-section {
    background: var(--white);
    padding-top: 140px;
    scroll-margin-top: 100px;
}

.excursions-price-note {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.excursions-price-note p {
    margin: 0.25rem 0;
    font-weight: 400;
}

/* Секция отелей */
/* Секция отелей — те же размеры и отступы, что и в секции трансферов */
.hotels-section {
    background: var(--bg-light);
    padding-top: 120px;
    scroll-margin-top: 100px;
}

.hotels-section .section-title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    padding-top: 0.5rem;
}

.hotels-section .section-subtitle {
    margin-bottom: 2rem;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #4a5568;
}

.hotels-booking-note {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.hotels-partners-heading {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 120px 0 3rem 0;
}

.hotels-partner-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.hotels-partner-figure {
    margin: 0;
}
.hotels-partner-images img {
    max-height: 480px;
    width: auto;
    max-width: 720px;
    min-height: 200px;
    object-fit: contain;
}

.hotels-feature-item {
    font-size: 14px;
    color: #4a5568;
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    align-items: stretch;
}

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

.excursion-card {
    background: var(--white);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 12px;
    height: 100%;
}

.excursion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Квадратное фото в карточке: высота = 100% от ширины (надёжно на всех экранах) */
.excursion-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    min-height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
}

/* Шум/зернистость на фото карточек */
.excursion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.excursion-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.excursion-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.excursion-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.excursion-card--aqaba .excursion-image img,
.excursion-card--aqaba .excursion-image .excursion-img {
    object-position: right center;
}

.excursion-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* В карточках трансферов маршрут на картинке по центру — капсула */
.transfer-card .excursion-title-overlay {
    bottom: auto;
    left: 50%;
    right: auto;
    top: 50%;
    padding: 0.6em 1.25em;
    text-align: center;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 12px;
    width: 280px;
    min-width: 280px;
    box-sizing: border-box;
}

.transfer-card .excursion-title-overlay .overlay-from,
.transfer-card .excursion-title-overlay .overlay-to {
    white-space: nowrap;
}

.transfer-card .excursion-title-overlay .overlay-arrow {
    line-height: 1;
    font-size: 1em;
}

/* Кнопка с ценой в карточках трансферов: не на всю ширину, по центру (как в примере) */
.transfer-card .excursion-info-block {
    text-align: center;
}

.transfer-card .excursion-info-block .excursion-order-btn,
.transfer-card .transfer-price-btn {
    display: block;
    width: calc(100% + 3rem);
    min-width: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0.65rem 1rem;
    box-sizing: border-box;
}

.transfer-card .excursion-info-block .excursion-details,
.transfer-card .excursion-info-block .excursion-price {
    text-align: left;
}
.transfer-card .excursion-info-block .excursion-price {
    font-weight: 400;
}

/* Без тени у карточек трансферов */
.excursion-card.transfer-card {
    box-shadow: none;
}
.excursion-card.transfer-card:hover {
    box-shadow: none;
}

/* «от» мельче, сумма крупнее и жирнее */
.transfer-price-btn .transfer-price-from {
    font-size: 0.9em;
    font-weight: 500;
}

.transfer-price-btn .transfer-price-amount {
    font-size: 1.15em;
    font-weight: 700;
}

.excursion-offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.excursion-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    z-index: 2;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    box-shadow: none;
}

.excursion-badge:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.excursion-badge:active {
    transform: translateY(0) scale(0.98);
    background: rgba(255, 255, 255, 0.12);
}

.excursion-badge.clicked {
    animation: badgeClick 0.4s ease;
}

@keyframes badgeClick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.excursion-content {
    padding: 0;
    padding-top: var(--excursion-block-gap);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.excursion-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: left;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.excursion-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Карточки с заголовком + описанием — стиль как в референсе (экскурсии + трансферы) */
.excursion-card--holyplaces .excursion-card-heading,
.excursion-card--wadirum .excursion-card-heading,
.excursion-card--petra .excursion-card-heading,
.excursion-card--jerash .excursion-card-heading,
.excursion-card--ajloun .excursion-card-heading,
.excursion-card--aqaba .excursion-card-heading,
.excursion-card--amman .excursion-card-heading,
.excursion-card--deadsea .excursion-card-heading,
.transfer-card--amman .excursion-card-heading,
.transfer-card--deadsea .excursion-card-heading,
.transfer-card--aqaba .excursion-card-heading,
.transfer-card--petra .excursion-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 1.5rem 1rem 1.5rem;
    line-height: 1.35;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
}

.excursion-card--holyplaces .excursion-card-desc,
.excursion-card--wadirum .excursion-card-desc,
.excursion-card--petra .excursion-card-desc,
.excursion-card--jerash .excursion-card-desc,
.excursion-card--ajloun .excursion-card-desc,
.excursion-card--aqaba .excursion-card-desc,
.excursion-card--amman .excursion-card-desc,
.excursion-card--deadsea .excursion-card-desc,
.transfer-card--amman .excursion-card-desc,
.transfer-card--deadsea .excursion-card-desc,
.transfer-card--aqaba .excursion-card-desc,
.transfer-card--petra .excursion-card-desc {
    color: #4a5568;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
}

.excursion-desc-location {
    font-weight: 600;
    color: var(--primary-color);
}

/* Нижний блок карточки (время, язык, цена, кнопка) — прижат к низу */
.excursion-content-footer {
    margin-top: auto;
}

/* Блок деталей без фона: часы, люди, язык, цена, кнопка — выравнивание как у заголовка и подзаголовка */
.excursion-info-block {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 1.5rem 0 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
}

.excursion-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.excursion-info-block .excursion-details {
    margin-bottom: 0.75rem;
}

.excursion-info-block .excursion-price {
    margin-bottom: var(--excursion-block-gap);
    margin-top: 0;
}

.excursion-info-block .excursion-order-btn {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
    max-width: none;
    box-sizing: border-box;
}

.excursion-info-block .excursion-order-btn:last-child {
    margin-bottom: 0;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    align-self: flex-start; /* не растягивать на всю ширину — число и «часов» без лишнего зазора */
}

.detail-item > span {
    flex-shrink: 0;
    flex-grow: 0;
}

.detail-item .detail-value {
    margin-left: -0.25rem;
}

/* Карточки трансферов: подписи и значения Regular (400) */
.transfer-card .excursion-details .detail-label,
.transfer-card .excursion-details .detail-value {
    font-weight: 400;
}

.detail-icon {
    flex-shrink: 0;
    color: inherit;
}

.excursion-price {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
}

.excursion-content-footer > .excursion-price {
    margin-top: auto;
    margin-bottom: 1rem;
}

.excursion-order-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: var(--white) !important;
    border: none !important;
    margin-top: 0;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35);
    outline: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.excursion-order-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: var(--white) !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 179, 0, 0.4);
    outline: none;
}

/* Карточки трансферов: кнопка «Выбрать» + цена справа */
.transfer-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--excursion-block-gap);
    flex-wrap: wrap;
}

.transfer-select-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 2.25rem;
    min-width: 140px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.transfer-select-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 179, 0, 0.4);
}

.transfer-price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

/* На ПК: контент карточки — колонка, нижний блок прижат к низу */
@media (min-width: 769px) {
    .excursion-content {
        display: flex;
        flex-direction: column;
    }
    .excursion-content-footer {
        margin-top: auto;
    }
}

/* Секция "О нас" */
.about-section {
    background: var(--bg-light);
    padding-bottom: 2.5rem;
}

.about-section .section-title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    padding-top: 0.5rem;
}

.reviews-section {
    padding-top: 2.5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Подзаголовок в секции «О нас» — как в секции отелей */
.about-section .section-subtitle {
    margin-bottom: 2rem;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #4a5568;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

/* Вертикальная линия от центра первой галочки до нижнего края последней (не в текст) */
.features-list::before {
    display: none;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-item-text {
    flex: 1;
}

.feature-item h4 {
    margin: 0 0 0.35rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    color: #4a5568;
}

/* Пунктирная линия над «Факты и цифры» — в одном стиле с контурами карточек */
.about-divider {
    border: none;
    height: 2px;
    margin: 2.75rem 0 1.5rem 0;
    padding: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 179, 0, 0.8) 0,
        rgba(255, 179, 0, 0.8) 5px,
        transparent 5px,
        transparent 8px
    );
    background-size: 100% 2px;
    background-repeat: repeat-x;
    background-position: 0 50%;
}

.about-facts-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.about-stats-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.stat-item--feature {
    position: relative;
    background: rgba(255, 248, 232, 0.9);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    min-height: 200px;
    z-index: 1;
}

.stat-item--feature::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: inherit;
    border: 2px dashed rgba(255, 179, 0, 0.8);
    pointer-events: none;
}

.stat-item--feature::after {
    content: none;
}

.about-stats::before,
.about-stats::after {
    content: none;
}

.about-stats-right::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 189, 89, 0.32), rgba(255, 189, 89, 0));
    right: -100px;
    bottom: -60px;
    pointer-events: none;
    z-index: -1;
}

.stat-item--feature .stat-number {
    font-size: 2.85rem;
    margin-bottom: 0.1rem;
}

.stat-item--feature .stat-label {
    font-size: 14px;
    line-height: 1.2;
    max-width: 9em;
    text-align: center;
}

.stat-item--small {
    position: relative;
    background: #ffffff;
    padding: 1.5rem 2.5rem 1.5rem 1.25rem;
    flex: 1;
    min-height: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-stats-right::before {
    content: '';
    position: absolute;
    right: 18px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 179, 0, 0.6), rgba(255, 140, 0, 0.8));
    border-radius: 999px;
    pointer-events: none;
}

.stat-item--small::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffb300;
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.25);
}

.stat-item--small .stat-number {
    font-size: 2.35rem;
    margin-bottom: 0.1rem;
}

.stat-item--small .stat-label {
    font-size: 12px;
    line-height: 1.2;
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: #4a5568;
    text-align: center;
}

/* Секция отзывов — карусель */
.reviews-section {
    background: var(--white);
}

.reviews-container {
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
}

.reviews-section-title {
    text-align: center;
    font-size: 25px;  /* как у «Трансфер из аэропорта» */
    margin-bottom: 1.5rem;  /* такой же зазор, как между подзаголовком и каруселью */
}

.reviews-section-subtitle {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);  /* как заголовок «Последние отзывы» */
    margin-top: 80px;
    margin-bottom: 1.5rem;
}

.reviews-carousel-wrapper {
    position: relative;
    margin-top: 0;  /* зазор только у подзаголовка */
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    transition: transform 0.35s ease-out;
}

.review-card {
    flex: 0 0 100%;
    min-width: 0;
    min-height: 320px;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.review-name {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
}

.review-date {
    color: #888;
    font-weight: 400;
    font-size: 0.85rem;
}

.review-date::before {
    content: none;
}

.review-stars {
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
    flex: 1;
    min-height: 0;
    display: block;
    overflow: visible;
}

.review-read-more {
    display: none;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.reviews-dot:hover {
    background: #aaa;
}

.reviews-dot.is-active {
    background: var(--text-dark);
    transform: scale(1.2);
}

.reviews-write-wrap {
    text-align: center;
    margin-top: 80px;  /* как отступ от начала секции до «Последние отзывы» */
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta-block {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    margin-top: 0;  /* зазор только у заголовка — 1.5rem, как у подзаголовка→карусель */
    margin-bottom: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta-title {
    margin: 0 0 1rem 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);  /* как заголовок «Последние отзывы» */
}

.reviews-cta-text {
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.reviews-cta-btn {
    display: inline-block;
    width: auto;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    border: none;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* без визуального отклика при наведении, нажатии и фокусе */
.reviews-cta-btn:hover,
.reviews-cta-btn:active,
.reviews-cta-btn:focus {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
    outline: none;
}

.reviews-write-btn {
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFB300 100%);
    color: #fff;
    border: none;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.4);
}

.reviews-write-btn:hover {
    background: linear-gradient(135deg, #e67e00 0%, #f59a00 50%, #e6a000 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 140, 0, 0.5);
}

/* Модальное окно формы отзыва */
.review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.review-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.review-modal-box {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
}

.review-modal-close:hover {
    color: var(--text-dark);
}

.review-modal-title {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
}

.review-form-label {
    display: block;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.review-form-label span {
    display: block;
    margin-bottom: 0.35rem;
}

.review-form-input,
.review-form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-size: 16px;
    min-height: 44px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-form-input:focus,
.review-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.review-form-textarea {
    resize: vertical;
    min-height: 132px;
}

.review-form-label:has(.review-form-stars) {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-form-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.review-form-rating-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
}

.review-star-btn {
    border: none;
    background: none;
    padding: 0;
    font-size: 1.75rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
}

.review-star-btn:hover,
.review-star-btn.is-filled {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFB300 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.review-form-actions {
    margin-top: 0;
}

.review-modal .review-form-actions .btn-primary,
.review-form-actions .btn-primary {
    width: 100%;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFB300 100%) !important;
    background-color: #FF8C00;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.4);
    -webkit-text-fill-color: #fff;
}

.review-modal .review-form-actions .btn-primary:hover,
.review-form-actions .btn-primary:hover {
    background: linear-gradient(135deg, #e67e00 0%, #f59a00 50%, #e6a000 100%) !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(255, 140, 0, 0.5);
    -webkit-text-fill-color: #fff;
}

.review-form-success {
    margin-top: 1rem;
    color: #2e7d32;
    font-size: 0.95rem;
}

.review-form-error {
    margin-top: 1rem;
    color: #c62828;
    font-size: 0.95rem;
}

/* Форма отзыва под кнопкой (как в формах статей по отступам и размеру текста) */
.review-form-inline {
    margin-top: 1.5rem;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 560px;
}

.review-form-inline-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.review-form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.review-form-tab-row {
    border: none;
    border-bottom: none;
    margin-bottom: 1.5rem;
    font-size: 16px;
    padding-bottom: 0.5rem;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 179, 0, 0.8) 0,
        rgba(255, 179, 0, 0.8) 5px,
        transparent 5px,
        transparent 8px
    );
    background-position: 0 100%;
    background-size: 100% 2px;
    background-repeat: repeat-x;
}

.review-form-tab,
.review-modal .review-form-tab {
    display: inline-block;
    padding: 0.75rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1em !important;
    font-weight: 400 !important;
    line-height: 1.2;
    color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 900px) {
    .reviews-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .review-card {
        flex: 0 0 100%;
    }
}

/* Карусель отзывов на мобильных — bleed-through как у трансферов, снап по центру */
@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 16px;
        padding-right: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        align-items: stretch;
    }

    .reviews-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Карточки и распорка становятся прямыми детьми обёртки — снап по центру работает */
    .reviews-carousel {
        display: contents;
    }

    .reviews-carousel::after {
        content: "";
        flex: 0 0 1px;
        display: block;
    }

    .reviews-track {
        display: contents;
    }

    .review-card {
        flex: 0 0 auto;
        width: 85vw;
        min-width: 280px;
        max-width: 340px;
        box-sizing: border-box;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

/* Секция контактов — те же шрифты, что и в секции бронирования отеля */
.contact-section {
    background: var(--white);
}

.contact-section .section-title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    padding-top: 0.5rem;
}

.contact-section .section-subtitle {
    margin-bottom: 2rem;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #4a5568;
}

/* В статьях — только форма, блок с телефоном/email/адресом скрыт */
.contact-section.contact-in-article .contact-info {
    display: none;
}

.contact-section.contact-in-article .contact-wrapper {
    grid-template-columns: 1fr;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
}

/* Иконки как в футере: заливка градиентом */
.contact-icon--footer-style {
    color: transparent;
}

.contact-icon--emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.contact-icon--svg svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.contact-icon--footer-style svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin: 0 0 0.35rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    color: #4a5568;
}

/* Соцсети в контактах — ряд иконок (как в футере) */
.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.contact-social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-social-whatsapp { background: #25D366; }
.contact-social-instagram { background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%); }
.contact-social-telegram { background: #2AABEE; }
.contact-social-max { background: linear-gradient(135deg, #6C5CE7 0%, #5A4FCF 50%, #4834B8 100%); }

.contact-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.phone-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
}

.contact-email-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
}

/* Адрес в блоке контактов — ссылка на карты (как у email по шрифту) */
.contact-section .contact-item p a.footer-contact-link,
.contact-section .contact-item p .footer-contact-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
}
.contact-section .contact-item p a.footer-contact-link:hover {
    text-decoration: none;
}
.contact-section .contact-item p .footer-contact-note {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Форма */
.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

#email,
#message {
    text-align: left;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #c6f6d5;
    color: #22543d;
    display: block;
}

.form-message.error {
    background: #fed7d7;
    color: #742a2a;
    display: block;
}

/* Футер */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(20px + 2rem);
    width: 100%;
    box-sizing: border-box;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    align-items: center;
    text-align: center;
}

.footer-section h4 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.footer-contacts h4 {
    text-align: left !important;
    margin-left: 0 !important;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--white);
}

.footer .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

/* CTA Button in Footer */
.btn-cta-footer {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: normal;
    transition: var(--transition);
}

.btn-cta-footer:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
}

/* Footer Contact List — оранжевая полоска начинается на уровне заголовка «Контакты» */
.footer-contacts {
    text-align: left;
    align-items: flex-start;
    position: relative;
    padding-left: 1.25rem;
}

.footer-contacts::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.footer-contacts h4 {
    text-align: left !important;
    margin-left: 0 !important;
    width: 100%;
    align-self: flex-start;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    justify-content: flex-start;
}

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

.footer-contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-link-wrapper {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    transition: var(--transition);
    font-weight: 500;
    text-align: left;
    display: inline-block;
}

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

.footer-contact-note {
    display: block;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
    justify-content: center;
    width: 100%;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* WhatsApp - зеленый */
.footer-social-whatsapp {
    background: #25D366;
}

/* Instagram - градиент розово-фиолетовый */
.footer-social-instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

/* Telegram - голубой */
.footer-social-telegram {
    background: #2AABEE;
}

/* Max Messenger - градиент фиолетовый/синий */
.footer-social-max {
    background: linear-gradient(135deg, #6C5CE7 0%, #5A4FCF 50%, #4834B8 100%);
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Mobile Styles for Footer */
@media (max-width: 768px) {
    .footer .container {
        padding: 0 40px;
    }

    .footer-nav {
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-contacts {
        text-align: center;
        align-items: center;
        position: relative;
        left: 0;
        padding-left: 1.25rem;
    }

    .footer-contacts h4 {
        text-align: left;
        position: relative;
        left: 0;
        margin-left: 0;
    }

    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-left: 0;
    }

    .footer-contact-item {
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
    }

    .footer-contact-link-wrapper {
        align-items: flex-start;
        text-align: left;
    }

    .footer-contact-link {
        text-align: left;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Анимации удалены для оптимизации производительности */

/* Кнопка языка для мобильной версии - скрыта на десктопе */
.mobile-language-toggle {
    display: none;
}

/* Контейнер мобильных кнопок (меню + языки) — скрыт на десктопе */
.mobile-top-buttons {
    display: none;
}

/* Кнопка «BROWSE» для мобильного меню — скрыта на десктопе */
.mobile-browse-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.25;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-browse-btn:hover,
.mobile-browse-btn:focus,
.mobile-browse-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    outline: none;
}

.mobile-browse-btn-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
    flex-shrink: 0;
}

.mobile-browse-btn-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-browse-btn.active .mobile-browse-btn-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-browse-btn.active .mobile-browse-btn-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-browse-btn.active .mobile-browse-btn-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-browse-btn-text {
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-background {
        height: 100%;
        will-change: auto;
        transform: translate3d(0, 0, 0) scale(1.1) !important;
    }

    /* На мобильных скрываем только шапку навбара, overlay и меню остаются в DOM для открытия по кнопке BROWSE */
    .navbar {
        height: 0;
        overflow: visible;
        background: transparent !important;
        box-shadow: none !important;
    }

    .navbar .nav-wrapper {
        display: none !important;
    }

    /* Блок кнопок: Меню слева, Язык справа (таблетки). Прячутся при скролле вниз, показываются при скролле вверх */
    .mobile-top-buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        position: fixed;
        top: 20px;
        left: 20px;
        right: 20px;
        z-index: 1001;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-top-buttons.mobile-top-buttons--hidden {
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-menu-dropdown {
        position: relative;
    }

    .mobile-top-buttons .mobile-browse-btn {
        position: static;
        display: flex;
    }

    .mobile-menu-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 8px;
        min-width: 160px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 1002;
        overflow: hidden;
    }

    .mobile-menu-dropdown.active .mobile-menu-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu-option {
        display: block;
        width: 100%;
        padding: 0.75rem 1.25rem;
        border: none;
        background: transparent;
        color: var(--text-dark);
        font-size: inherit;
        font-weight: 500;
        font-family: inherit;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition);
        outline: none;
        box-sizing: border-box;
    }

    .mobile-menu-option:hover {
        background: rgba(255, 179, 0, 0.1);
        color: var(--primary-color);
    }

    .mobile-menu-option.active {
        background: var(--primary-color);
        color: var(--white);
    }

    /* Кнопка языка в том же стиле, что и Меню (градиентная таблетка) */
    .mobile-language-toggle {
        position: relative;
        display: block;
    }

    .mobile-language-toggle .language-dropdown {
        position: relative;
    }

    .mobile-language-toggle .language-select-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: #ffffff;
        border: none;
        border-radius: 9999px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.05em;
        line-height: 1.25;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: box-shadow 0.2s ease, background 0.2s ease;
    }

    .mobile-language-toggle .language-select-btn:hover,
    .mobile-language-toggle .language-dropdown.active .language-select-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: #ffffff;
    }

    .mobile-language-toggle .language-select-btn svg {
        color: #ffffff;
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .mobile-language-toggle .language-dropdown-menu {
        right: 0;
        left: auto;
        margin-top: 8px;
        min-width: 80px;
        border-radius: 12px;
        overflow: hidden;
    }

    .navbar .container {
        background: #ffffff !important;
    }

    .navbar .nav-wrapper {
        background: #ffffff !important;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 950;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    .language-dropdown {
        position: relative;
    }
    
    .language-select-hidden {
        display: none !important;
    }
    
    .language-select-btn {
        font-size: 0.85rem;
    }
    
    .language-dropdown-menu {
        right: 0;
        min-width: 70px;
    }

    .menu-toggle {
        display: flex;
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }

    .menu-toggle:hover,
    .menu-toggle:focus,
    .menu-toggle:active {
        outline: none;
        box-shadow: none;
        background: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        background: var(--white);
        width: 75%;
        max-width: 400px;
        padding: 0;
        padding-top: 1rem;
        margin: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu .menu-header {
        display: none;
    }

    .nav-menu .menu-tagline-item {
        display: block;
        padding: 1.5rem 1.5rem 1rem;
        border-bottom: none;
        position: relative;
    }

    .nav-menu .menu-tagline-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
    }

    .menu-close {
        display: flex !important;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--text-dark);
        cursor: pointer;
        padding: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        line-height: 1;
        font-weight: 300;
        flex-shrink: 0;
    }

    .menu-close:hover {
        color: var(--primary-color);
        opacity: 0.7;
    }

    .menu-close span {
        display: block;
        font-size: 2rem;
        line-height: 1;
    }

    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background: var(--white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .menu-header .menu-tagline {
        display: none;
    }

    .menu-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .menu-tagline-item {
        display: block;
        padding: 1.5rem 1.5rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .menu-tagline {
        color: var(--text-dark);
        font-size: 0.95rem;
        line-height: 1.4;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .menu-tagline > div:first-child {
        opacity: 0.7;
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
        line-height: 1.3;
        text-align: center;
    }

    .tagline-brand {
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 1.3;
        color: var(--primary-color);
        margin: 0;
        text-align: center;
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        height: auto;
        transition: var(--transition);
        text-decoration: none !important;
        position: relative;
        border: none;
        border-radius: 0;
        background: transparent;
        margin: 0 1rem;
        line-height: 1.4;
        box-sizing: border-box;
        outline: none;
        -webkit-tap-highlight-color: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-menu .nav-link::before {
        display: none;
    }

    .nav-menu .nav-link::after {
        display: none !important;
        content: none !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active,
    .nav-menu .nav-link:focus {
        color: var(--primary-color);
        background: rgba(255, 179, 0, 0.05);
        padding: 0.75rem 1.5rem;
        margin: 0 1rem;
        height: auto;
        min-height: auto;
        text-decoration: none !important;
        outline: none;
    }

    .nav-menu .nav-link:hover::after,
    .nav-menu .nav-link:active::after,
    .nav-menu .nav-link:focus::after {
        display: none !important;
        width: 0 !important;
    }

    .nav-menu .nav-link.active {
        color: var(--primary-color);
        font-size: 1.05em;
    }

    .nav-menu .nav-link.active:hover {
        color: var(--primary-color);
    }

    .nav-menu li:last-child {
        padding-bottom: 1.5rem;
    }

    .hero-logo-mobile {
        display: block;
        height: 60px;
        width: auto;
        margin: 0 auto 2.5rem;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .hero-title {
        font-size: 28px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.5;
        font-weight: 400;
    }

    .hero-buttons .btn {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .section {
        padding: 100px 0 80px;
        scroll-margin-top: 80px;
    }

    .transfers-section {
        padding-top: 120px;
    }

    .transfer-features {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 3.5rem;
    }

    .transfer-feature-item {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
        margin-top: 0;
        margin-bottom: 2rem;
        font-weight: 700;
    }

    .reviews-section-title {
        font-size: 25px;  /* как у «Трансфер из аэропорта» */
        margin-bottom: 1.5rem;  /* как между подзаголовком и каруселью */
    }

    .section-subtitle {
        font-size: 1.4rem;
        color: var(--text-dark);
        opacity: 1;
        margin-bottom: 4rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .reviews-section-subtitle {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.5;
        color: var(--text-dark);
        text-align: center;
        margin-top: 100px;
        margin-bottom: 1.5rem;
    }

    .review-form-tab,
    .review-modal .review-form-tab {
        padding: 0.625rem 0.75rem;
    }

    .review-form-tab-row {
        font-size: 14.4px;
    }

    .contact-section .section-subtitle {
        font-size: 17px;
        font-weight: 500;
        color: #4a5568;
    }

    .reviews-write-wrap {
        margin-top: 100px;  /* как от начала секции до «Последние отзывы» */
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .service-card {
        padding: 36px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .service-card h3 {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 3px;
        line-height: 1.3;
        gap: 0.4rem;
    }
    
    .service-card p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        font-size: 11px;
        color: #94a3b8;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .service-price {
        font-size: 1.15rem;
        font-weight: 800;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.85rem;
    }

    .service-icon-bus svg {
        width: 32px;
        height: 32px;
    }

    .excursions-grid {
        grid-template-columns: 1fr;
        align-items: start;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        gap: 1.5rem;
    }
    
    .excursion-card {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Карусель трансферов: bleed-through — скролл на всю ширину, отступы у ленты */
    .transfers-carousel-wrapper {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
    }
    .transfers-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    .transfers-carousel-wrapper {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .transfers-carousel-wrapper .transfers-grid.excursions-grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 1rem;
        grid-template-columns: unset;
        padding-left: 16px;
        padding-right: 0; /* только распорка ::after справа — не складываем */
        width: max-content;
        min-width: 100%;
        box-sizing: border-box;
    }

    /* Распорка справа: 4px — оптическая компенсация (визуально = зазору слева) */
    .transfers-carousel-wrapper .transfers-grid.excursions-grid::after {
        content: "";
        flex: 0 0 4px;
        display: block;
    }

    .excursion-card.transfer-card {
        flex: 0 0 auto;
        align-self: stretch;
        width: 85vw;
        min-width: 280px;
        max-width: 340px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .excursion-card.transfer-card .excursion-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
    }

    .excursion-card.transfer-card .excursion-content-footer {
        margin-top: auto;
    }

    
    .excursion-image {
        max-width: 100%;
        width: 100%;
    }
    
    .excursion-content {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .excursion-content h3,
    .excursion-content p,
    .excursion-details {
        max-width: 100%;
        box-sizing: border-box;
    }

    .excursion-order-btn {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        left: auto;
        transform: none;
    }

    /* Кнопка «Заказать» на всю ширину карточки (как на десктопе) */
    .excursion-info-block .excursion-order-btn {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem) !important;
        max-width: none;
        box-sizing: border-box;
    }

    /* Кнопка в карточках трансферов — узкая, по центру */
    .transfer-card .excursion-info-block .excursion-order-btn {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem) !important;
        display: block;
        box-sizing: border-box;
    }

    .excursion-order-btn:hover {
        transform: translateY(-2px);
    }

    .about-section {
        padding-bottom: 1.5rem;
    }

    .reviews-section {
        padding-top: 1.5rem;
    }

    .about-content {
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: 1.1fr 1fr;
        gap: 0.75rem;
    }

    .about-stats-right {
        gap: 0.5rem;
    }

    .stat-item--feature {
        padding: 1.5rem 0.85rem;
        min-height: 170px;
    }

    .stat-item--feature .stat-number {
        font-size: 2rem;
        margin-bottom: 0.1rem;
    }

    .stat-item--feature .stat-label {
        font-size: 14px;
        line-height: 1.2;
    }

    .stat-item--small {
        padding: 1rem 0.5rem;
        min-height: 76px;
    }

    .stat-item--small .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.08rem;
    }

    .stat-item--small .stat-label {
        font-size: 12px;
        line-height: 1.2;
    }

    .feature-item {
        text-align: left;
    }

    .feature-item h4 {
        text-align: left;
    }

    .feature-item p {
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-icon {
        width: 2rem;
        height: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        transition: none;
        -webkit-tap-highlight-color: transparent;
    }

    .hero-buttons .btn:hover,
    .hero-buttons .btn:active {
        transition: none;
    }

    .hero-buttons .btn-primary:hover,
    .hero-buttons .btn-primary:active {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .hero-buttons .btn-secondary:hover,
    .hero-buttons .btn-secondary:active {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .hero-buttons .btn-outline:hover,
    .hero-buttons .btn-outline:active {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn {
        width: 100%;
    }

    .reviews-cta-btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.5;
        font-weight: 400;
    }

    .hero-buttons .btn {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .section {
        padding: 60px 0;
    }

    .reviews-section-subtitle {
        font-size: 17px;
        font-weight: 500;
        color: var(--text-dark);
        text-align: center;
        margin-top: 60px;
    }

    .reviews-section-title {
        font-size: 25px;  /* как у «Трансфер из аэропорта» */
    }

    .reviews-write-wrap {
        margin-top: 60px;  /* как от начала секции до «Последние отзывы» */
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .excursions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .excursions-grid {
        gap: 1rem;
    }

    .about-stats {
        gap: 0.5rem;
    }

    .about-stats-right {
        gap: 0.4rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
}
