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

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

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

/* Закрепленное навигационное меню */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 245, 220, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-nav:hover {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(245, 245, 220, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #f5f5dc;
    text-shadow: 0 0 20px rgba(245, 245, 220, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    text-shadow: 0 0 30px rgba(245, 245, 220, 0.6);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #f5f5dc;
    background: rgba(245, 245, 220, 0.1);
    border-color: rgba(245, 245, 220, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 245, 220, 0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(245, 245, 220, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f5f5dc, transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 1px;
}

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

.nav-link.active {
    color: #f5f5dc;
    background: rgba(245, 245, 220, 0.15);
    border-color: rgba(245, 245, 220, 0.4);
    box-shadow: 0 4px 20px rgba(245, 245, 220, 0.2);
}

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

/* Анимация появления меню */
@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fixed-nav {
    animation: navSlideDown 0.6s ease-out;
}

/* Адаптивность для навигации */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 8px 15px;
        letter-spacing: 1px;
    }
    
    .nav-logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
}

/* Главная секция в стиле amybecky.com */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
    overflow: hidden;
    padding-top: 80px; /* Отступ для закрепленного меню */
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-line {
    width: 100px;
    height: 1px;
    background: #ffffff;
    margin: 2rem auto;
    position: relative;
}

.hero-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.hero-location {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    background: #f5f5dc;
    color: #000000;
    border: 1px solid #000000;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    text-align: center;
}

.cta-button:hover {
    background: #000000;
    color: #f5f5dc;
    border-color: #f5f5dc;
}



/* Декоративные элементы */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flower-branch {
    position: absolute;
    width: 200px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path d="M50 0 Q60 50 40 100 Q60 150 50 200" stroke="white" stroke-width="1" fill="none"/><circle cx="30" cy="80" r="3" fill="white"/><circle cx="70" cy="120" r="3" fill="white"/><circle cx="40" cy="160" r="3" fill="white"/></svg>') no-repeat;
    opacity: 0.3;
}

.flower-branch.left {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.flower-branch.right {
    top: 20%;
    right: 5%;
    transform: rotate(15deg) scaleX(-1);
}

/* Секции */
section {
    padding: 80px 0;
    scroll-margin-top: 80px; /* Отступ для закрепленного меню при прокрутке */
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

/* Обо мне с двухколоночным layout */
.about {
    background: #111111;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.about-params h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.params-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.param-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.param-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.param-label {
    font-weight: 600;
    color: #ffffff;
}

.param-value {
    color: rgba(255, 255, 255, 0.8);
}

/* Тарифы */
.rates {
    background: #000000;
    padding: 80px 0;
}

.rates-content {
    max-width: 800px;
    margin: 0 auto;
}

.rates-description {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.rates-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table th {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.rates-table td {
    padding: 1.5rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rates-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Фотографии с рабочими фильтрами */
.photos {
    background: #111111;
    padding: 80px 0;
}

.photo-filters {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
}

.filter-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.photo-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 300px;
    opacity: 1;
    transform: scale(1);
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.3s ease;
}

.photo-item.hidden {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    pointer-events: none !important;
    display: none !important;
}

.photo-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Отзывы */
.reviews {
    background: #000000;
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.review-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.review-item:hover .review-overlay {
    transform: translateY(0);
}

.review-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-overlay p {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Видео */
.videos {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-container video,
.main-video {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
    background: #000;
    width: auto;
    max-width: 100%;
    height: auto;
}

.video-container video:hover,
.main-video:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

/* Адаптивные стили для видео */
@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .video-container {
        padding: 0 15px;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .video-player {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .videos {
        padding: 40px 0;
    }
    
    .video-container {
        padding: 0 10px;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .video-player {
        border-radius: 12px;
    }
}

.video-wrapper video::-webkit-media-controls-play-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-wrapper video::-webkit-media-controls-play-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-wrapper video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    height: 8px;
    margin: 0 15px;
    border: none;
}

.video-wrapper video::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-wrapper video::-webkit-media-controls-timeline::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 1);
}

.video-wrapper video::-webkit-media-controls-current-time-display,
.video-wrapper video::-webkit-media-controls-time-remaining-display {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
    margin: 0 5px;
}

.video-wrapper video::-webkit-media-controls-volume-slider {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    height: 6px;
    margin: 0 10px;
}

.video-wrapper video::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-wrapper video::-webkit-media-controls-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-wrapper video::-webkit-media-controls-fullscreen-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-wrapper video::-webkit-media-controls-fullscreen-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Анимация загрузки для видео - УБИРАЕМ */
/* .video-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-wrapper.loading::after {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

/* Анимация появления видео */
.video-wrapper {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Анимация пульсации для кнопки воспроизведения - УБИРАЕМ */
/* .play-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.video-wrapper.playing .play-button {
    animation: none;
} */

/* Улучшенные стили для состояний загрузки - УБИРАЕМ */
/* .video-wrapper.loading {
    position: relative;
}

.video-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    z-index: 10;
} */

/* Улучшенные стили для заголовка секции */
.videos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.videos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* Контакты */
.contact {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 120px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

.contact-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent) !important;
    transition: left 0.5s ease !important;
}

.contact-item:hover::before {
    left: 100% !important;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.05) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.contact-item i {
    font-size: 2.2rem !important;
    color: #ffffff !important;
    opacity: 1 !important;
    min-width: 2.2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.3)) !important;
    margin-right: 0.1rem !important;
    flex-shrink: 0 !important;
}

.contact-item:hover i {
    transform: scale(1.2) !important;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.5)) !important;
}

.contact-item h3 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.contact-item:hover h3 {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateX(3px) !important;
}

.contact-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.05rem !important;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    font-weight: 400 !important;
}

.contact-item:hover p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Закрепленный футер с соц.сетями */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link.telegram {
    color: #0088cc;
}

.social-link.whatsapp {
    color: #25d366;
}

.social-link.email {
    color: #ea4335;
}

.social-link:hover {
    color: #ffffff;
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.1);
}

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

/* ПРОСТОЙ И КРАСИВЫЙ intl-tel-input */
.iti {
    width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    min-height: 50px !important;
}

.iti:focus-within {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

.iti * {
    box-sizing: border-box !important;
}

.iti__flag-container {
    background: rgba(255, 255, 255, 0.15) !important;
    border: none !important;
    padding: 0 12px !important;
    height: 100% !important;
    min-width: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.iti__flag-container:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

.iti__selected-flag {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.iti__selected-flag:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.iti__arrow {
    width: 0 !important;
    height: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 5px solid #ffffff !important;
    transition: transform 0.3s ease !important;
    opacity: 0.7 !important;
}

.iti__arrow--up {
    transform: rotate(180deg) !important;
}

.iti__country-list {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    max-height: 320px !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    position: fixed !important;
    margin-top: 5px !important;
    padding: 0 !important;
    list-style: none !important;
    /* Убираем backdrop-filter для лучшей производительности */
}

/* Убираем все стандартные стили списка */
.iti__country-list ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.iti__country {
    color: #333333 !important;
    padding: 10px 12px !important;
    border: none !important;
    transition: background 0.2s ease !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 2px 4px !important;
    background: transparent !important;
    border-radius: 6px !important;
}

.iti__country:hover {
    background: #f5f7fb !important;
}

.iti__country.iti__active {
    background: #eef2ff !important;
    font-weight: 600 !important;
}

/* Убираем все стандартные стили */
.iti__country * {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.iti__country:hover {
    background: #f5f7fb !important;
    color: #333333 !important;
}

.iti__country.iti__active {
    background: #eef2ff !important;
    color: #333333 !important;
    font-weight: 600 !important;
}

.iti__country.iti__highlight {
    background: #eef2ff !important;
    color: #333333 !important;
}

.iti__dial-code {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 13px !important;
    margin-left: auto !important;
}

.iti__flag {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2px !important;
}

.iti__country-name {
    flex: 1 !important;
    font-size: 14px !important;
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
}

/* ПРОСТОЙ СКРОЛЛБАР */
.iti__country-list::-webkit-scrollbar {
    width: 6px !important;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 3px !important;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #c1c1c1 !important;
    border-radius: 3px !important;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8 !important;
}

/* ПРОСТЫЕ ИСПРАВЛЕНИЯ */
.iti__country-list {
    z-index: 10000 !important;
}

/* Убираем лишние элементы */
.iti__country *:before,
.iti__country *:after {
    display: none !important;
    content: none !important;
}

/* Улучшенная доступность для фокуса */
.iti__selected-flag:focus {
    outline: 2px solid #d4af37 !important;
    outline-offset: 2px !important;
}

.iti__country:focus {
    outline: 2px solid #d4af37 !important;
    outline-offset: -2px !important;
}

/* Стили для загрузки файлов */
input[type="file"] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    cursor: pointer;
}

/* ПРОСТОЕ ПОЛЕ ВВОДА */
.iti__tel-input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 15px !important;
    flex: 1 !important;
    outline: none !important;
}

.iti__tel-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.iti__tel-input:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

.iti__tel-input::placeholder {
    color: #aaaaaa !important;
}

/* Исправляем высоту контейнера */
.iti__flag-container {
    height: auto !important;
    min-height: auto !important;
    line-height: normal !important;
}

/* Убираем стандартные стили intl-tel-input */
.iti input[type=tel] {
    height: auto !important;
    min-height: auto !important;
    line-height: normal !important;
    padding: 15px !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Дополнительные исправления для dropdown */
.iti__country-list {
    transform: none !important;
    animation: none !important;
}

.iti__country-list .iti__country {
    transform: none !important;
    animation: none !important;
    transition: background-color 0.3s ease !important;
}

/* Убираем все анимации и трансформации */
.iti__country-list * {
    transform: none !important;
    animation: none !important;
}

input[type="file"]:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

input[type="file"]::file-selector-button {
    background: #d4af37;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 500;
}

input[type="file"]::file-selector-button:hover {
    background: #b8941f;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .params-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: row !important;
        text-align: left !important;
        padding: 1.3rem !important;
        gap: 0.4rem !important;
    }
    
    .contact-item i {
        font-size: 1.8rem !important;
        min-width: 1.8rem !important;
    }
    
    .contact-item h3 {
        font-size: 0.95rem !important;
    }
    
    .contact-item p {
        font-size: 0.85rem !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Уменьшенные отступы на мобильных */
    .about,
    .rates,
    .photos,
    .reviews,
    .videos,
    .contact {
        padding: 40px 0;
    }
    
    .contact {
        padding: 80px 0 140px 0; /* Больше места для футера на мобильных */
    }
    
    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .contact h2::after {
        width: 60px;
        bottom: -12px;
    }
    
    /* Адаптивные стили для видео */
    .video-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%; /* Сохраняем соотношение сторон 16:9 */
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .videos h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Мобильные стили для intl-tel-input */
    .iti__country-list {
        max-height: 280px !important;
        font-size: 12px !important;
    }
    
    .iti__country {
        padding: 12px 10px !important;
        font-size: 12px !important;
        min-height: 44px !important; /* Минимальная высота для touch */
    }
    
    .iti__selected-flag {
        padding: 12px 8px !important;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.rates-content,
.photo-gallery,
.reviews-grid,
.contact-info {
    animation: fadeIn 1s ease-out;
}

/* Дополнительные стили для улучшения UX */
.photo-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Улучшенные hover эффекты */
.param-item:hover {
    transform: translateX(5px);
}

.contact-item:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.review-item:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Дополнительные стили для улучшения поддержки браузеров */
.video-wrapper {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    -o-perspective: 1000;
    perspective: 1000;
}

/* Улучшенные стили для мобильных устройств */
@media (max-width: 768px) {
    .video-container {
        padding: 0 15px;
    }
    
    .video-wrapper {
        border-radius: 12px;
        margin: 0 10px;
    }
    
    .video-placeholder {
        border-radius: 12px;
    }
    
    .video-poster {
        border-radius: 12px;
    }
    
    .video-overlay-simple {
        border-radius: 12px;
    }
    
    .play-button-simple {
        width: 70px;
        height: 70px;
    }
    
    .play-button-simple i {
        font-size: 1.8rem;
        margin-left: 4px;
    }
    
    .video-text {
        font-size: 1rem;
    }
}

/* Улучшенные стили для мобильных устройств */
@media (max-width: 480px) {
    .video-container {
        padding: 0 10px;
    }
    
    .contact {
        padding: 80px 0 120px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem !important;
        gap: 0.3rem !important;
    }
    
    .contact-item i {
        font-size: 1.6rem !important;
        min-width: 1.6rem !important;
    }
    
    .contact-item h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.05rem !important;
    }
    
    .contact-item p {
        font-size: 0.8rem !important;
    }
    
    .video-wrapper {
        border-radius: 8px;
        margin: 0 5px;
    }
    
    .video-wrapper video {
        border-radius: 8px;
    }
    
    /* .video-overlay убран */
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.8rem;
        margin-left: 4px;
    }
    
    /* Еще больше увеличиваем размеры контролов для маленьких экранов */
    .video-wrapper video::-webkit-media-controls-play-button {
        width: 52px;
        height: 52px;
    }
    
    .video-wrapper video::-webkit-media-controls-timeline {
        height: 12px;
        margin: 0 8px;
    }
    
    .video-wrapper video::-webkit-media-controls-timeline::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }
    
    .video-wrapper video::-webkit-media-controls-volume-slider {
        height: 10px;
    }
    
    .video-wrapper video::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }
    
    .video-wrapper video::-webkit-media-controls-current-time-display,
    .video-wrapper video::-webkit-media-controls-time-remaining-display {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .videos h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Стили для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-container {
        max-width: 800px;
        padding: 0 30px;
    }
    
    .play-button {
        width: 85px;
        height: 85px;
    }
    
    .play-button i {
        font-size: 2.1rem;
    }
}

/* Улучшенные стили для больших экранов */
@media (min-width: 1200px) {
    .video-container {
        max-width: 1000px;
    }
    
    .video-wrapper {
        border-radius: 20px;
    }
    
    .video-wrapper video {
        border-radius: 20px;
    }
    
    /* .video-overlay убран */
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .play-button i {
        font-size: 2.5rem;
        margin-left: 8px;
    }
}

/* Поддержка для Firefox */
.video-wrapper video::-moz-media-controls {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0 0 16px 16px;
}

.video-wrapper video::-moz-media-controls-panel {
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: 0 0 16px 16px;
    padding: 15px 20px;
}

/* Поддержка для Safari */
.video-wrapper video::-webkit-media-controls-enclosure {
    border-radius: 0 0 16px 16px;
    background: rgba(0, 0, 0, 0.85);
}

/* Стили для полноэкранного режима */
.video-wrapper:fullscreen {
    border-radius: 0;
    padding-bottom: 0;
    height: 100vh;
}

.video-wrapper:fullscreen video {
    border-radius: 0;
    height: 100vh;
}

.video-wrapper:-webkit-full-screen {
    border-radius: 0;
    padding-bottom: 0;
    height: 100vh;
}

.video-wrapper:-webkit-full-screen video {
    border-radius: 0;
    height: 100vh;
}

.video-wrapper:-moz-full-screen {
    border-radius: 0;
    padding-bottom: 0;
    height: 100vh;
}

.video-wrapper:-moz-full-screen video {
    border-radius: 0;
    height: 100vh;
}

/* Улучшенные стили для темной темы */
@media (prefers-color-scheme: dark) {
    .video-wrapper {
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .video-wrapper:hover {
        border-color: rgba(255, 255, 255, 0.25);
    }
    
    .play-button {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .play-button:hover {
        background: rgba(255, 255, 255, 1);
    }
}

/* Стили для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
    .video-wrapper {
        animation: none;
        transition: none;
    }
    
    .video-wrapper:hover {
        transform: none;
    }
}

/* Улучшенные стили для высокого DPI экранов */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .video-wrapper {
        border-width: 0.5px;
    }
    
    .play-button {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.3),
            0 0 0 0.5px rgba(255, 255, 255, 0.3);
    }
}

/* Стили для печати */
@media print {
    .video-wrapper {
        display: none;
    }
}
