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

:root {
    --primary-color: #e3b25a;
    --primary-dark: #d4a048;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

/* Галерея скрыта до загрузки данных (убирает мелькание HTML → API) */
html.main-image-not-loaded .gallery-main,
html.main-image-not-loaded .gallery-thumbnails-wrapper {
    visibility: hidden;
}
html.main-image-not-loaded .gallery-main {
    min-height: 300px;
    background: #f0f0f0;
}

/* Блок «Главные впечатления» скрыт до загрузки данных из админки */
html.impressions-not-loaded .impressions-section {
    visibility: hidden;
    min-height: 120px;
    background: #f0f0f0;
}

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

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-link.active::after {
    width: 100%;
}

.header-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-text {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-align: right;
    width: 100%;
}

.phone-dropdown {
    position: relative;
    display: inline-block;
}

.phone-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 10px;
    background: transparent;
    line-height: 1.2;
}

.phone-link:hover {
    color: var(--primary-color);
    background: rgba(227, 178, 90, 0.08);
    transform: translateY(-1px);
}

.phone-arrow {
    font-size: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(227, 178, 90, 0.12);
    color: var(--primary-color);
    flex-shrink: 0;
}

.phone-dropdown:hover .phone-arrow {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(227, 178, 90, 0.3);
}

.phone-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 12px 0;
    border: 1px solid rgba(227, 178, 90, 0.1);
    overflow: hidden;
}

.phone-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.phone-dropdown:hover .phone-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.phone-dropdown-header {
    padding: 10px 18px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(227, 178, 90, 0.05), rgba(227, 178, 90, 0.02));
    border-bottom: 1px solid rgba(227, 178, 90, 0.15);
    margin-bottom: 4px;
}

.phone-dropdown-section {
    padding: 10px 18px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(248, 248, 248, 0.5);
    border-top: 1px solid rgba(227, 178, 90, 0.15);
    border-bottom: 1px solid rgba(227, 178, 90, 0.15);
    margin-top: 8px;
    margin-bottom: 4px;
}

.phone-label {
    display: block;
}

.phone-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    margin: 2px 0;
    text-align: right;
}

.phone-dropdown-item::before {
    content: '📞';
    margin-left: 10px;
    margin-right: 0;
    font-size: 14px;
    opacity: 0.6;
    transition: all 0.25s ease;
    order: 2;
}

.phone-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(227, 178, 90, 0.05), rgba(227, 178, 90, 0.1));
    color: var(--primary-color);
    padding-right: 22px;
    transform: translateX(-4px);
}

.phone-dropdown-item:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

/* Tours Info Banner */
.tours-info-banner {
    display: none;
    position: relative;
    background: #e3b25a;
    padding: 40px 0;
    overflow: hidden;
    margin: 0;
}

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

.tours-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.tours-info-text {
    flex: 1;
    min-width: 250px;
}

.tours-info-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out;
}

.tours-info-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tours-info-btn {
    background: var(--white);
    color: #e3b25a;
    border: 2px solid var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tours-info-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tours-info-btn:active {
    transform: translateY(0);
}

/* Animated background */
.tours-info-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.tours-info-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%
    );
    animation: float 15s ease-in-out infinite;
}

.tours-info-animation::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 70% 50%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    animation: floatReverse 18s ease-in-out infinite;
}

/* Wave animation */
.tours-info-banner::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 200%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg width='120' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 Q30,10 60,30 T120,30 L120,60 L0,60 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat-x;
    background-size: 120px 60px;
    background-position: 0 bottom;
    animation: wave 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.tours-info-banner::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 200%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg width='120' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 Q30,50 60,30 T120,30 L120,0 L0,0 Z' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat-x;
    background-size: 120px 60px;
    background-position: 0 top;
    animation: waveReverse 10s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    66% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-120px);
    }
}

