.cf7-row{
    display:flex;
    gap:10px;
    width:100%;
}

.cf7-col{
    width:50%;
}

.cf7-col label{
    display:block;
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
    color:#fff;
}

/* CF7 Inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea{
    width:100%;
    padding:14px;
    background:transparent !important;
    background-color:transparent !important;
    color:#fff !important;
    border:1px solid rgba(255,255,255,0.35) !important;
    border-radius:4px;
    box-sizing:border-box;
    box-shadow:none !important;
    margin-top:5px;
}

/* Placeholder */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder{
    color:rgba(255,255,255,0.65) !important;
}

/* Focus */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus{
    outline:none !important;
    border-color:#fff !important;
    box-shadow:0 0 8px rgba(255,255,255,0.15);
}

/* Textareas */
textarea[name="terrace-box"],
textarea[name="project-requirement"]{
    height:50px;
    resize:none;
}

/* Submit Button */
.cf7-btn{
    margin-top:0px;
}

.cf7-btn input[type="submit"]{
    background:#000;
    color:#fff;
    border:1px solid rgba(255,255,255,0.3);
    padding:14px 15px;
    cursor:pointer;
    font-size:15px;
    transition:all .3s ease;
}

.cf7-btn input[type="submit"]:hover{
    background:#fff;
    color:#000;
}

/* Validation Messages */
.wpcf7-not-valid-tip{
    color:#ffb3b3;
    font-size:12px;
}

/* Mobile */
@media(max-width:767px){

    .cf7-row{
        flex-direction:column;
        gap:0;
    }

    .cf7-col{
        width:100%;
    }

}