/* ============================================
   THANK YOU PAGE STYLES
============================================ */

.thankyou-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4xl) var(--spacing-md);
    background-color: var(--bg-primary);
    text-align: center;
}

.thankyou-card {
    background: var(--bg-secondary);
    padding: var(--spacing-4xl) var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    max-width: 560px;
    width: 100%;
    border: 1px solid rgba(100, 186, 189, 0.1);
}

.thankyou-icon {
    margin: 0 auto var(--spacing-xl);
    animation: scaleIn 0.6s ease-out;
}

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

.thankyou-title {
    font-size: var(--font-size-3xl);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
}

.thankyou-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.thankyou-btn {
    display: inline-block;
    margin-bottom: var(--spacing-xl);
}

.thankyou-note {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.thankyou-note a {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.thankyou-note a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .thankyou-card {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .thankyou-title {
        font-size: var(--font-size-2xl);
    }

    .thankyou-subtitle {
        font-size: var(--font-size-base);
    }
}