@keyframes waveReverse {
    0% {
        transform: translateX(-120px);
    }
    100% {
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .tours-info-banner {
        padding: 30px 0;
    }
    
    .tours-info-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tours-info-title {
        font-size: 26px;
    }
    
    .tours-info-description {
        font-size: 14px;
        display: none; /* Скрываем на мобильных устройствах */
    }
    
    .tours-info-btn {
        width: 100%;
        max-width: 280px;
    }
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 10;
    width: 90%;
    max-width: 700px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    margin-bottom: 40px;
}

.hero-text-main {
    display: inline;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    white-space: nowrap;
}

.hero-text-second {
    display: inline;
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-left: 0;
}

.btn-contact {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-contact:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hero-title .highlight {
    background: rgba(227, 178, 90, 0.85);
    padding: 4px 18px;
    border-radius: 10px;
    display: inline-block;
    margin-right: 12px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 178, 90, 0.4);
    font-size: 64px;
    line-height: 1.2;
    backdrop-filter: blur(5px);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% {
        box-shadow: 0 4px 15px rgba(227, 178, 90, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(227, 178, 90, 0.6), 0 0 30px rgba(227, 178, 90, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(227, 178, 90, 0.4);
    }
}

.animate-fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    opacity: 0;
}

.hero-title .highlight {
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards,
               shimmer 3s ease-in-out 1.7s infinite;
    opacity: 0;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

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

.about-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.decorative-line {
    position: relative;
    height: 2px;
    margin: 25px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decorative-line::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    border-top: 2px dashed var(--border-color);
    transform: translateY(-50%);
}

.decorative-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(227, 178, 90, 0.3);
    transition: transform 0.1s ease-out;
    left: 0;
}

.decorative-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--primary-color);
    transition: transform 0.1s ease-out;
}

.highlight-circle {
    position: relative;
    display: inline-block;
}

.highlight-circle::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(227, 178, 90, 0.3);
    border-radius: 6px;
    z-index: -1;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-color);
}

.about-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-adventure {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: 20px;
}

.btn-adventure:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 178, 90, 0.4);
}

/* About Cards Slider */
/* About Cards Slider - New 3D Design */
.about-cards-slider {
    position: relative;
    padding: 60px 0;
    perspective: 1200px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.about-slider-viewport {
    position: relative;
    width: 100%;
    height: 500px;
    overflow-x: hidden;
    overflow-y: visible;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.about-slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-card {
    position: absolute;
    width: 380px;
    height: 480px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    cursor: pointer;
}

.about-card[data-index="0"] {
    transform: translateX(0) translateZ(0) scale(1);
    opacity: 1;
    z-index: 3;
}

.about-card[data-index="1"] {
    transform: translateX(450px) translateZ(-150px) scale(0.75);
    opacity: 0.6;
    z-index: 1;
}

.about-card[data-index="2"] {
    transform: translateX(-450px) translateZ(-150px) scale(0.75);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.about-card.active {
    transform: translateX(0) translateZ(0) scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
}

.about-card.prev {
    transform: translateX(-450px) translateZ(-150px) scale(0.75) !important;
    opacity: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.about-card.next {
    transform: translateX(450px) translateZ(-150px) scale(0.75) !important;
    opacity: 0.6 !important;
    z-index: 1 !important;
}

.about-card-inner {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
}

.about-card.active .about-card-inner {
    box-shadow: none;
    transform: translateY(-10px);
}

.about-card-image {
    width: 100%;
    height: 65%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.about-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
    transition: opacity 0.4s ease;
}

.about-card.active .about-card-overlay {
    opacity: 0.7;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) saturate(1);
}

.about-card.active .about-card-image img {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
}

.about-card-content {
    padding: 30px;
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    position: relative;
}

.about-card-number {
    position: absolute;
    top: -40px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    box-shadow: none;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-card.active .about-card-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: none;
}

.about-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-card-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

/* Slider Controls */
.about-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.about-slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.about-slider-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.about-slider-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.about-slider-btn:hover {
    transform: scale(1.1);
    border-color: transparent;
}

.about-slider-btn:hover::before {
    opacity: 1;
}

.about-slider-btn:hover svg {
    color: var(--white);
    transform: scale(1.2);
}

.about-slider-btn:active {
    transform: scale(0.95);
}

.about-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.about-slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.about-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(227, 178, 90, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.about-slider-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.about-slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.about-slider-dot.active::before {
    opacity: 1;
    transform: scale(1.5);
}

.about-slider-dot:hover {
    transform: scale(1.3);
    background: var(--primary-dark);
}

/* About Cards */
.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


.about-card-image {
    width: 100%;
    height: 320px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.about-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(227, 178, 90, 0) 0%, 
        rgba(227, 178, 90, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}


.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
    filter: brightness(1) saturate(1) contrast(1);
}

.about-card:hover .about-card-image img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.15) contrast(1.05);
}

.about-slider-wrapper .about-card:hover .about-card-image img {
    transform: scale(1.06);
}

.about-card-content {
    padding: 30px;
    background: var(--white);
    position: relative;
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
}

.about-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 50%,
        var(--primary-color) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shimmer 2s linear infinite;
}

.about-card:hover .about-card-content::before {
    opacity: 1;
}

.about-card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(227, 178, 90, 0.05) 0%, 
        transparent 100%);
    transition: width 0.6s ease;
    z-index: 0;
}

