:root {
            --yug-blue: #276391;
            --yug-dark-blue: #194069;
            --yug-orange: #e97d24;
            --yug-dark: #2d3138;
            --yug-green: #478f61;
            --yug-indigo: #424e8b;
        }

        html { font-size: 16px; scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #0f172a;
            position: relative;
        }

        /* === ОПТИМИЗИРОВАННЫЙ ФОН САЙТА === */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
                url('images/04.jpg') no-repeat center center;
            background-size: cover;
            z-index: -2;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--yug-dark-blue);
            letter-spacing: -0.5px;
        }

        .content-wrapper {
            background-color: #ffffff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); /* Уменьшена тень */
            position: relative;
            z-index: 10;
            border-radius: 40px 40px 0 0;
            margin-top: -40px;
            overflow: hidden;
        }

        /* Хедер (Убран blur для скорости) */
        .yug-header {
            background: #ffffff;
            border-bottom: 1px solid rgba(180, 194, 197, 0.3);
            position: sticky;
            top: 0;
            z-index: 1050;
        }
        .logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; color: #e6772a; text-decoration: none; letter-spacing: -1px; }
        .logo-text span { color: var(--yug-orange); }

        /* === МЕНЮ НАВИГАЦИИ (Убран blur) === */
        .navbar { 
            background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%) !important; 
            border-bottom: 3px solid var(--yug-orange); 
            padding-top: 0;
            padding-bottom: 0;
            position: relative; 
            z-index: 1040; 
        }
        .navbar-nav .nav-item { position: relative; }
        .navbar-nav .nav-link {
            color: #fff !important;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            padding: 18px 25px !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus { 
            color: var(--yug-orange) !important; 
        }
        
        .navbar-nav .dropdown-toggle::after {
            border: solid transparent;
            border-top-color: rgba(255,255,255,0.7);
            margin-left: 8px;
            transition: transform 0.3s;
        }
        .navbar-nav .dropdown-toggle:hover::after { border-top-color: var(--yug-orange); }
        .navbar-nav .nav-item.show .dropdown-toggle::after {
            transform: rotate(180deg);
            border-top-color: var(--yug-orange);
        }

        /* Подменю (Без blur, просто темный фон) */
        .dropdown-menu {
            background: #1a2433;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            padding: 10px;
            margin-top: 12px;
            border-top: 3px solid var(--yug-orange);
            min-width: 220px;
        }
        .dropdown-item {
            color: rgba(255, 255, 255, 0.8) !important;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .dropdown-item:hover {
            background: var(--yug-orange) !important;
            color: #fff !important;
            transform: translateX(5px);
        }

        .btn-yug-orange {
            background: var(--yug-orange);
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            border: none;
            padding: 12px 30px;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(233, 125, 36, 0.2);
        }
        .btn-yug-orange:hover {
            background: #ff920a;
            color: #fff;
            transform: translateY(-2px);
        }

        /* === ГЕРОЙ-СЛАЙДЕР === */
        #heroCarousel { z-index: 1; position: relative; }
        .carousel-item img.hero-img {
            width: 100%;
            height: 90vh;
            min-height: 600px;
            max-height: 850px;
            object-fit: cover;
            object-position: center;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(rgba(13, 27, 42, 0.4), rgba(13, 27, 42, 0.75));
            z-index: 1;
        }
        #heroCarousel .carousel-caption {
            bottom: 25%;
            left: 10%;
            right: 10%;
            z-index: 2;
        }
        #heroCarousel h1 { color: #fff; font-size: 4rem; font-weight: 800; text-shadow: 0 4px 20px rgba(0,0,0,0.5); margin-bottom: 20px; }
        #heroCarousel p { font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
        
        .carousel-control-prev, .carousel-control-next {
            width: 70px; height: 70px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%; transform: translateY(-50%);
            opacity: 0.9; transition: all 0.3s ease; z-index: 5;
        }
        .carousel-control-prev { left: 40px; }
        .carousel-control-next { right: 40px; }
        .carousel-control-prev:hover, .carousel-control-next:hover {
            background: var(--yug-orange); border-color: var(--yug-orange);
        }
        .carousel-indicators [data-bs-target] {
            width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; z-index: 3;
        }
        .carousel-indicators .active { background: var(--yug-orange); border-color: var(--yug-orange); }

        @media (max-width: 992px) {
            .dropdown-menu {
                background: rgba(255,255,255,0.05);
                border: none;
                box-shadow: none;
                padding-left: 20px;
                margin-top: 0 !important;
            }
        }
        @media (max-width: 768px) {
            .carousel-item img.hero-img { height: 75vh; min-height: 450px; }
            #heroCarousel .carousel-caption { bottom: 15%; }
            #heroCarousel h1 { font-size: 2.2rem; }
            #heroCarousel p { font-size: 1rem; }
            .carousel-control-prev, .carousel-control-next { width: 45px; height: 45px; }
            .carousel-control-prev { left: 10px; }
            .carousel-control-next { right: 10px; }
            .content-wrapper { border-radius: 20px 20px 0 0; margin-top: -20px; }
        }

        /* === КАРТОЧКИ (Упрощены для скорости) === */
        .kaleido-card {
            position: relative; height: 350px; border-radius: 15px; overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08); cursor: pointer;
        }
        .kaleido-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95); }
        .kaleido-card:hover img { transform: scale(1.1); }
        .kaleido-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
            display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
        }
        .kaleido-card:hover .kaleido-overlay { background: linear-gradient(to top, rgba(39, 99, 145, 0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 80%); }
        .kaleido-overlay h4 { color: #fff; margin-bottom: 10px; font-weight: 700; }
        .kaleido-overlay p { color: rgba(255,255,255,0.9); font-size: 0.95rem; transform: translateY(10px); opacity: 0; transition: all 0.4s; }
        .kaleido-card:hover .kaleido-overlay p { transform: translateY(0); opacity: 1; }

        .dest-card {
            position: relative; height: 250px; border-radius: 12px; overflow: hidden; border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .dest-card:hover img { transform: scale(1.15); }
        .dest-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
            display: flex; align-items: flex-end; padding: 20px;
        }
        .dest-overlay h5 { color: #fff; margin: 0; font-weight: 600; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

        .stat-box h3 { color: var(--yug-orange); font-size: 3rem; margin-bottom: 0; font-weight: 800; font-family: 'Montserrat', sans-serif; }
        .stat-box p { color: #666; font-size: 1rem; font-weight: 500; }

        /* === ТЕМНЫЕ БЛОКИ (Упрощены) === */
        .bg-dark-services {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
            color: #fff;
            position: relative;
        }
        .bg-dark-services h2 { color: #fff; }
        .glass-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: transform 0.3s, background 0.3s;
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        .glass-card h5 { color: #fff; }
        .glass-card p { color: rgba(255,255,255,0.7); }

        .bg-trust-section {
            background: linear-gradient(rgba(13, 27, 42, 0.88), rgba(25, 64, 105, 0.92)), url('images/05.jpg') center center;
            background-size: cover;
            color: #fff;
            position: relative;
        }
        .bg-trust-section h2 { color: #fff; }
        .trust-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px 20px;
            height: 100%;
            transition: transform 0.3s, background 0.3s;
        }
        .trust-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        .trust-card i { font-size: 3rem; color: var(--yug-orange); margin-bottom: 15px; }
        .trust-card h5 { color: #fff; margin-bottom: 10px; }
        .trust-card p { color: rgba(255,255,255,0.7); }

        .bg-contact-section {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.95)), url('images/05.jpg') center center;
            background-size: cover;
            color: #fff;
        }
        .bg-contact-section h2 { color: #fff; }

        .step-number {
            background: var(--yug-blue); color: #fff; width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: bold;
            font-family: 'Montserrat', sans-serif; margin: 0 auto 15px; box-shadow: 0 5px 15px rgba(39, 99, 145, 0.3);
        }

        .form-control { border: 1px solid #ddd; border-radius: 8px; padding: 14px; font-family: 'Inter', sans-serif; font-size: 1rem; }
        .form-control:focus { border-color: var(--yug-blue); box-shadow: 0 0 0 0.2rem rgba(39, 99, 145, 0.25); }

        footer { background: var(--yug-dark-blue); color: #fff; padding: 60px 0 20px; position: relative; z-index: 10; }
        footer h3 { color: #eee; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        footer a { color: #fff; text-decoration: none; opacity: 0.85; transition: 0.2s; }
        footer a:hover { color: var(--yug-orange); text-decoration: underline; opacity: 1; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 40px; padding-top: 20px; font-size: 0.9rem; opacity: 0.8; }

        .marquee { background: var(--yug-orange); color: #fff; padding: 12px 0; overflow: hidden; white-space: nowrap; font-family: 'Montserrat', sans-serif; font-weight: 600; position: relative; z-index: 10; }
        .marquee span { display: inline-block; padding-left: 100%; animation: scroll 30s infinite linear; }
        @keyframes scroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        
        .section-padding { padding: 80px 0; }