@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

/* Кастомні анімації */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

@keyframes slideshow {
    0%, 20% { opacity: 1; }
    25%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

/* Glassmorphism ефект */
.glass {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Градієнтний текст */
.gradient-text {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Неонове свічення */
.neon-glow {
    text-shadow: 0 0 10px #FFA500, 0 0 20px #FFA500, 0 0 30px #FFA500;
}

/* Плавний скрол отключен для повышения производительности */
/* Ранее было: html { scroll-behavior: smooth; } */

/* Маркери для карти послуг */
.marker { position: absolute; display: flex; align-items: center; gap: 10px; white-space: nowrap; cursor: pointer; z-index: 2; }
.marker.left { flex-direction: row-reverse; text-align: right; }
.marker .dot { width: 12px; height: 12px; background: #FFA500; border-radius: 9999px; box-shadow: 0 0 10px #FFA500; transition: transform .2s ease; }
.marker .line { width: 80px; height: 2px; background: linear-gradient(90deg, #FFA500, #FFD700); }
.marker.left .line { background: linear-gradient(90deg, #FFD700, #FFA500); }
.marker .label { background: rgba(0, 0, 0, 0.9); border: 1px solid rgba(253,201,25,0.25); padding: 6px 10px; border-radius: 9999px; font-size: 12px; transition: color .2s ease, border-color .2s ease; }
.marker.active .dot{ transform: scale(1.3); }
.marker.active .label{ border-color:#FFA500; color:#FFA500; }

/* Адаптив маркерів для мобільних */
@media (max-width: 640px) {
  .marker { gap: 6px; }
  .marker .dot { width: 10px; height: 10px; }
  .marker .line { width: 36px; }
  .marker .label { font-size: 10px; padding: 4px 8px; }
}

/* Кастомний скролбар */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    border-radius: 5px;
}

/* Hover ефекти для карточок */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(253, 201, 25, 0.3);
}

/* Анімація появи елементів */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Відео фон */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Ефект паралакса */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Пульсуюча кнопка */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 201, 25, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(253, 201, 25, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 201, 25, 0); }
}

/* Мобільне меню */
.mobile-menu-enter {
    transform: translateX(100%);
}

.mobile-menu-enter-active {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}

/* Стилі для мобільного меню */
.mobile-menu-item {
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-item.show {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-button {
    position: relative;
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.mobile-menu-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFA500;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-button span:nth-child(1) {
    top: 0px;
}

.mobile-menu-button span:nth-child(2) {
    top: 10px;
}

.mobile-menu-button span:nth-child(3) {
    top: 20px;
}

.mobile-menu-button.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-button.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Ефекти для мобільних кнопок */
.mobile-btn {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    position: relative;
    overflow: hidden;
}

.mobile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.mobile-btn:hover::before {
    left: 100%;
}

/* Логотип анімації */
.logo-mobile {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

/* Модальні вікна */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

/* Стилі для форм */
.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 0 2px rgba(253, 201, 25, 0.2);
}

.form-input::placeholder {
    color: rgba(156, 163, 175, 0.8);
}

/* Сертифікати */
.certificate-card {
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(253, 201, 25, 0.2);
}

.certificate-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #FFA500;
}

/* Стилі для відгуків */
.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(253, 201, 25, 0.1);
}

.star-rating {
    color: #FFA500;
}

.star-rating .star {
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #FFD700;
}

/* Стилі для слайдера послуг */
.category-tab {
    color: #d1d5db;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tab.active {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    color: white;
}

.category-tab:hover:not(.active) {
    color: #FFA500;
    background: rgba(253, 201, 25, 0.1);
}

.category-slide {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.category-slide.hidden {
    display: none !important;
}

.slider-nav {
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scale(1.1);
}

.slider-dot {
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.2);
}

.services-slider {
    position: relative;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Адаптивная сетка для слайдера */
@media (max-width: 640px) {
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Анимация появления карточек в слайдере */
.service-card {
    animation: slideInUp 0.6s ease-out;
}

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


/* Стили для видео портфолио */
.portfolio-video-item {
    transition: transform 0.3s ease, opacity 0.6s ease;
}

.portfolio-video-item:hover {
    transform: translateY(-5px);
}

/* Адаптивные стили для видео */
@media (max-width: 768px) {
    #portfolio-videos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #portfolio-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Стили для iframe видео */
.portfolio-video-item iframe {
    border-radius: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Стили для Instagram постов */
.portfolio-video-item .instagram-media {
    border-radius: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    min-height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-video-item .instagram-media iframe {
    border-radius: inherit;
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
    border: none;
}

/* Адаптивні стили для Instagram постов */
@media (max-width: 768px) {
    .portfolio-video-item .instagram-media {
        min-height: 350px;
    }
    
    .portfolio-video-item .instagram-media iframe {
        min-height: 350px;
    }
}

/* Анимация появления видео */
@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.portfolio-video-item {
    animation: videoFadeIn 0.6s ease-out forwards;
}

/* Стили для YouTube Shorts - вертикальный формат */
.shorts-container {
    width: 315px;
    height: 560px;
    max-width: 100%;
    aspect-ratio: 9/16;
    margin: 0 auto;
}

/* Адаптивные стили для Shorts */
@media (max-width: 768px) {
    .shorts-container {
        width: 320px;
        height: 568px;
    }
}

@media (max-width: 480px) {
    .shorts-container {
        width: 300px;
        height: 533px;
    }
}

@media (max-width: 360px) {
    .shorts-container {
        width: 280px;
        height: 497px;
    }
}

/* Стили для лайтбокса */
#lightbox {
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#lightbox.hidden {
    opacity: 0;
    pointer-events: none;
}

#lightbox:not(.hidden) {
    opacity: 1;
    pointer-events: all;
}

#lightboxImage {
    transition: opacity 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Адаптивные стили для лайтбокса */
@media (max-width: 768px) {
    #lightbox .max-w-7xl {
        max-width: 95vw;
        padding: 0;
    }
    
    #lightbox button[onclick="closeLightbox()"] {
        top: -40px;
        right: 10px;
    }
    
    #lightboxPrev, #lightboxNext {
        display: none !important;
    }
    
    #lightbox .absolute.bottom-0 {
        position: relative;
        background: rgba(0, 0, 0, 0.8);
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    /* Swipe gestures для мобильных */
    #lightbox .relative.max-w-7xl {
        touch-action: pan-x;
    }
}

/* Cursor styles */
.portfolio-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Анимации для лайтбокса */
@keyframes lightboxSlide {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

#lightbox:not(.hidden) .relative.max-w-7xl {
    animation: lightboxSlide 0.3s ease-out forwards;
}

/* Стили для прелоадеров портфолио */
#portfolio-preloader, #category-preloader {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#portfolio-preloader.hidden, #category-preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Плавные переходы для контейнеров портфолио */
#portfolio-photos, #portfolio-video {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#portfolio-photos.transitioning, #portfolio-video.transitioning {
    opacity: 0;
    transform: translateY(20px);
}

/* Улучшенные стили для черного фона */
body {
    background: #000000;
    color: #ffffff;
}

/* Улучшенные тени для элементов на черном фоне */
.service-card:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

/* Дополнительное свечение для желтых элементов */
.gradient-text {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Стили для блока "3 причини обрати нас" */
.glass {
    position: relative;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

/* Анимация для декоративных элементов */
.group:hover .w-12.h-12.bg-gradient-to-r {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}

/* Улучшенные ссылки */
.group\/link:hover svg {
    color: #FFD700;
}

/* Пульсирующие точки вместо цен */
.pulse-dot {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Улучшенные стили для карточек услуг */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

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

/* Дополнительный эффект свечения при наведении */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.25);
}

.service-card:hover .pulse-dot {
    animation-duration: 1s;
}

/* Стили для улучшенной секции контактов */
.contact-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Select dropdown arrow */
.contact-input[type="select"], select.contact-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.contact-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-input:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

/* Стили для select options */
.contact-input option {
    background: #1a1a1a;
    color: white;
    padding: 12px;
}

.contact-input option:checked {
    background: rgba(255, 215, 0, 0.1);
}

/* Улучшенные стили для дейт и тайм инпутов */
.contact-input[type="date"], 
.contact-input[type="time"] {
    color-scheme: dark;
    cursor: pointer;
}

.contact-input[type="date"]::-webkit-calendar-picker-indicator,
.contact-input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .contact-input {
        font-size: 16px; /* Предотвращает зум на iOS */
        padding: 14px 16px;
    }
    
    .contact-input[type="select"], select.contact-input {
        background-size: 14px;
        background-position: right 10px center;
        padding-right: 35px;
    }
}

/* Анимация для декоративного фона */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.animate-pulse {
    animation: float-slow 6s ease-in-out infinite;
}

/* Hero Swiper Styles */
.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
    z-index: 9999 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
    position: absolute !important;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 215, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 30px;
    z-index: 9999 !important;
    pointer-events: auto !important;
    position: absolute !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
    touch-action: manipulation;
    cursor: pointer;
}

.hero-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 215, 0, 0.7);
    border-color: rgba(255, 215, 0, 0.9);
    transform: scale(1.2);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Desktop only elements - скрываем на мобильных и планшетах */
@media (max-width: 1023px) {
    .desktop-only {
        display: none !important;
    }
    
    /* Адаптируем размер навигации Swiper для мобильных */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        top: auto !important;
        bottom: 15% !important;
        margin-top: 0 !important;
        z-index: 20 !important;
    }
    
    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 8% !important;
        z-index: 20 !important;
        pointer-events: auto !important;
    }
    
    /* Обеспечиваем кликабельность кнопок на мобильных */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Дополнительная настройка позиционирования кнопок слайдера для мобильных */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        bottom: 12% !important; /* Ниже кнопок сайта */
    }
}

