.fade-up-title-orange {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 15px;
    background: linear-gradient(90deg, #ff7a00, #ffae42);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.fade-up-title-orange.visible { opacity: 1; transform: translateY(0); }
.center-horizontal { width: 100%; text-align: center; }
