/* =========================
   CONTACT PAGE
========================= */


.contact-section{

max-width:950px;

margin:80px auto;

padding:40px;

background:white;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

}





.section-title{

text-align:center;

font-size:40px;

color:var(--brown);

margin-bottom:20px;

}



.contact-intro{

text-align:center;

color:#666;

margin-bottom:40px;

}




/* FORM */


.name-row{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:20px;

}



.form-group{

display:flex;

flex-direction:column;

margin-bottom:20px;

}



.form-group label{

font-weight:bold;

color:var(--brown);

margin-bottom:8px;

}



.form-group input,
.form-group select,
.form-group textarea{

padding:14px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}



.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

outline:none;

border-color:var(--primary);

}




.submit-btn{

width:100%;

padding:15px;

background:var(--brown);

color:white;

border:none;

border-radius:10px;

font-size:18px;

cursor:pointer;

transition:.3s;

}



.submit-btn:hover{

background:#3e2b20;

}





/* CONTACT DETAILS */


.contact-info{

text-align:center;

margin-top:50px;

}



.contact-info h3{

color:var(--brown);

font-size:28px;

}



.social-icons{

margin-top:20px;

}



.social-icons img{

width:35px;

margin:10px;

transition:.3s;

}



.social-icons img:hover{

transform:scale(1.15);

}




@media(max-width:900px){


.contact-section{

margin:40px 20px;

padding:25px;

}



.name-row{

grid-template-columns:1fr;

}



}