/* ======================================================
   CONTACT
====================================================== */

.contact-section{
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-form-wrapper{
    background:#fff;
    border-radius:28px;
    padding:50px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}

.contact-sidebar{
    display:flex;
    flex-direction:column;
    gap:30px;
}


.contact-form{
    margin-top:40px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#14213d;
}


.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:18px 22px;

    border:1px solid #d9d9d9;

    border-radius:14px;

    font-size:16px;

    transition:.3s;

    background:#fff;

    font-family:inherit;

}

.contact-form textarea{

    resize:vertical;
    min-height:220px;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:var(--accent-color);

    outline:none;

    box-shadow:0 0 0 4px rgba(197,33,33,.12);

}


.form-check{

    margin-bottom:18px;

    display:flex;
    align-items:flex-start;
    gap:12px;

}

.form-check input{

    width:20px;
    height:20px;

    margin-top:3px;

}


.contact-form .btn{

    margin-top:18px;

    width:100%;

    justify-content:center;

}


.info-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.info-card h3{

    margin-bottom:24px;

    color:#14213d;

}

.info-card ul{

    display:flex;

    flex-direction:column;

    gap:16px;

    list-style:none;

    padding:0;

}

.info-card strong{

    color:#14213d;

    font-size:22px;

}


@media(max-width:991px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .contact-form-wrapper{

        padding:35px 28px;

    }

    .form-grid{

        grid-template-columns:1fr;

        gap:0;

    }

    .contact-section{

        padding:70px 0;

    }

}

/* ========================================
   CONTACT HIGHLIGHTS
======================================== */

.contact-highlights{

    display:flex;
    flex-direction:column;

    gap:18px;

    margin:0 0 40px;

}

.highlight-item{

    display:flex;
    align-items:flex-start;

    gap:18px;

    padding:20px 24px;

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:18px;

    transition:.3s;

}

.highlight-item:hover{

    border-color:var(--accent-color);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transform:translateY(-2px);

}

.highlight-icon{

    font-size:28px;

    line-height:1;

    flex-shrink:0;

}

.highlight-item strong{

    display:block;

    font-size:18px;

    color:#14213d;

    margin-bottom:6px;

}

.highlight-item p{

    margin:0;

    color:#666;

    line-height:1.6;

    font-size:15px;

}

@media(max-width:768px){

    .highlight-item{

        padding:18px;

        gap:14px;

    }

    .highlight-icon{

        font-size:24px;

    }

    .highlight-item strong{

        font-size:17px;

    }

}

.form-message{

    padding:18px 24px;

    margin-bottom:35px;

    border-radius:16px;

    font-weight:600;

    animation:fadeMessage .4s ease;

}

.form-message.success{

    background:#e9f9ef;

    color:#0f7b39;

    border:1px solid #b9e5c7;

}

.form-message.error{

    background:#fff1f1;

    color:#c62828;

    border:1px solid #f0b5b5;

}

@keyframes fadeMessage{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
