@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

/* ✅ Contact Section */
.section-bg {
    background-size: cover;
    position: relative;
    background-position: left;
    z-index: 0;
    padding: 0;
    min-height: auto;
    overflow: hidden;
}

/* ✅ Overlay Effect */
.overlay {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    padding: 110px 0;
}

/* ✅ Contact Info */
.contact-info {
    padding: 0 30px 0px 0;
}

.contact-info h2.contact-title {
    font-size: 35px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}

.contact-info p {
    color: #ececec;
}

ul.contact-info {
    margin-top: 30px;
}

ul.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.info-left {
    width: 10%;
}

.info-left i {
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #ffffff;
}

.info-right h4 {
    color: #fff;
    font-size: 18px;
}

/* ✅ Contact Form Styling */
.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;
}

.contact-form input,
.contact-form textarea {
    border: 0;
    background: transparent;
    width: 100%;
    min-height: 50px;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 300;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #222;
}

.contact-form input:hover,
.contact-form input:focus,
.contact-form textarea:hover,
.contact-form textarea:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
    border-bottom-color: rgb(254, 132, 111);
}

/* ✅ Submit Button */
.btn-big {
    color: #ffffff;
    background: #fb8a05;
    border: 2px solid #fb8a05;
    margin-top: 50px;
    padding: 10px 30px;
    font-size: 17px;
    border-radius: 10px;
    transition: .2s;
}

.btn-big:hover {
    background: #fb8a05;
    border-color: #fb8a05;
}

/* ✅ Responsive */
@media only screen and (max-width: 767px) {
    .contact-form {
        padding: 30px;
    }
}