/* Thank You Page Styles */
#thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

#thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.thank-you-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thank-you-content {
    background: #fff;
    border-radius: 15px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Success Icon */
.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

/* Typography */
.thank-you-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* What's Next Section */
.whats-next {
    margin-bottom: 50px;
    padding: 40px 0;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
}

.whats-next h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
}

/* Action Buttons */
.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thank-you-actions .btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.thank-you-actions .btn-secondary {
    background-color: transparent;
    color: #667eea;
    border-color: #667eea;
}

.thank-you-actions .btn-secondary:hover {
    background-color: #667eea;
    color: #fff;
}

/* Quick Contact */
.quick-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.quick-contact p {
    font-size: 1.125rem;
    color: #4a5568;
    margin: 0;
}

.quick-contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quick-contact a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    #thank-you-section {
        padding: 60px 20px;
    }

    .thank-you-content {
        padding: 50px 30px;
    }

    .thank-you-content h1 {
        font-size: 2.5rem;
    }

    .thank-you-message {
        font-size: 1.125rem;
    }

    .whats-next h2 {
        font-size: 1.75rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .thank-you-content {
        padding: 40px 20px;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon svg {
        width: 50px;
        height: 50px;
    }

    .whats-next h2 {
        font-size: 1.5rem;
    }

    .step-item h3 {
        font-size: 1.125rem;
    }

    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }

    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .quick-contact p {
        font-size: 1rem;
    }
}
