*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Inter",sans-serif;
}

body{
    background:#f5f5f7;
    color:#111827;
}

/* NAVBAR */

.navbar{
    height:72px;
    background:#fff;
    border-bottom:1px solid #e5e7eb;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 24px;
}
/* LOGO */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:111px;
    width:auto;
    display:block;
}

.back-btn{
    text-decoration:none;
    background:#111827;
    color:white;
    padding:12px 18px;
    border-radius:10px;
}

/* HERO */

.contact-hero{
    text-align:center;
    padding:80px 20px 60px;
}

.contact-hero h1{
    font-size:56px;
    font-weight:800;
    margin-bottom:15px;
}

.contact-hero p{
    max-width:700px;
    margin:auto;

    color:#6b7280;
    line-height:1.8;
}

/* MAIN */

.contact-wrapper{

    max-width:1200px;

    margin:auto;

    padding:0 20px 70px;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:30px;
}

.contact-form-box,
.contact-info-box{

    background:white;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:35px;
}

.contact-form-box h2,
.contact-info-box h2{

    margin-bottom:25px;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group textarea{

    width:100%;

    border:1px solid #d1d5db;

    border-radius:12px;

    padding:14px;

    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#ef4444;
}

button{

    width:100%;

    border:none;

    background:#ef4444;

    color:white;

    padding:15px;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;
}

button:hover{
    background:#dc2626;
}

#formMessage{

    margin-top:15px;

    text-align:center;

    font-weight:600;
}

/* CONTACT INFO */

.info-card{

    display:flex;

    gap:15px;

    margin-bottom:25px;
}

.icon{
    font-size:28px;
}

.info-card p{
    color:#6b7280;
}

/* FAQ */

.faq-section{

    max-width:1200px;

    margin:auto;

    padding:0 20px 80px;
}

.faq-section h2{

    text-align:center;

    margin-bottom:30px;
}

.faq-card{

    background:white;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:25px;

    margin-bottom:15px;
}

.faq-card h3{
    margin-bottom:10px;
}

.faq-card p{
    color:#6b7280;
}

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:38px;
    }

    .logo img{
        height:36px;
    }
}
/* =========================
   FOOTER
========================= */

.footer{

    background:#111827;

    color:#fff;

    margin-top:80px;
}

.footer-container{

    max-width:1300px;

    margin:auto;

    padding:60px 24px;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:40px;
}

.footer-brand img{
    height:81px;

    background:white;

    padding:5px;

    border-radius:5px;
}
.footer-brand p{

    color:#9ca3af;

    line-height:1.8;

    max-width:320px;
}

.footer-column h3{

    margin-bottom:20px;

    font-size:18px;

    font-weight:700;
}

.footer-column{
    display:flex;
    flex-direction:column;
    position:relative;
    padding-left:30px;
}

.footer-column a{

    color:#9ca3af;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-column a:hover{

    color:#ef4444;
}

.footer-bottom{

    border-top:1px solid #374151;

    text-align:center;

    padding:20px;
}

.footer-bottom p{

    color:#9ca3af;

    font-size:14px;
}

.footer-column::before{

    content:"";

    position:absolute;

    left:0;
    top:10px;

    width:1px;
    height:80%;

    background:rgba(255,255,255,0.12);
}
@media (max-width: 992px){

    .footer-container{

        grid-template-columns:
        repeat(2,1fr);
    }

}
@media (max-width: 768px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-brand p{

        max-width:100%;

        margin:auto;
    }

   .footer-brand img{
    height:50px;

    background:white;

    padding:8px;

    border-radius:10px;
}

}

@media (max-width:768px){

    .footer-column::before{
        display:none;
    }

    .footer-column{
        padding-left:0;
    }

}