.elementor-779 .elementor-element.elementor-element-0727205{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9d7a2e9 *//* =========================================
   ANIMATED REFUND POLICY CSS
   ========================================= */

.animated-policy {
    background: #ffffff;
    padding: 100px 0;
}

/* Base Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

/* Delays for staggered effect */
.reveal:nth-child(1) { animation-delay: 0.1s; }
.reveal:nth-child(2) { animation-delay: 0.3s; }
.reveal:nth-child(3) { animation-delay: 0.5s; }
.reveal:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Refund Grid (Modern look) */
.refund-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.refund-tier {
    background: #FFF9F0;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.4s ease;
    text-align: center;
}

.refund-tier:hover {
    transform: scale(1.03);
    border-color: #C5A059;
}

.refund-tier.highlighted {
    background: #fff;
    border: 2px solid #C5A059;
}

.tier-days {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.tier-status {
    display: block;
    color: #C5A059;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Action Card */
.contact-card-mini {
    background: #1A1A1A;
    color: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    margin-top: 60px;
}

.action-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-email, .btn-whatsapp {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-email {
    background: transparent;
    border: 1px solid #C5A059;
    color: #C5A059;
}

.btn-whatsapp {
    background: #C5A059;
    color: white;
}

.btn-whatsapp:hover {
    background: #25D366; /* WhatsApp Green */
    transform: translateY(-3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .action-btns { flex-direction: column; }
    .tier-days { font-size: 1.2rem; }
}/* End custom CSS */