﻿.overlay {
    background-image: linear-gradient(to right, rgba(90, 100, 232, 0.9), rgba(84, 96, 234, 0.9));
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    padding: 110px 0;
}

.section-bg {
    background-size: cover;
    position: relative;
    background-position: left;
    z-index: 0;
    padding: 0;
    min-height: auto;
    overflow: hidden;
}

.contact-form {
    position: relative;
    padding: 45px 0 45px 60px;
}

    .contact-form:before {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 6px;
        background: #ffffff;
        box-shadow: 10px 40px 40px rgba(0,0,0,.2);
        pointer-events: none;
        right: auto;
        width: 100vw;
    }

.particles-js-canvas-el {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.contact-form input {
    border: 0;
    background: transparent;
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
    border-bottom-color: rgba(0,0,0,.1);
}

.contact-form textarea {
    border: 0;
    background: transparent;
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
    border-bottom-color: rgba(0,0,0,.1);
}

.contact-form input::placeholder {
    color: #222;
}

.contact-form textarea::placeholder {
    color: #222;
}

.contact-form input {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
    height: 55px;
}

    .contact-form input:hover, .contact-form input:focus {
        outline: none;
        box-shadow: none;
        background: transparent;
        border: 2px solid transparent;
        border-bottom-color: rgb(254, 132, 111);
    }

.contact-form textarea:hover, .contact-form textarea:focus {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: 2px solid transparent;
    border-bottom-color: rgb(254, 132, 111);
}


.taso-btn {
    background-color: #fff;
    margin: 25px 0;
    color: #214dcb;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.32);
    box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.17);
}

.contact-info {
    padding: 0 30px 0px 0;
}

h2.contact-title {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.contact-info p {
    color: #ececec;
}

ul.contact-info {
    margin-top: 30px;
}

    ul.contact-info li {
        margin-bottom: 22px;
    }



    ul.contact-info span {
        font-size: 20px;
        line-height: 26px;
    }

    ul.contact-info li {
        display: flex;
        width: 100%;
    }

.info-left {
    width: 10%;
}

    .info-left i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 30px;
        color: #ffffff;
    }

.info-right h4 {
    color: #fff;
    font-size: 18px;
}

.contact-page .info-left i {
    color: #FE846F;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Poppins', sans-serif;
    padding: 10px 30px 10px;
    font-size: 17px;
    line-height: 28px;
    border: 0px;
    border-radius: 10px;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.btn-big {
    color: #ffffff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(45, 45, 45, 0.47843137254901963);
    box-shadow: 2px 5px 10px 0px rgba(45, 45, 45, 0.19);
    color: #fff !important;
    margin-right: 20px;
    background: #FE846F;
    transition: .2s;
    border: 2px solid #FE846F;
    margin-top: 50px;
}

@media only screen and (max-width: 767px) {
    .contact-form {
        padding: 30px;
    }

        .contact-form:before {
            width: 100%;
        }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes borderAnimation {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Apply animations to elements */
.contact-info h2.contact-title {
    animation: fadeSlideUp 0.8s ease forwards;
}

.contact-info p {
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.contact-info ul.contact-info li {
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

    .contact-info ul.contact-info li:nth-child(1) {
        animation-delay: 0.4s;
    }

    .contact-info ul.contact-info li:nth-child(2) {
        animation-delay: 0.6s;
    }

    .contact-info ul.contact-info li:nth-child(3) {
        animation-delay: 0.8s;
    }

/* Form animations */
.contact-form {
    animation: scaleIn 0.8s ease forwards;
}

    .contact-form input,
    .contact-form textarea {
        animation: fadeSlideUp 0.6s ease forwards;
        opacity: 0;
    }

        .contact-form input:nth-child(1) {
            animation-delay: 0.6s;
        }

        .contact-form input:nth-child(2) {
            animation-delay: 0.8s;
        }

    .contact-form textarea {
        animation-delay: 1s;
    }

/* Enhanced button styles and animations */
.btn-big {
    position: relative;
    overflow: hidden;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
    transition: all 0.3s ease;
}

    .btn-big:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 14px rgba(254, 132, 111, 0.3);
    }

    .btn-big:active {
        transform: translateY(1px);
    }

    /* Button click animation */
    .btn-big.clicked {
        animation: btnClick 0.4s ease;
    }

@keyframes btnClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Input focus effect */
.contact-form input::after,
.contact-form textarea::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(254, 132, 111);
    transition: width 0.3s ease;
}

.contact-form input:focus::after,
.contact-form textarea:focus::after {
    animation: borderAnimation 0.3s ease forwards;
}

