.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.recommended-plan {
    transform: scale(1.05);
    border-color: #34D399; /* accent-green */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* NEW: Office Transformation Animation Styles */
#office-transformation {
    height: 300vh; /* Provides scroll distance for the animation */
    position: relative;
}
.transformation-canvas {
    position: sticky; top: 0;
    width: 100%; height: 100vh;
    overflow: hidden;
}
.transformation-element {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
