/* Virtual Tour Highlight Section - Hollywood Royale Theme */
.virtual-tour-highlight {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9f4 100%);
    overflow: hidden;
}
.vth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}
/* Floating Nature Elements (matching SeniorLivingSection) */
.vth-nature-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: vth-float-gentle 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.vth-leaf-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}
.vth-flower-1 {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}
@keyframes vth-float-gentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}
.vth-content {
    flex: 1;
    z-index: 2;
}
/* Badge Style - Matching .senior-badge */
.vth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(212, 165, 117, 0.15);
    border: 2px solid rgba(212, 165, 117, 0.3);
    border-radius: 50px;
    color: #0a3f26;
    /* Dark Green */
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.vth-badge svg {
    color: #d4a575;
    /* Gold Accent */
}
/* Typography - Matching Theme */
.vth-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0a3f26;
    /* Dark Green */
    letter-spacing: -1px;
}
.vth-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a7a65;
    /* Muted Green/Gray */
    margin-bottom: 32px;
    max-width: 520px;
    font-weight: 500;
}
/* Button - Matching .why-cta-btn.primary */
.vth-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0a3f26 0%, #0d5233 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(10, 63, 38, 0.3);
}
.vth-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 63, 38, 0.4);
    background: linear-gradient(135deg, #0d5233 0%, #0a3f26 100%);
}
.vth-button svg {
    transition: transform 0.3s ease;
}
.vth-button:hover svg {
    transform: translateX(4px);
}
/* Visual Section */
.vth-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}
.vth-image-wrapper {
    position: relative;
    border-radius: 28px;
    /* Matching card border radius */
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 63, 38, 0.15);
    /* Greenish shadow */
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 4px solid white;
}
.vth-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(10, 63, 38, 0.25);
}
.vth-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}
.vth-image-wrapper:hover img {
    transform: scale(1.08);
}
/* Play Button Overlay */
.vth-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 63, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.vth-image-wrapper:hover .vth-play-overlay {
    background: rgba(10, 63, 38, 0.1);
}
.vth-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a575;
    /* Gold color */
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    animation: vth-pulse 2s infinite;
}
.vth-image-wrapper:hover .vth-play-button {
    transform: scale(1.15);
    background: #ffffff;
    color: #b08455;
}
@keyframes vth-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/* Tablet / Mobile Responsive */
@media (max-width: 992px) {
    .vth-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .vth-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vth-content h2 {
        font-size: 42px;
    }

    .vth-image-wrapper {
        transform: none;
        max-width: 90%;
        margin: 0 auto;
    }

    .vth-image-wrapper:hover {
        transform: translateY(-5px);
    }
}
@media (max-width: 768px) {
    .virtual-tour-highlight {
        padding: 60px 20px;
    }

    .vth-content h2 {
        font-size: 32px;
    }

    .vth-content p {
        font-size: 16px;
    }

    .vth-play-button {
        width: 60px;
        height: 60px;
    }
}