:root {
    --font-1: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-bold: 600;
    --color-primary: #1a1a1a;
    --color-secondary: #2c5f3a;
    --color-accent: #c9a84c;
    --color-accent-light: #e8d88c;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-gray-dark: #e0e0e0;
    --color-text-muted: #666666;
    --innerWidth: 1400px;
    --gutter: 20px;
    --pad-inner: 40px;
    --header-height: 71px;
    --rounded-normal: 8px;
    --rounded-large: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-1);
    font-size: 15px;
    font-weight: 300;
    background: var(--color-white);
    color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== MARQUEE ========== */
.marquee-top {
    --marquee-bg: #1a1a1a;
    --marquee-color: #ffffff;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    height: 50px;
    background-color: var(--marquee-bg);
    color: var(--marquee-color);
}

.marquee-top__wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-top__item {
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-top__ico {
    vertical-align: middle;
    fill: currentColor;
}

@keyframes marqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ========== HEADER ========== */
.inner {
    max-width: var(--innerWidth);
    width: calc(100% - var(--pad-inner) * 2);
    margin: 0 auto;
}

#header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    z-index: 100;
    border-bottom: 1px solid var(--color-gray-dark);
}

.header-main__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-main__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}
.header-main__logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s;
}

.header-main__logo img:hover {
    opacity: 0.8;
}

/* ========== НАВИГАЦИЯ (ДЕСКТОП - ГОРИЗОНТАЛЬНАЯ) ========== */
.nav-header-main {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-header-main__list {
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    gap: 32px;
}

.nav-header-main__item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-header-main__link {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
    font-size: 15px;
}

.nav-header-main__link:hover {
    opacity: 0.7;
}

/* ========== БУРГЕР-МЕНЮ (СКРЫТ НА ДЕСКТОПЕ) ========== */
.header-main__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 100;
}

