/* thank-you.css - Thank you page specific styles */

.thank-you-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Success Animation */
.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    width: 50px;
    height: 25px;
    border-left: 5px solid white;
    border-bottom: 5px solid white;
    transform: rotate(-45deg);
    animation: checkmark 0.5s ease-out 0.5s both;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}

/* Content Styling */
.thank-you-content h1 {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.thank-you-message {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* What's Next Section */
.what-next {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-dark);
    animation: fadeInUp 0.5s ease-out 0.5s both;
}

.what-next h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
}

.step-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.step p {
    color: var(--text-secondary);
}

/* Urgent Note */
.urgent-note {
    background: rgba(59, 130, 246, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

.urgent-note p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.urgent-note a {
    color: var(--primary-blue);
    text-decoration: none;
}

.urgent-note a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* Helpful Resources */
.helpful-resources {
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out 0.7s both;
}

.helpful-resources h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.helpful-resources > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.resource-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-dark);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.375rem;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
}

.resource-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.resource-icon {
    font-size: 1.25rem;
}

/* Redirect Notice */
.redirect-notice {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2rem;
    animation: fadeInUp 0.5s ease-out 0.8s both;
}

#countdown {
    color: var(--primary-blue);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .next-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .resource-links {
        flex-direction: column;
    }
    
    .resource-link {
        width: 100%;
        justify-content: center;
    }
}