/* ==================== VIRTUAL TOUR MODERN STYLES ==================== */

/* Hero Section */
.virtual-tour-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    margin-top: 80px;
    overflow: hidden;
}

.virtual-tour-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.virtual-tour-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.virtual-tour-hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.virtual-tour-hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.virtual-tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.virtual-tour-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 700px at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: virtualTourSectionGlow 15s ease-in-out infinite;
}

@keyframes virtualTourSectionGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1) translate(0, 0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translate(20px, -15px);
    }
}

.virtual-tour-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.virtual-tour-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.virtual-tour-intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Virtual Tour Wrapper */
.virtual-tour-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(212, 175, 55, 0.3);
    background: #000;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.virtual-tour-wrapper.fullscreen {
    position: fixed;
    inset: 0;
    max-width: 100%;
    border-radius: 0;
    z-index: 10000;
    margin: 0;
}

/* Loading Indicator */
.virtual-tour-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.virtual-tour-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.virtual-tour-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.virtual-tour-loading-text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Iframe */
.virtual-tour-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
    background: #000;
}

.virtual-tour-wrapper.fullscreen .virtual-tour-iframe {
    height: 100vh;
}

/* Fullscreen Button */
.virtual-tour-fullscreen {
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 14px 28px;
    background: rgba(212, 175, 55, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.virtual-tour-fullscreen:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.virtual-tour-fullscreen svg {
    width: 20px;
    height: 20px;
}

/* Features Section */
.virtual-tour-features {
    margin-top: 60px;
}

.virtual-tour-features-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.virtual-tour-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.virtual-tour-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.virtual-tour-feature-card:nth-child(1) { animation-delay: 0.1s; }
.virtual-tour-feature-card:nth-child(2) { animation-delay: 0.2s; }
.virtual-tour-feature-card:nth-child(3) { animation-delay: 0.3s; }
.virtual-tour-feature-card:nth-child(4) { animation-delay: 0.4s; }
.virtual-tour-feature-card:nth-child(5) { animation-delay: 0.5s; }

.virtual-tour-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.virtual-tour-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.virtual-tour-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.virtual-tour-feature-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 768px) {
    .virtual-tour-hero {
        height: 50vh;
        min-height: 300px;
    }

    .virtual-tour-hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .virtual-tour-hero-subtitle {
        font-size: 16px;
    }

    .virtual-tour-section {
        padding: 60px 20px;
    }
    
    .virtual-tour-section::before {
        background: 
            radial-gradient(ellipse 800px 600px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }

    .virtual-tour-intro-text {
        font-size: 18px;
    }

    .virtual-tour-iframe {
        height: 500px;
    }

    .virtual-tour-fullscreen {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .virtual-tour-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .virtual-tour-features-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .virtual-tour-hero {
        height: 40vh;
        min-height: 250px;
    }

    .virtual-tour-section {
        padding: 40px 15px;
    }

    .virtual-tour-iframe {
        height: 400px;
    }

    .virtual-tour-fullscreen {
        bottom: 10px;
        min-width: 48px !important;
        min-height: 48px !important;
        touch-action: manipulation;
    }
}

/* Оптимизация для очень маленьких экранов */
@media (max-width: 375px) {
    .virtual-tour-hero-title {
        font-size: 36px !important;
    }
    
    .virtual-tour-section {
        padding: 30px 12px !important;
    }
    
    .virtual-tour-iframe {
        height: 350px !important;
    }
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .virtual-tour-fullscreen span {
        display: none;
    }

    .virtual-tour-feature-card {
        padding: 25px 20px;
    }

    .virtual-tour-feature-icon {
        font-size: 40px;
    }

    .virtual-tour-feature-title {
        font-size: 20px;
    }
}







