﻿/*=========================================
CONTACT SECTION
=========================================*/

.contactSection {
    padding: 180px 0 120px;
    background: #F8FDFF;
    position: relative;
    overflow: hidden;
}

    .contactSection::before {
        content: "";
        position: absolute;
        width: 650px;
        height: 650px;
        right: -220px;
        top: -220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,188,212,.12), transparent 70%);
    }

    .contactSection::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        left: -180px;
        bottom: -180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,188,212,.08), transparent 70%);
    }

.contactWrapper {
    position: relative;
    z-index: 10;
}

/*=========================================
LEFT SIDE
=========================================*/

.contactLeft {
    padding-right: 40px;
}

.contactTag {
    display: inline-block;
    padding: 10px 22px;
    background: #E7FBFE;
    color: #0097A7;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contactLeft h1 {
    font-size: clamp(34px,6vw,56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #222;
}

.contactLeft p {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.contactIllustration {
    text-align: center;
}

    .contactIllustration img {
        width: 100%;
        max-width: 470px;
        animation: floatImage 5s ease-in-out infinite;
    }

@keyframes floatImage {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/*=========================================
CONTACT FORM
=========================================*/

.contactForm {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    will-change: transform;
}

    .contactForm h2 {
        font-size: 36px;
        font-weight: 800;
        color: #222;
        margin-bottom: 12px;
    }

    .contactForm p {
        color: #777;
        margin-bottom: 35px;
        line-height: 1.8;
    }

    .contactForm label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #333;
    }

.form-control {
    height: 58px;
    border: none;
    border-radius: 16px;
    background: #F5F8FA;
    padding: 15px 22px;
    box-shadow: none;
    transition: .35s;
}

    .form-control:focus {
        background: #fff;
        border: 2px solid #00BCD4;
        box-shadow: 0 0 18px rgba(0,188,212,.18);
    }

.messageBox {
    height: 170px !important;
    resize: none;
    padding-top: 18px;
}

/*=========================================
BUTTON
=========================================*/

.contactButton {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #00BCD4, #00E5FF);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

    .contactButton:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 35px rgba(0,188,212,.35);
    }

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .contactSection {
        padding: 140px 0 70px;
    }

    .contactLeft {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

        .contactLeft h1 {
            font-size: 42px;
        }

    .contactIllustration {
        margin-top: 30px;
    }

    .contactForm {
        padding: 35px;
    }
}

@media(max-width:768px) {

    .contactLeft h1 {
        font-size: 34px;
    }

    .contactLeft p {
        font-size: 16px;
    }

    .contactForm {
        padding: 25px;
        border-radius: 20px;
    }

        .contactForm h2 {
            font-size: 28px;
        }

    .form-control {
        height: 54px;
    }

    .messageBox {
        height: 150px !important;
    }

    .contactButton {
        height: 56px;
        font-size: 16px;
    }
}

.contactIllustration img {
    user-select: none;
    -webkit-user-drag: none;
}