/* Thank You Page Styles */

/* Hero Section */
.thank-you-hero {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 270px;
    overflow: hidden;
    background-image: url("https://quimbaya-tours.com/wp-content/uploads/2023/12/iStock-1360041390.jpg");
    background-size: cover;
    background-position: center;
}

/* Main Content */
.thank-you-content {
    padding: 80px 0;
    min-height: 400px;
}

.thank-you-content p {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
}

.thank-you-content p:last-child {
    font-size: 14px;
    font-weight: 400;
}

/* Success Icon */
.success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #e8f5e9;
    border-radius: 50%;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 60px;
    color: #4caf50;
}

/* Card Styling */
.thank-you-content .card {
    transition: all 0.3s ease;
}

.thank-you-content .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.thank-you-content .btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thank-you-content .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thank-you-hero {
        min-height: 0;
        padding-top: 60px;
        padding-bottom: 115px;
    }

    .success-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .success-icon {
        font-size: 50px;
    }

    .thank-you-content {
        padding: 60px 0;
    }

    .thank-you-content .card-body {
        padding: 30px !important;
    }
}

@media (max-width: 575px) {
    .thank-you-content .card-body {
        padding: 25px !important;
    }
}