.contact-section {
    padding: 0;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

.contact-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-intro {
    max-width: 750px;
    margin: 0 auto 20px auto;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.contact-card {
    background: #f7f7f7;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
}

.icon {
    width: 55px;
    height: 55px;
    background: #fdebd3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.contact-card span {
    font-size: 12px;
    color: #888;
}

.contact-form-area {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.contact-form-area h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

/* STYLE CONTACT FORM 7 */

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f7f7f7;
    font-size: 14px;
    margin-bottom: 20px;
}

.wpcf7 textarea {
    height: 150px;
    resize: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #8b5e34;
    background: #fff;
}

.wpcf7 input[type="submit"] {
    background: #111;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.wpcf7 input[type="submit"]:hover {
    background: #8b5e34;
}

/* layout */
.woodsman-contact-form .form-grid{
    display:flex;
    flex-wrap:wrap;
    gap:24px;
    width: 70%;
    align-self: center;
    justify-self: center;
}

/* remove CF7 spacing */
.woodsman-contact-form .form-grid p{
    margin:0;
    width:100%;
}

/* two columns on desktop */
@media (min-width:768px){
    .woodsman-contact-form .form-grid p{
        width:calc(50% - 12px);
    }
    
    .woodsman-contact-form .form-grid {
        width: 80% !important;
    }

    /* message field full width */
    .woodsman-contact-form .form-grid p:has(.textarea-field){
        width:100%;
    }
}

/* input fields */
.woodsman-contact-form .input-field,
.woodsman-contact-form .textarea-field{
    width:100%;
    background:#fafaf9;
    border:1px solid #c6c6c6;
    padding:16px;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:all .25s ease;
    margin: 0;
    height: 60px;
}

/* focus */
.woodsman-contact-form .input-field:focus,
.woodsman-contact-form .textarea-field:focus{
    border-color:#b45309;
    box-shadow:0 0 0 1px #b45309;
}

/* textarea height */
.woodsman-contact-form .textarea-field{
    min-height:160px;
    resize:none;
}

/* submit */
.woodsman-contact-form .submit-wrap{
    text-align:center;
    margin-top:30px;
}

.woodsman-contact-form .send-btn{
    background-color: #000 !important;
    width: 250px;
    color:#fff;
    padding:16px 48px;
    border-radius:999px;
    border:none;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    cursor:pointer;
    transition:.3s;
}

.woodsman-contact-form .send-btn:hover{
    background:#b45309;
}


@media(max-width:768px){

.form-grid{
width: 100% !important;
}

}

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
