/* =========================================
   BUTTON AREA
========================================= */

.thank-you-buttons {
    margin-top: 35px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 17px 36px;

    background: linear-gradient(135deg, #25d366, #1ebe5d);

    color: #fff;
    text-decoration: none;

    border-radius: 60px;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.4s ease;

    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn i {
    font-size: 22px;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    color: #fff;

    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
}

/* =========================================
   IMAGE AREA
========================================= */

.thank-you-image {
    position: relative;
}

.thank-you-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;

    border-radius: 32px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.thank-you-image-overlay {
    position: absolute;
    inset: 0;

    border-radius: 32px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.18),
        rgba(0, 0, 0, 0.02)
    );

    z-index: 1;
}

.thank-you-image img {
    position: relative;
    z-index: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    #thank-you-section {
        padding: 90px 0;
    }

    .thank-you-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .thank-you-content h2 {
        font-size: 40px;
    }

    .thank-you-image img {
        height: 500px;
    }
}

@media (max-width: 576px) {
    #thank-you-section {
        padding: 70px 0;
    }

    .thank-you-content h2 {
        font-size: 32px;
    }

    .thank-you-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .thank-you-image img {
        height: 380px;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}
