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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(76,175,80, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(76,175,80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76,175,80, 0); }
}

.sadra-recycle-animated {
    direction: rtl;
    font-family: IRANSans, Tahoma, sans-serif;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-radius: 18px;
    padding: 30px;
    line-height: 2;
    color: #2e4d2f;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.sadra-recycle-animated h2 {
    text-align: center;
    color: #1b5e20;
    font-size: 24px;
    margin-bottom: 20px;
}

.sadra-recycle-animated p {
    margin-bottom: 15px;
}

.highlight-green {
    font-weight: bold;
    color: #2e7d32;
}

.section-title {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1b5e20;
}

.center-box {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.center-box:hover {
    background: #c8e6c9;
    transform: scale(1.03);
}

.hours-box {
    background: #4caf50;
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    animation: pulseGlow 2s infinite;
}

.footer-text {
    text-align: center;
    margin-top: 25px;
    font-weight: bold;
    color: #33691e;
}

@media (max-width: 600px) {
    .sadra-recycle-animated {
        padding: 20px;
        font-size: 14px;
    }
}