.about-card:hover .about-card-content::after {
    width: 100%;
}

.about-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
    z-index: 1;
    letter-spacing: -0.5px;
}

.about-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(227, 178, 90, 0.5);
}

.about-card:hover .about-card-title::before {
    height: 24px;
}

.about-card-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 8px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.info-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
    max-width: 100%;
}

.info-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Tours Section */
.tours-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.section-badge {
    display: inline-block;
    background: rgba(227, 178, 90, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    margin-top: 15px;
}

/* Tabs Section */
.tabs-search-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tabs-section {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.tab-text-line1 {
    display: block;
    white-space: nowrap;
}

.tab-text-line2 {
    display: block;
    font-size: 0.85em;
    font-weight: 500;
    margin-top: 2px;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.tab-btn.active::after {
    width: 100%;
}

/* Tours Search */
.tours-search-container {
    position: relative;
    min-width: 280px;
    max-width: 500px;
    flex: 1;
    flex-shrink: 0;
}

.tours-search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.tours-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 178, 90, 0.1);
}

.tours-search-input::placeholder {
    color: var(--text-light);
}

.tours-search-container .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: color 0.3s;
}

.tours-search-container:has(.tours-search-input:focus) .search-icon {
    color: var(--primary-color);
}

.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.tour-card {
    cursor: pointer;
}

a.tour-card:hover {
    text-decoration: none;
    color: inherit;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tour-card-header {
    padding: 25px 25px 15px;
    position: relative;
}

.tour-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.tour-location {
    font-size: 14px;
    color: var(--text-light);
}

.slot-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(227, 178, 90, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slot-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}

.tour-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    opacity: 0.8;
}

.tour-details-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.tour-price {
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
}

.tour-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tour-type.private {
    background: #6c757d;
}

.tour-type.request {
    background: #17a2b8;
}

.tour-date {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.tour-info {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.tour-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.tour-info p:last-child {
    margin-bottom: 0;
}

.tour-card-footer {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-plan {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-share {
    display: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
}

.btn-prev,
.btn-next {
    padding: 12px 25px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-prev:hover,
.btn-next:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    height: 100%;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    padding-left: 15px;
}

.service-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.service-card:hover .service-title::before {
    height: 20px;
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 10px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.team-experience {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-description-wrapper {
    position: relative;
}

.team-description-wrapper.collapsed .team-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    transition: all 0.3s ease;
}

.team-read-more {
    margin-top: 15px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.3s ease;
}

.team-read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .team-card-image {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .team-card-image {
        height: 300px;
    }
    
    .team-card-content {
        padding: 25px 20px;
    }
    
    .team-name {
        font-size: 22px;
    }
    
    .team-description {
        font-size: 14px;
    }
}

/* Video Reviews Section */
.video-reviews-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.video-reviews-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 30px;
}

.video-reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 20px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    position: relative;
}

.video-reviews-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.video-review-item {
    flex: 0 0 320px;
    height: 570px;
    position: relative;
    flex-shrink: 0;
}

.video-review-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--text-dark);
    box-shadow: none;
    transition: transform 0.3s ease;
}

.video-review-wrapper:hover {
    transform: translateY(-5px);
}

.video-review {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.video-review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1;
}

.video-review-wrapper.playing .video-review-overlay {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(227, 178, 90, 0.9);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 178, 90, 0.5);
}

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


