/* Thank You Popup Modal */
.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.thank-you-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.thank-you-icon i {
    font-size: 40px;
    color: white;
}

.thank-you-title {
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thank-you-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.thank-you-details h4 {
    color: #0d6efd;
    margin-bottom: 10px;
    font-size: 16px;
}

.thank-you-details ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.thank-you-details li {
    margin-bottom: 8px;
    color: #555;
}

.thank-you-details li strong {
    color: #333;
}

.thank-you-close {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.thank-you-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 576px) {
    .thank-you-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .thank-you-title {
        font-size: 24px;
    }
    
    .thank-you-icon {
        width: 60px;
        height: 60px;
    }
    
    .thank-you-icon i {
        font-size: 30px;
    }
}