.header-main__hamburger span {
    width: 22px;
    height: 2px;
    background-color: #c9a84c;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

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

.header-main__hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Кнопка бронирования */
.header-main__right {
    display: flex;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--rounded-normal);
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.button--small--rounded {
    height: 38px;
    padding: 0 20px;
    font-size: 14px;
}

.button--medium--rounded {
    height: 48px;
    padding: 0 32px;
}

.button--outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ (ДО 1024px) ========== */
@media (max-width: 1024px) {
    :root {
        --pad-inner: 24px;
    }

    .header-main__hamburger {
        display: flex !important;
    }

    .nav-header-main {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: var(--color-white);
        transition: left 0.3s ease;
        padding: 30px 20px;
        z-index: 999;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        display: block;
    }

    .nav-header-main.active {
        left: 0;
    }

    .nav-header-main__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-header-main__item {
        width: 100%;
    }

    .nav-header-main__link {
        font-size: 18px;
        padding: 8px 0;
        width: 100%;
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ (ДО 768px) ========== */
@media (max-width: 768px) {
    :root {
        --pad-inner: 16px;
        --header-height: 60px;
    }

    .header-main__logo {
        font-size: 14px;
    }
      .header-main__logo img {
        height: 32px;
    }

    .header-main__bts .button {
        font-size: 12px;
        padding: 0 12px;
        height: 34px;
    }

    .nav-header-main {
        width: 260px;
    }

    .nav-header-main__link {
        font-size: 16px;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 24px;
    }
}

/* ========== ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ (ДО 480px) ========== */
@media (max-width: 480px) {
    .header-main__logo {
        font-size: 12px;
    }
    .header-main__logo img {
        height: 28px;
    }

    .header-main__bts .button {
        font-size: 10px;
        padding: 0 10px;
        height: 30px;
    }



    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .tour-card__title {
        font-size: 18px;
    }

    .menu-float__item {
        font-size: 10px;
    }
     .hero-title {
        font-size: 36px;
    }

    .hero-feature {
        font-size: 14px;
    }
    .hero-quote {
        font-size: 14px;
    }

    .hero-buttons .button {
        padding: 0 20px;
        height: 44px;
        font-size: 14px;
    }
}

/* ========== ПЛАВАЮЩЕЕ МЕНЮ (ДЕСКТОП) ========== */
.menu-float {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-float.is-visible {
    opacity: 1;
    visibility: visible;
}

.menu-float__inner {
    display: flex;
    justify-content: center;
}

.menu-float__wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 8px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-dark);
}

.menu-float__bottom {
    display: flex;
    gap: 16px;
    align-items: center;
}

.menu-float__nav {
    display: flex;
    gap: 24px;
    list-style: none;
}

.menu-float__item {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.menu-float__item:hover {
    opacity: 0.7;
}

/* Плавающее меню на мобильных */
@media (max-width: 768px) {
    .menu-float {
        bottom: 10px;
    }

    .menu-float__wrapper {
        padding: 6px 12px;
        width: 95%;
    }

    .menu-float__nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-float__item {
        font-size: 11px;
        white-space: nowrap;
    }
}

/* ========== ЗАНАВЕС ========== */
.curtain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    overflow: hidden;
    pointer-events: none;
}

.curtain-left, .curtain-right {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100vh;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    transition: transform 1.8s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1001;
    pointer-events: none;
}
/* Левая шторка */
.curtain-left {
    left: 0;
    background-image: url('/static/images/liana-left.webp');
    background-position: right top;
    transform-origin: left center;
}

/* Правая шторка */
.curtain-right {
    right: 0;
    background-image: url('/static/images/liana-right.webp');
    background-position: left top;
    transform-origin: right center;
}


.curtain-left.open {
    transform: translateX(-100%);
}

.curtain-right.open {
    transform: translateX(100%);
}

.curtain-welcome {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1002;
    color: var(--color-white);
    pointer-events: none;
    transition: opacity 0.8s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);  /* ← тень для текста */
}

.curtain-welcome.fade-out {
    opacity: 0%;
}

.curtain-welcome__label {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.curtain-welcome__title {
    font-size: clamp(48px, 10vw, 120px);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;

}
.scroll-hint {
    margin-top: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.scroll-arrow {
    font-size: 20px;
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

.site-wrapper.visible {
    opacity: 1;
}

/* ========== HERO СЕКЦИЯ ========== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a2a1a;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #e8d88c;
    border: 1px solid rgba(232, 216, 140, 0.3);
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-description strong {
    color: #e8d88c;
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #c9a84c;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
}

.hero-quote {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button--primary {
    background: #c9a84c;
    color: #1a1a1a;
    border: none;
}

.button--primary:hover {
    background: #e8d88c;
    transform: translateY(-2px);
}

.button--outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.button--outline:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-title {
    font-size: clamp(42px, 8vw, 80px);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}
.hero-image {
    border-radius: var(--rounded-large);
    overflow: hidden;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        text-align: center;
        padding: 40px 0;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-quote {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .badge-text {
        font-size: 11px;
        padding: 6px 16px;
    }

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

/* ========== ТУРЫ ========== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

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

.tour-card {
    background: var(--color-white);
    border-radius: var(--rounded-large);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--color-gray-dark);
    display: block;           /* чтобы ссылка вела себя как блок */
    text-decoration: none;   /* убрать подчёркивание */
    color: inherit;          /* наследовать цвет */
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tour-card__image {
    aspect-ratio: 16/11;
    background-size: cover;
    background-position: center;
}

.tour-card__content {
    padding: 24px;
}

.tour-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.tour-card__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.tour-card__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.tour-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-dark);
}

.tour-card__price {
    font-weight: 600;
    font-size: 18px;
}

.tour-card__duration {
    font-size: 13px;
    color: var(--color-text-muted);
}

.book-tour-btn {
    margin-top: 25px;
    width: 100%;
    background: white;
    color: #2c5f3a;
    border: 2px solid #2c5f3a;
    border-radius: 60px;
    padding: 14px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.book-tour-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/bron.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 60px;
    z-index: -1;
}

.book-tour-btn:hover::after {
    opacity: 1;
}
.book-tour-btn:hover .btn-text {
    width: 0;
    opacity: 0;
    display: none;
}
.book-tour-btn:hover {
    color: transparent;

    background-image: url('/static/images/bron.webp');
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

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

@media (max-width: 768px) {
    .grid-cards {
        grid-template-columns: 1fr;
    }

    .tour-card__content {
        padding: 20px;
    }
}

/* ========== О НАС ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-list li::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== CTA ========== */
.cta-section {
    background: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 32px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* ========== ФУТЕР ========== */
#footer {
    background: #1a1a1a;
    color: #999;
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.footer__menu {
    list-style: none;
}

.footer__menu li {
    margin-bottom: 12px;
}

.footer__menu a, .footer__menu span {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__nav {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.footer__nav a {
    color: #999;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        justify-content: center;
    }
}

/* ========== СТРАНИЦА ТУРА ========== */
.tour-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--color-white);
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.tour-hero-content {
    position: relative;
    z-index: 1;
}

.tour-content {
    padding: 60px 0;
}

.tour-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.tour-info-card {
    background: var(--color-gray);
    padding: 30px;
    border-radius: var(--rounded-large);
    margin-bottom: 30px;
}

.tour-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-dark);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.tour-sidebar {
    position: sticky;
    top: 100px;
}

.price-card {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--rounded-large);
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
}

@media (max-width: 1024px) {
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tour-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .tour-content {
        padding: 40px 0;
    }

    .tour-info-card {
        padding: 20px;
    }

    .price {
        font-size: 36px;
    }
}

/* ========== МОДАЛЬНОЕ ОКНО БРОНИРОВАНИЯ ========== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.booking-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.booking-modal__content {
    position: relative;
    background: white;
    width: 500px;
    max-width: 90%;
    border-radius: 24px;
    padding: 32px;
    animation: modalSlideIn 0.3s ease;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.booking-modal__close:hover {
    color: #1a1a1a;
}

.booking-modal__header {
    text-align: center;
    margin-bottom: 28px;
}

.booking-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.booking-modal__header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-tour-name {
    color: #c9a84c;
    font-weight: 500;
    font-size: 14px;
    background: #f8f8f8;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
}

.booking-form .form-field {
    margin-bottom: 20px;
}

.booking-form .form-field__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.booking-form .text-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-size: 15px;
    transition: border-color 0.3s;
}

.booking-form .text-input:focus {
    outline: none;
    border-bottom-color: #c9a84c;
}

.booking-form .form__bts {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.button--primary {
    background: #2c5f3a;
    color: white;
    border: none;
}

.button--primary:hover {
    background: #1a4a2a;
}

.button--outline {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666;
}

.button--outline:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #2c5f3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.booking-success h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.booking-success p {
    color: #666;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .booking-modal__content {
        padding: 24px;
    }

    .booking-form .form__bts {
        flex-direction: column;
    }

    .booking-form .form__bts button {
        width: 100%;
    }
}