/* Success Page Container */
.success-container {
    margin-top: 50px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.success-card {
    max-width: 650px;
    width: 100%;
    background: white;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
}

/* Animated Checkmark */
.checkmark-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.checkmark-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease 0.2s both;
    box-shadow: 0 15px 30px -10px rgba(16, 185, 129, 0.4);
}

.checkmark-circle i {
    font-size: 3.5rem;
    color: white;
    animation: checkSpin 0.4s ease 0.4s both;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkSpin {
    0% {
        transform: rotate(-90deg) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

/* Content Section */
.content-section {
    padding: 40px 35px 45px;
}

.success-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b1120;
    margin-bottom: 15px;
}

.success-title span {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-message {
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 25px;
}

.info-box {
    background: #f0fdf4;
    border-radius: 24px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #bbf7d0;
    text-align: left;
}

.info-box i {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.info-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 10px;
}

.info-box p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-list {
    margin-top: 15px;
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 0.9rem;
}

.info-list li i {
    font-size: 0.8rem;
    color: #10b981;
    margin-bottom: 0;
}

.thankyou-text {
    font-size: 1rem;
    font-weight: 600;
    color: #da0b4e;
    margin: 20px 0;
    padding: 12px;
    background: #da0b4e10;
    border-radius: 50px;
    display: inline-block;
}

/* Button Group */
.button_group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(218, 11, 78, 0.4);
}

.btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #da0b4e;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #da0b4e;
    transition: all 0.3s;
}

.btn_secondary:hover {
    background: #da0b4e;
    color: white;
    transform: translateY(-2px);
}

/* Decorative Elements */
.decorative-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0.3;
}

.decorative-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #da0b4e;
    border-radius: 50%;
    margin: 0 3px;
}

/* Confetti Animation */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #ffd966;
    position: absolute;
    animation: confettiFall 3s ease-out forwards;
    pointer-events: none;
    z-index: 1000;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .success-card {
        border-radius: 32px;
    }
    .content-section {
        padding: 30px 25px;
    }
    .success-title {
        font-size: 1.6rem;
    }
    .success-message {
        font-size: 1rem;
    }
    .button-group {
        flex-direction: column;
    }
    .btn_primary, .btn_secondary {
        justify-content: center;
    }
}