/* Современные стили для сайта */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background: url('images/7jhm8zhfecop343gte4a6ejj5nwlr622.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Шапка */
.header {
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 236, 239, 0.15);
    padding: 16px 0;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

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

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3436;
    letter-spacing: -0.5px;
}

.logo h1 a {
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo h1 a:hover {
    opacity: 0.8;
}

.contacts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.contact-link .icon {
    font-size: 1.1rem;
}

.contact-link.phone {
    background: #0984e3;
    color: #fff;
}

.contact-link.phone:hover {
    background: #0870c0;
    transform: translateY(-1px);
}

.contact-link.telegram {
    background: #0088cc;
    color: #fff;
}

.contact-link.telegram:hover {
    background: #0077b5;
    transform: translateY(-1px);
}

.contact-link.max {
    background: #6c5ce7;
    color: #fff;
}

.contact-link.max:hover {
    background: #5b4cdb;
    transform: translateY(-1px);
}

/* Главный баннер */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.7) 0%, rgba(36, 59, 85, 0.6) 100%);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 40px 20px;
    max-width: 850px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    -webkit-text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #74b9ff;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-description p {
    font-size: 1.08rem;
    color: #f1f2f6;
    line-height: 1.75;
    margin-bottom: 14px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-transfer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    color: #74b9ff;
    line-height: 1.6;
}

.hero-transfer strong {
    color: #fff;
    font-weight: 600;
}

/* Секция с турами */
.tours {
    padding: 100px 0;
    background: rgba(248, 249, 250, 0.3);
    backdrop-filter: blur(5px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0984e3, #74b9ff);
    margin: 20px auto 0;
    border-radius: 2px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.tour-card {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(232, 236, 239, 0.4);
}

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

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

.tour-image {
    height: 230px;
    overflow: hidden;
    background: -webkit-linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

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

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

.tour-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.tour-content {
    padding: 28px;
}

.tour-content h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.tour-content p {
    color: #4a5568;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: #fff;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 132, 227, 0.35);
}

/* Секция "О нас" */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-subtitle {
    font-size: 1.9rem;
    color: #2d3436;
    margin-bottom: 45px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0984e3, #74b9ff);
    margin: 18px auto 0;
    border-radius: 2px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 26px;
    background: rgba(248, 249, 250, 0.35);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 236, 239, 0.15);
}

.feature-item:hover {
    background: rgba(240, 244, 248, 0.45);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.65;
}

.about-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.about-cta-text {
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.85;
}

.about-cta-text strong {
    color: #fff;
    font-weight: 700;
}

/* Подвал */
.footer {
    background: rgba(45, 52, 54, 0.5);
    backdrop-filter: blur(10px);
    color: #b2bec3;
    padding: 50px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-info p {
    color: #b2bec3;
    font-size: 0.93rem;
    line-height: 1.6;
}

.footer-contacts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    font-size: 0.88rem;
}

/* Секция отзывов */
.reviews {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.reviews-images {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-images img {
    max-width: 100%;
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.reviews-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-content h2 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .header {
        padding: 14px 0;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .contacts {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .contact-link {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
        background-attachment: scroll;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        padding: 22px;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .tours, .about {
        padding: 60px 0;
    }

    .reviews {
        padding: 60px 0;
    }

    .reviews-images {
        gap: 20px;
    }
    
    .about-subtitle {
        font-size: 1.4rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 22px;
    }
    
    .feature-icon {
        font-size: 2.4rem;
    }
    
    .about-highlight {
        padding: 28px;
    }
    
    .about-highlight p {
        font-size: 1.02rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-contacts {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .footer-contacts .contact-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Адаптивность для маленьких экранов */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .contact-link {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        padding: 18px;
    }
    
    .hero-description p {
        font-size: 0.93rem;
    }
    
    .section-title {
        font-size: 1.45rem;
    }
    
    .tours-grid {
        gap: 20px;
    }
    
    .tour-content {
        padding: 22px;
    }
    
    .tour-content h3 {
        font-size: 1.1rem;
    }
    
    .tour-content p {
        font-size: 0.88rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .about-subtitle {
        font-size: 1.25rem;
    }
    
    .feature-item {
        padding: 18px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.88rem;
    }
    
    .about-highlight {
        padding: 22px;
        border-radius: 16px;
    }
    
    .about-cta {
        padding: 22px;
    }
    
    .about-cta-text {
        font-size: 0.98rem;
    }
    
    .footer-info h4 {
        font-size: 1.15rem;
    }
    
    .footer-info p {
        font-size: 0.88rem;
    }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 360px) {
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.88rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .contact-link {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}