.video-reviews-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.video-reviews-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-reviews-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.video-reviews-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.video-reviews-btn:disabled:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: none;
}

/* Reviews and Maps Section */
.reviews-maps-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-maps-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.yandex-reviews-container {
    width: 100%;
    grid-column: 1;
}

.maps-container {
    width: 100%;
    grid-column: 2;
}


.yandex-reviews-widget {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 800px;
}

.yandex-reviews-widget > div {
    width: 100% !important;
    height: 800px !important;
}


.maps-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.map-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.map-tab:hover {
    color: var(--text-dark);
}

.map-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.maps-content {
    position: relative;
    width: 100%;
    height: 735px;
}

.map-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.map-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-column {
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.footer-legal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 12px 0;
}

.footer-legal-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.footer-email {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-phone-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 500;
}

.footer-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-phone:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-address-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.footer-address-city {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.cookie-banner-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.cookie-text {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.cookie-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(227, 178, 90, 0.3);
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 7px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .cookie-banner-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .cookie-text {
        font-size: 12px;
        flex: 1;
        text-align: left;
        min-width: 0;
    }

    .cookie-btn {
        padding: 8px 20px;
        font-size: 12px;
        flex-shrink: 0;
        width: auto;
        max-width: none;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-phone-toggle {
    display: none;
}

.mobile-phone-dropdown-menu {
    display: none;
}

@media (min-width: 969px) {
    .mobile-phone-dropdown-menu {
        display: none !important;
    }
}

@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
        position: relative;
        justify-content: space-between;
    }

    .logo {
        order: 0;
    }

    .mobile-phone-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        border: 2px solid var(--border-color);
        cursor: pointer;
        color: var(--text-dark);
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
        order: 1;
        width: 44px;
        height: 44px;
        margin-left: auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-phone-toggle svg {
        width: 20px;
        height: 20px;
    }

    .mobile-phone-toggle:hover,
    .mobile-phone-toggle:active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(227, 178, 90, 0.3);
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        border: 2px solid var(--border-color);
        font-size: 20px;
        cursor: pointer;
        color: var(--text-dark);
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
        order: 2;
        width: 44px;
        height: 44px;
        margin-left: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(227, 178, 90, 0.3);
    }

    .mobile-phone-dropdown-menu {
        display: block;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        padding: 12px 0;
        border: 1px solid rgba(227, 178, 90, 0.1);
        overflow: hidden;
        max-width: calc(100vw - 40px);
        pointer-events: none;
    }

    .mobile-phone-dropdown-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    }

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

    .mobile-phone-dropdown-header {
        padding: 10px 18px 8px;
        font-size: 10px;
        font-weight: 700;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient(135deg, rgba(227, 178, 90, 0.05), rgba(227, 178, 90, 0.02));
        border-bottom: 1px solid rgba(227, 178, 90, 0.15);
        margin-bottom: 4px;
    }

    .mobile-phone-dropdown-section {
        padding: 10px 18px 8px;
        font-size: 10px;
        font-weight: 700;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
        background: rgba(248, 248, 248, 0.5);
        border-top: 1px solid rgba(227, 178, 90, 0.15);
        border-bottom: 1px solid rgba(227, 178, 90, 0.15);
        margin-top: 8px;
    }

    .mobile-phone-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 18px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.25s ease;
        position: relative;
    }

    .mobile-phone-item::before {
        content: '📞';
        margin-right: 10px;
        font-size: 14px;
        opacity: 0.6;
        transition: all 0.25s ease;
    }

    .mobile-phone-item:hover,
    .mobile-phone-item:active {
        background: linear-gradient(90deg, rgba(227, 178, 90, 0.05), rgba(227, 178, 90, 0.1));
        color: var(--primary-color);
        padding-left: 22px;
    }

    .mobile-phone-item:hover::before,
    .mobile-phone-item:active::before {
        opacity: 1;
        transform: scale(1.1);
    }

    .header-content {
        flex-wrap: wrap;
        position: relative;
    }

    .header {
        position: relative;
    }

    .nav {
        width: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: none;
        pointer-events: none;
    }

    .nav.mobile-open {
        display: block;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding: 20px 0;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        list-style: none;
        margin: 0;
    }

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

    .header-contact {
        display: none;
    }

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

    .footer-logo-column {
        grid-column: 1 / -1;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .contact-text {
        text-align: center;
    }

    .phone-link {
        font-size: 18px;
        padding: 8px 14px;
        gap: 10px;
    }

    .phone-arrow {
        width: 20px;
        height: 20px;
        font-size: 7px;
    }

    .phone-dropdown-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px) scale(0.95);
        min-width: 220px;
    }

    .phone-dropdown:hover .phone-dropdown-menu {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .hero-content {
        left: 40px;
    }

    .hero-title {
        font-size: 42px;
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-text-main {
        font-size: 28px;
        white-space: normal;
    }

    .hero-text-second {
        font-size: 42px;
        margin-left: 0;
    }

    .hero-title .highlight {
        font-size: 42px;
        padding: 3px 15px;
    }

    .btn-contact {
        padding: 11px 26px;
        font-size: 14px;
    }

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

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

    .tabs-search-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .tabs-section {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
    }
    
    .tours-search-container {
        width: 100%;
        max-width: 100%;
    }
}

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

    /* About Slider Mobile */
    .about-cards-slider {
        overflow-x: hidden;
    }

    .about-slider-viewport {
        height: 400px;
        overflow-x: hidden;
    }

    .about-card {
        width: 320px;
        height: 400px;
    }

    .about-card[data-index="0"] {
        transform: translateX(-360px) translateZ(-100px) scale(0.7);
        opacity: 0;
        pointer-events: none;
    }

    .about-card[data-index="2"] {
        transform: translateX(360px) translateZ(-100px) scale(0.7);
    }

    .about-card.prev {
        transform: translateX(-360px) translateZ(-100px) scale(0.7) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .about-card.next {
        transform: translateX(360px) translateZ(-100px) scale(0.7) !important;
    }

    .about-card-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        top: -30px;
        right: 20px;
    }

    .about-card-title {
        font-size: 22px;
    }

    .about-slider-controls {
        gap: 25px;
        margin-top: 40px;
    }

    .about-slider-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    .hero-content {
        left: 20px;
        right: 20px;
        width: auto;
    }

    .hero-title {
        font-size: 28px;
        gap: 12px;
        margin-bottom: 25px;
    }

    .hero-text-main {
        font-size: 20px;
        white-space: normal;
    }

    .hero-text-second {
        font-size: 28px;
        margin-left: 0;
    }

    .hero-title .highlight {
        font-size: 28px;
    }

    /* About Slider Small Mobile */
    .about-cards-slider {
        padding: 30px 0;
        overflow-x: hidden;
    }

    .about-slider-viewport {
        height: 380px;
        overflow-x: hidden;
    }

    .about-card {
        width: 280px;
        height: 380px;
    }

    .about-card[data-index="0"] {
        transform: translateX(-320px) translateZ(-80px) scale(0.65);
        opacity: 0;
        pointer-events: none;
    }

    .about-card[data-index="2"] {
        transform: translateX(320px) translateZ(-80px) scale(0.65);
    }

    .about-card.prev {
        transform: translateX(-320px) translateZ(-80px) scale(0.65) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .about-card.next {
        transform: translateX(320px) translateZ(-80px) scale(0.65) !important;
    }

    .about-card-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -25px;
        right: 15px;
    }

    .about-card-title {
        font-size: 20px;
    }

    .about-card-subtitle {
        font-size: 14px;
    }

    .about-card-content {
        padding: 20px;
    }

    .about-slider-controls {
        gap: 15px;
        margin-top: 30px;
    }

    .about-slider-btn {
        width: 44px;
        height: 44px;
    }

    .about-slider-dots {
        gap: 8px;
    }

    .about-slider-dot {
        width: 8px;
        height: 8px;
    }

    .btn-contact {
        padding: 10px 24px;
        font-size: 14px;
        width: auto;
        max-width: none;
    }

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

    .about-section,
    .tours-section,
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-wrapper {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Video Reviews Mobile */
    .video-reviews-section {
        padding: 60px 0;
    }

    .reviews-maps-section {
        padding: 60px 0;
    }

    .reviews-maps-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .yandex-reviews-container {
        grid-column: 1;
    }

    .maps-container {
        grid-column: 1;
    }

    .yandex-reviews-widget {
        height: 800px;
    }

    .yandex-reviews-widget > div {
        height: 800px !important;
    }

    .maps-tabs {
        flex-wrap: wrap;
    }

    .map-tab {
        font-size: 14px;
        padding: 10px 20px;
    }

    .video-review-item {
        flex: 0 0 280px;
        height: 500px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

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

    .video-reviews-btn {
        width: 44px;
        height: 44px;
    }

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

    .footer-logo-column {
        grid-column: 1;
    }

    .footer-title {
        font-size: 16px;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
}

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

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: color 0.3s ease;
    z-index: 1;
}

.contact-modal-close:hover {
    color: var(--primary);
}

.contact-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.contact-modal-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 178, 90, 0.1);
}