@media (max-width: 480px) {
    /* Для маленьких экранов еще ниже */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        bottom: 10% !important;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 5% !important;
    }
}

@media (max-width: 768px) {
    /* Убеждаемся что контент hero секции не создает проблем */
    #home .relative.z-10 {
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }
    
    /* Оптимизация кнопок в контенте */
    #home button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Дополнительные стили для touch устройств */
@media (hover: none) and (pointer: coarse) {
    /* На touch устройствах элементы управления скрыты, поэтому стили не нужны */
    #home {
        touch-action: pan-y pinch-zoom;
    }
    
    /* Оптимизация свайпов для слайдера */
    .hero-swiper {
        touch-action: pan-x pan-y;
    }
}



/* Дополнительный overlay для лучшей читаемости */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Radio button selection styles for certificate modal */
input[type="radio"]:checked + div {
    transform: scale(1.05);
}

input[type="radio"]:checked ~ .absolute {
    border-color: currentColor;
    border-width: 2px;
}

/* Специфические стили для разных цветов */
input[value="2500"]:checked ~ .absolute,
input[value="5000"]:checked ~ .absolute,
input[value="10000"]:checked ~ .absolute {
    border-color: rgb(251 191 36); /* yellow-400 */
}

input[value="15000"]:checked ~ .absolute {
    border-color: rgb(34 197 94); /* green-400 */
}

input[value="20000"]:checked ~ .absolute {
    border-color: rgb(168 85 247); /* purple-400 */
}

input[value="30000"]:checked ~ .absolute {
    border-color: rgb(251 191 36); /* amber-400 */
}
}