.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.service-options.show {
    max-height: 1800px;
}
.btn-selected {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: white !important;
}
input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.footer-link {
    transition: all 0.3s ease;
}
.footer-link:hover {
    color: #d8b4fe;
    transform: translateX(5px);
}          
.urgency-banner {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
    animation: pulse-slow 2s ease-in-out infinite;
}   
.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: bounce-subtle 3s ease-in-out infinite;
}
.popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}   
