/* ===========================================
   THANK YOU PAGE STYLES
   =========================================== */

.tj-thank-you-area {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 80px;
    color: #28a745;
    animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content .sec-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thank-you-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 40px;
    font-weight: 300;
}

.thank-you-message {
    margin-bottom: 50px;
}

.thank-you-message p {
    font-size: 18px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
}

.thank-you-details {
    margin-bottom: 60px;
}

.thank-you-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.thank-you-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.thank-you-step h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.thank-you-step p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.thank-you-actions .tj-primary-btn,
.thank-you-actions .tj-secondary-btn {
    min-width: 200px;
}

.thank-you-contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.thank-you-contact-info p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
    font-weight: 500;
}

.contact-method i {
    font-size: 18px;
}

.contact-method span {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tj-thank-you-area {
        padding: 80px 0;
    }

    .thank-you-content .sec-title {
        font-size: 36px;
    }

    .thank-you-icon i {
        font-size: 60px;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-actions .tj-primary-btn,
    .thank-you-actions .tj-secondary-btn {
        min-width: 250px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }

    .thank-you-details .row {
        --bs-gutter-x: 15px;
    }

    .thank-you-step {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .thank-you-content .sec-title {
        font-size: 28px;
    }

    .thank-you-subtitle {
        font-size: 16px;
    }

    .thank-you-message p {
        font-size: 16px;
    }

    .thank-you-step {
        padding: 20px 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .thank-you-actions .tj-primary-btn,
    .thank-you-actions .tj-secondary-btn {
        min-width: 200px;
    }
}

/* Animation classes for WOW.js */
.wow {
    visibility: hidden;
}

.animated {
    visibility: visible !important;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Secondary button styles */
.tj-secondary-btn {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

.tj-secondary-btn:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.tj-secondary-btn .btn_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}