/* ===== EK CSS - ADDITIONAL STYLES ===== */
html, body {
    overflow-x: hidden !important;
}
/* Thankyou Page Styles */
.thankyou__area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou__wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou__title {
    color: #28a745;
    font-size: 42px;
    font-weight: 700;
}

.thankyou__subtitle {
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

.thankyou__text {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.contact-info__title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
}

.contact-info__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-info__item i {
    color: #28a745;
    font-size: 18px;
    margin-right: 15px;
}

.contact-info__link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info__link:hover {
    color: #28a745;
}

.thankyou__actions .tp-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thankyou__actions .tp-btn i {
    margin-right: 10px;
}

/* WhatsApp Float Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Thankyou responsive styles */
    .thankyou__wrapper {
        padding: 40px 20px;
    }

    .thankyou__title {
        font-size: 32px;
    }

    .thankyou__subtitle {
        font-size: 22px;
    }

    .thankyou__actions .tp-btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0 !important;
    }

    .contact-info__item {
        flex-direction: column;
        text-align: center;
    }

    .contact-info__item i {
        margin-bottom: 5px;
        margin-right: 0;
    }

    /* WhatsApp responsive styles */
    .whatsapp-float img {
        width: 50px;
    }
}
