.elementor-1494 .elementor-element.elementor-element-0ef251d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2182028 */:root {
    --primary-color: #1a1a1a;
    --success-color: #00b894;
    --text-main: #2d3436;
    --text-secondary: #636e72;
}

.thank-you-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.thank-you-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    z-index: 2;
    animation: cardEntrance 0.8s ease-out;
}

@keyframes cardEntrance {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 184, 148, 0.1);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.6s ease-in-out 0.4s forwards;
}

@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 16px 45px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Background Blobs */
.bg-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
}
.blob-1 { width: 300px; height: 300px; background: #a8edea; top: 10%; left: 5%; }
.blob-2 { width: 250px; height: 250px; background: #fed6e3; bottom: 10%; right: 5%; }/* End custom CSS */