/* ========== THANK YOU SECTION ========== */
.thank-you-section {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(15, 14, 23, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: bounce 1s ease;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--light-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.thank-you-section .subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.thank-you-info {
    margin-top: 3rem;
    text-align: left;
}

.thank-you-info h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.thank-you-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.step-content h4 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 1.5rem;
    }
    
    .thank-you-section h1 {
        font-size: 2rem;
    }
    
    .thank-you-section .subtitle {
        font-size: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-list li {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .step-number {
        margin-top: 0;
    }
}