﻿/* Success page layout */
.thankyou-hero {
    min-height: calc(100vh - 80px); /* adjust if your header height differs */
    display: flex;
    align-items: center;
}

.thankyou-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 32px 0;
}

.thankyou-logo {
    width: min(360px, 72vw);
    height: auto;
    margin: 0 auto 18px auto;
    display: block;
}

/* Main card */
.thankyou-card {
    border-radius: 18px;
    padding: 34px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.thankyou-check {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

    .thankyou-check i {
        font-size: 26px;
    }

.thankyou-title {
    margin: 0 0 8px 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.thankyou-subtitle {
    margin: 0 auto 22px auto;
    max-width: 54ch;
    opacity: 0.9;
}

/* Info box */
.thankyou-info {
    display: flex;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
    padding: 16px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto 22px auto;
}

.thankyou-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    flex: 0 0 auto;
}

.thankyou-info-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.thankyou-info-desc {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Actions */
.thankyou-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.thankyou-btn {
    text-decoration: none;
}

.thankyou-link {
    text-decoration: none;
    opacity: 0.9;
}

.thankyou-tip {
    margin-top: 18px;
    opacity: 0.85;
    font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .thankyou-card {
        padding: 26px 18px;
    }

    .thankyou-info {
        padding: 14px;
    }
}
