/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хеддер с glass эффектом */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 15px 30px;
    z-index: 100;
    opacity: 1;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.header .logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 15px;
    position: relative;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Dropdown for "Туры" */
.has-dropdown .nav-dropdown {
    position: absolute;
    top: 110%;
    left: 50%;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translate(-50%, 8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.nav-dropdown-link {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

/* Hero секция */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 50px;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 500px;
    color: white;
    width: 100%;
}

/* Слайдер изображений */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 15;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Плиточки навигации */
.slider-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
}

.thumbnail {
    position: relative;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.thumbnail:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.thumbnail.active {
    border-color: #ff6b6b;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.thumbnail:hover img,
.thumbnail.active img {
    filter: brightness(1);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 8px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail:hover .thumbnail-overlay,
.thumbnail.active .thumbnail-overlay {
    transform: translateY(0);
}


.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease-out;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(45deg, #ff6b6b, #ffa726, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 1.2s both;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.play-icon {
    width: 20px;
    height: 20px;
}

/* Анимации */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Секция туров */
.tours-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1e293b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.tour-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.tour-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour-card-link:focus-visible .tour-card,
.tour-card-link:hover .tour-card {
    transform: translateY(-20px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.tour-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-img {
    transform: scale(1.08);
}

.tour-overlay {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 2;
}

.tour-badge {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tour-content {
    padding: 40px;
}

.tour-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.3;
}

.tour-description {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.tour-duration {
    background: #1e293b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tour-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

/* Секция "Почему выбирают нас" */
.advantages-section {
    position: relative;
    background: linear-gradient(135deg, #ffdde1 0%, #fbd87f 30%, #a0f1ea 60%, #d3a6ff 100%);
    padding: 120px 0;
    overflow: hidden;
}

.advantages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.advantages-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
                radial-gradient(800px 500px at 10% 15%, rgba(255, 107, 107, 0.25), transparent 60%),
                radial-gradient(700px 450px at 85% 25%, rgba(255, 200, 80, 0.25), transparent 60%),
                radial-gradient(600px 400px at 20% 80%, rgba(66, 165, 245, 0.22), transparent 60%),
                radial-gradient(700px 500px at 80% 80%, rgba(186, 104, 200, 0.22), transparent 60%);
}

.advantages-content {
    position: relative;
    z-index: 10;
}

.advantages-header {
    text-align: center;
    margin-bottom: 100px;
}

.advantages-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 35px;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.advantages-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.advantages-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #3b0764;
    text-shadow: 0 2px 10px rgba(59, 7, 100, 0.12);
}

.advantages-subtitle {
    font-size: 1.4rem;
    color: #334155;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 600;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 100px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 35px;
    padding: 60px 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}


.advantage-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 70px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.15);
}

.advantage-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
}

.advantage-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
    line-height: 1.2;
}

.advantage-description {
    color: #334155;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

.advantage-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-point {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.advantage-point:hover {
    background: linear-gradient(90deg, #ff6b6b, #f59e0b, #22c55e, #3b82f6, #a855f7);
    color: white;
    transform: translateX(5px);
    border-color: transparent;
}

/* Trust блок */
.trust-section {
    margin-top: 80px;
}

.trust-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-badge {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.trust-badge .label {
    font-weight: 800;
    color: #0f172a;
    margin-top: 8px;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 30px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.guarantee-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.guarantee-points {
    display: grid;
    gap: 10px;
    color: #334155;
}

.cert-logos {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.cert-logo {
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7eb, #f3f4f6);
    border: 1px solid #e5e7eb;
}

.testimonial-mini {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.quote {
    color: #0f172a;
    font-weight: 600;
}

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

.stat-card {
    text-align: center;
    padding: 45px 30px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.08);
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 107, 107, 0.05);
    position: relative;
    overflow: hidden;
}


.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.15);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b6b;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(255, 107, 107, 0.2);
}

.stat-text {
    color: #a16207;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* CTA секция */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #f7f7fb 0%, #e8ecf3 100%);
    padding: 120px 0;
    color: #1e293b;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 75% 75%, rgba(107, 114, 128, 0.05) 0%, transparent 60%);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-particle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.cta-particle-2 { top: 45%; left: 20%; animation-delay: 1.5s; }
.cta-particle-3 { top: 25%; right: 15%; animation-delay: 3s; }
.cta-particle-4 { bottom: 35%; left: 30%; animation-delay: 4.5s; }
.cta-particle-5 { bottom: 15%; right: 25%; animation-delay: 6s; }

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-25px) rotate(180deg); opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 10;
}

/* Новый визуальный блок контактов */
.contact-hero {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(226,232,240,0.6);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.contact-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-badge {
    background: linear-gradient(45deg, #ff6b6b, #f59e0b);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0f172a;
    margin: 10px 0 12px;
}

.contact-subtitle {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-method-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0 0 18px;
}

.contact-method-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    min-width: 260px;
    flex: 1 1 320px;
}

.icon-pill {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b6b, #a855f7);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25);
}

.method-title { font-weight: 800; color: #0f172a; }
.method-link { color: #3b82f6; text-decoration: none; font-weight: 700; }
.method-link:hover { text-decoration: underline; }
.method-note { color: #64748b; }

.contact-meta { color: #64748b; font-size: 0.95rem; margin-top: 6px; }

.contact-form-card {
    background: white;
    border: 2px solid rgba(226,232,240,0.6);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.cta-header {
    text-align: center;
    margin-bottom: 80px;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 35px;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-badge:hover {
    background: linear-gradient(45deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.cta-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.cta-info-card {
    background: white;
    border-radius: 35px;
    padding: 60px 50px;
    border: 2px solid rgba(226, 232, 240, 0.5);
    transition: all 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta-info-card:hover {
    background: #f8fafc;
    transform: translateY(-15px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.1);
}

.cta-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cta-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.cta-method:hover .cta-method-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-method-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.cta-method-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1e293b;
}

.cta-method-content p {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.cta-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-link:hover {
    color: white;
    background: #3b82f6;
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.cta-form-card {
    background: white;
    border-radius: 35px;
    padding: 60px 50px;
    border: 2px solid rgba(226, 232, 240, 0.5);
    transition: all 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta-form-card:hover {
    background: #f8fafc;
    transform: translateY(-15px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.1);
}

.cta-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.cta-form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.cta-form-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cta-form-group {
    position: relative;
}

.cta-form-group input,
.cta-form-group select,
.cta-form-group textarea {
    width: 100%;
    padding: 20px 25px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    color: #1e293b;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    font-weight: 500;
}

/* Подсказки и состояния полей */
.field-hint {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.cta-form-group input:invalid,
.cta-form-group select:invalid,
.cta-form-group textarea:invalid {
    border-color: #fca5a5;
    background: #fff1f2;
}

.cta-form-group input:valid,
.cta-form-group select:valid,
.cta-form-group textarea:valid {
    border-color: #86efac;
    background: #ecfdf5;
}

.consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 0;
    color: #334155;
    font-size: 0.95rem;
    user-select: none;
}

.consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-status {
    margin: 0 0 15px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
}

.form-status.success {
    background: #ecfdf5;
    border: 2px solid #86efac;
    color: #065f46;
}

.form-status.error {
    background: #fff1f2;
    border: 2px solid #fca5a5;
    color: #7f1d1d;
}

.form-privacy-note {
    margin-top: 12px;
    color: #64748b;
    font-size: 0.9rem;
}

.privacy-link {
    color: #3b82f6;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder {
    color: #94a3b8;
}

.cta-form-group input:focus,
.cta-form-group select:focus,
.cta-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.cta-form-group select option {
    background: #333;
    color: white;
}

.cta-form-button {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-form-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #2563eb, #1e40af);
}

.cta-button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-form-button:hover .cta-button-icon {
    transform: translateX(5px);
}

.contact-social {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Футер */
.footer {
    position: relative;
    background: #0a0a0a;
    color: white;
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 1px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-column li:not(a) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b6b;
}

/* Floating contact button + popup */
.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 300;
}

.contact-fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #ff6b6b, #a855f7);
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.45);
}

.contact-popup {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 320px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    padding: 14px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-popup.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.contact-popup-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.contact-popup-close {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #334155;
}

.contact-method-list--popup {
    gap: 10px;
}

.contact-method-list--popup li {
    padding: 10px;
    min-width: auto;
    flex: 1 1 100%;
}

@media (max-width: 480px) {
    .contact-popup {
        right: 8px;
        width: calc(100vw - 16px);
    }
    .contact-fab {
        right: 8px;
        bottom: 8px;
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slider-thumbnails {
        gap: 10px;
    }
    
    .thumbnail {
        height: 70px;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .slider-container {
        height: 250px;
        border-radius: 20px;
    }
    
    .slider-thumbnails {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .thumbnail {
        height: 50px;
        border-radius: 10px;
    }
    
    .thumbnail-overlay {
        font-size: 0.6rem;
        padding: 6px;
    }
    
    .slide-content {
        padding: 20px 15px 15px;
    }
    
    .slide-content h3 {
        font-size: 1.1rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        justify-content: center;
    }
    
    .header {
        width: 95%;
        padding: 12px 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }
    
    .tour-card {
        border-radius: 25px;
    }
    
    .tour-content {
        padding: 30px;
    }
    
    .tour-title {
        font-size: 1.6rem;
    }
    
    .tour-description {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .tour-price {
        font-size: 1.6rem;
    }
    
    .cta-content { flex-direction: column; text-align: center; gap: 40px; }
    .contact-hero { grid-template-columns: 1fr; gap: 24px; }
    .contact-info-card, .contact-form-card { padding: 24px; }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
    .cert-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantage-item {
        padding: 45px 35px;
        border-radius: 30px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }
    
    .advantage-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .advantage-title {
        font-size: 1.6rem;
    }
    
    .advantage-description {
        font-size: 1.05rem;
    }
    
    .advantages-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-card {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .slider-thumbnails {
        gap: 6px;
    }
    
    .thumbnail {
        height: 40px;
        border-radius: 8px;
    }
    
    .thumbnail-overlay {
        font-size: 0.5rem;
        padding: 4px;
    }
    
    .slide-content {
        padding: 15px 10px 10px;
    }
    
    .slide-content h3 {
        font-size: 1rem;
    }
    
    .slide-content p {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .header {
        padding: 10px 15px;
    }
    
    .header .logo-text {
        font-size: 1.5rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-card {
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .tour-content {
        padding: 25px;
    }
    
    .tour-title {
        font-size: 1.4rem;
    }
    
    .tour-description {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .tour-price {
        font-size: 1.4rem;
    }
    
    .advantages-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .cert-logos {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .stat-value {
        font-size: 2.8rem;
    }
    
    .advantage-item {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .advantage-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .advantage-title {
        font-size: 1.4rem;
    }
    
    .advantage-description {
        font-size: 1rem;
    }
    
    .advantages-title {
        font-size: 2.8rem;
    }
    
    .advantages-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}