.price-title {
    animation: slideInDown 0.8s ease-out;
    color: #8B0000;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Roboto Slab', serif;
}

.price-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s both;
    text-align: center;
    color: #5D5D5D;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
}

.alert-custom {
    color: #000000 !important;
    background-color: #f8f9fa !important;
    border-color: #d1ecf1 !important;
}

.custom-price-table {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    font-size: 1rem;
    animation: zoomIn 0.5s ease-out 0.3s both;
}

.custom-price-table th {
    background: #F8F9FA;
    font-weight: 600;
    color: #2C2C2C;
    transition: all 0.3s ease;
}

.custom-price-table td {
    vertical-align: middle;
    padding: 12px 15px;
    color: #5D5D5D;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-price-table tbody tr {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease-out forwards;
}

.custom-price-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.custom-price-table tbody tr:nth-child(2) { animation-delay: 0.15s; }
.custom-price-table tbody tr:nth-child(3) { animation-delay: 0.2s; }
.custom-price-table tbody tr:nth-child(4) { animation-delay: 0.25s; }
.custom-price-table tbody tr:nth-child(5) { animation-delay: 0.3s; }
.custom-price-table tbody tr:nth-child(6) { animation-delay: 0.35s; }
.custom-price-table tbody tr:nth-child(7) { animation-delay: 0.4s; }
.custom-price-table tbody tr:nth-child(8) { animation-delay: 0.45s; }

.custom-price-table tr:hover {
    background-color: rgba(200, 16, 46, 0.05);
    transform: translateX(5px);
}

.custom-price-table tr:hover td {
    padding-left: 20px;
}

.custom-price-table .text-end strong {
    color: #8B0000;
    position: relative;
    display: inline-block;
}

.custom-price-table tr:hover .text-end strong {
    animation: pulsePrice 0.6s ease;
    color: #C8102E;
}

.alert-warning {
    animation: bounceIn 0.8s ease-out;
    border: none;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.accordion-item.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease;
}

.accordion-item.shadow-sm:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulsePrice {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .accordion-button:hover {
        transform: none;
    }
    
    .custom-price-table tr:hover {
        transform: none;
    }
    
    .custom-price-table tr:hover td {
        padding-left: 15px;
    }
    
    .accordion-item.shadow-sm:hover {
        transform: none;
    }
}

.accordion-item,
.custom-price-table tr {
    will-change: transform, opacity;
}

html {
    scroll-behavior: smooth;
}