﻿/* ======================================
   Contact Section
====================================== */

.tp-contact-area {
    background: #FDF7F4;
}

.tp-contact-form input,
.tp-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s ease;
}

    .tp-contact-form input:focus,
    .tp-contact-form textarea:focus {
        outline: none;
        border-color: #0C5752;
    }

.tp-contact-form textarea {
    resize: none;
}

.tp-btn-black:hover .arrow-down {
    transform: rotate(45deg) translateY(2px);
}


/* ======================================
   Scroll To Top Button
====================================== */

#tp-scroll-top {
    position: fixed;
    right: 80px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0C5752;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

    #tp-scroll-top:hover {
        transform: translateY(0) scale(1.05);
        background: #094743;
    }

    /* Visible state */
    #tp-scroll-top.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* ======================================
   Section Divider
====================================== */

.tp-section-divider {
    position: relative;
    height: 90px;
    overflow: hidden;
    background: transparent;
}

    .tp-section-divider svg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
    }


.tp-form-recaptcha {
    display: flex;
    justify-content: center;
}

    .tp-form-recaptcha iframe {
        border-radius: 8px;
    }

.tp-btn-black.disabled {
    opacity: 0.6;
    pointer-events: none;
}