.contact-form-input::placeholder {
    color: var(--text-light);
}

.contact-form-checkbox {
    margin-top: 5px;
}

.contact-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.contact-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.contact-checkbox-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-privacy-link {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.contact-form-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-form-submit:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 178, 90, 0.3);
}

.contact-form-submit:active:not(:disabled) {
    transform: translateY(0);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    min-height: 20px;
    transition: all 0.3s ease;
}

.contact-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 640px) {
    .contact-modal-content {
        padding: 30px 20px;
        width: 95%;
        margin: 20px;
    }

    .contact-modal-title {
        font-size: 24px;
        padding-right: 40px;
    }

    .contact-modal-subtitle {
        font-size: 14px;
    }

    .contact-form-input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .contact-form-submit {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Tours Info Fullscreen Modal */
.tours-info-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.tours-info-fullscreen-modal.active {
    display: block;
}

.tours-info-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.tours-info-modal-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.tours-info-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.tours-info-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.tours-info-modal-body {
    padding: 40px;
    width: 100%;
    background: var(--white);
    min-height: calc(100vh - 120px);
    box-sizing: border-box;
}

.tours-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tours-info-block {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 40px;
}

.tours-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tours-info-block-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.tours-info-block-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
    padding-right: 40px;
}

.tours-info-block-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tours-info-block-value {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.tours-info-guide-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.tours-info-guide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tours-info-guide-btn:active {
    transform: translateY(0);
}

/* Tourist Guide Modal Styles (для использования в index.html) */
.tourist-guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.tourist-guide-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tourist-guide-modal .modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.tourist-guide-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.tourist-guide-modal .modal-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.tourist-guide-modal .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    line-height: 1;
}

.tourist-guide-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.tourist-guide-modal .modal-body {
    padding: 40px;
}

.guide-section {
    margin-bottom: 35px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.guide-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
    top: 12px;
}

.guide-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

@media (max-width: 968px) {
    .tours-info-modal-header {
        flex-wrap: wrap;
        gap: 15px;
    }

    .tours-info-header-actions {
        flex: 1;
        justify-content: flex-end;
    }

    .tours-info-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tours-info-block-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .tours-info-modal-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .tours-info-modal-title {
        font-size: 24px;
    }

    .tours-info-guide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tours-info-modal-body {
        padding: 20px;
    }

    .tours-info-block {
        padding: 20px;
    }

    .tourist-guide-modal .modal-content {
        max-width: 100%;
        border-radius: 15px;
        margin: 10px;
    }

    .tourist-guide-modal .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }

    .tourist-guide-modal .modal-title {
        font-size: 22px;
    }

    .tourist-guide-modal .modal-body {
        padding: 25px 20px;
    }

    .guide-section-title {
        font-size: 20px;
    }

    .guide-list li {
        font-size: 15px;
        padding-left: 25px;
    }
}

