body {
    margin: 0;
    padding: 0;

    font-family: 'Inter', sans-serif;


}



.contact-hero {
    min-height: 300px;
    padding: 145px 0 110px;
    background-image: url('images/hero.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.contact-hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}


.contact-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2.8px;
    color: #ffffff;
}


.contact-hero p {

    max-width: 350px;

    margin: 25px auto 0;

    font-size: 13px;

    line-height: 1.65;

    color: #ffffff;
}


/* =====================================================
           CONTACT FORM SECTION
        ===================================================== */

.contact-section {
    padding: 70px 0;

}


.contact-header {
    max-width: 560px;

    margin: 0 auto 50px;

    text-align: center;
}


.contact-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #383838;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.contact-label i {

    font-size: 9px;

    color: #1475ff;
}


.contact-header h2 {

    margin: 0;

    font-size: 48px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;

    color: #131212;
}


.contact-header p {

    max-width: 650px;

    margin: 19px auto 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.6;
}


/* =====================================================
           FORM CARD
        ===================================================== */

.contact-form-card {

    max-width: 650px;

    margin: 0 auto;

    padding: 30px;

    background: #f5f6f8;

    border: 1px solid #e5e6e8;

    border-radius: 20px;
}


/* =====================================================
           FORM LABEL
        ===================================================== */

.contact-form .form-label {

    margin-bottom: 9px;

    color: #161616;

    font-size: 14px;

    font-weight: 600;
}


.contact-form .optional {

    color: #777777;

    font-weight: 400;
}


/* =====================================================
           FORM INPUT
        ===================================================== */

.contact-form .form-control {


    padding: 14px 14px;

    border: 1px solid #dddddf;

    border-radius: 9px;

    background: #ffffff;

    color: #111111;

    font-size: 14px;

    box-shadow: none;

    transition: all 0.2s ease;
}


.contact-form textarea.form-control {

    min-height: 155px;

    resize: vertical;
}


.contact-form .form-control::placeholder {

    color: #9b9b9b;
}


.contact-form .form-control:focus {

    border-color: #1475ff;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(20, 117, 255, 0.10);
}


/* =====================================================
           SEND BUTTON
        ===================================================== */

.contact-submit {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 45px;

    width: 100%;

    padding: 13px 25px;

    border: 0;

    border-radius: 60px;

    background: #0c0c0c;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.contact-submit:hover {

    background: #292a2c;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(20, 117, 255, 0.20);
}




/* =====================================================
           FAQ SECTION
        ===================================================== */

.faq-section {

    padding: 110px 0 120px;

}





.faq-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #383838;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 1.5px;
}


.faq-label i {

    color: #1475ff;

    font-size: 9px;
}


.faq-header h2 {

    margin: 0;

    font-size: 55px;

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -2px;

    color: #050505;
}


.faq-header p {

    max-width: 300px;

    margin: 18px 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
           ACCORDION
        ===================================================== */





.faq-wrapper .accordion-button {

    padding: 21px 24px;

    color: #111111;

    font-size: 15px;

    font-weight: 600;

}


.faq-wrapper .accordion-button:not(.collapsed) {

    color: #1475ff;

    background: #ffffff;

    box-shadow: none;

}


.faq-wrapper .accordion-button:focus {

    box-shadow: none;

}


.faq-wrapper .accordion-body {

    padding: 0 24px 23px;

    color: #666666;

    font-size: 14px;

    line-height: 1.65;

}

.faq-wrapper .accordion.accordion-item {
    border: none;
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

/* =====================================================
           DESKTOP
        ===================================================== */

@media (min-width: 1200px) {

    .contact-section .container,
    .faq-section .container,
    .contact-hero .container {

        max-width: 1180px;
    }

}


/* =====================================================
           TABLET
        ===================================================== */

@media (max-width: 991px) {

    .contact-hero {

        min-height: 430px;

        padding: 120px 0 90px;
    }


    .contact-hero h1 {

        font-size: 50px;
    }


    .contact-section {

        padding: 80px 0 90px;
    }


    .contact-header h2 {

        font-size: 42px;
    }


    .contact-form-card {

        padding: 35px;
    }


    .faq-section {

        padding: 85px 0 95px;
    }


    .faq-header h2 {

        font-size: 42px;
    }

}


/* =====================================================
           MOBILE
        ===================================================== */

@media (max-width: 767px) {

    .contact-hero {

        min-height: 390px;

        padding: 105px 15px 75px;
    }


    .contact-hero h1 {

        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .contact-hero p {

        font-size: 14px;
    }


    .contact-section {

        padding: 65px 15px 75px;
    }


    .contact-header {

        margin-bottom: 35px;
    }


    .contact-header h2 {

        font-size: 34px;

        letter-spacing: -1px;
    }


    .contact-header p {

        font-size: 14px;
    }


    .contact-form-card {

        padding: 25px 20px;

        border-radius: 16px;
    }


    .contact-submit {

        width: 100%;
    }


    .faq-section {

        padding: 70px 15px 80px;
    }


    .faq-header {

        margin-bottom: 35px;
    }


    .faq-header h2 {

        font-size: 34px;

        letter-spacing: -1px;
    }

}


/* =====================================================
           SMALL MOBILE
        ===================================================== */

@media (max-width: 575px) {

    .contact-hero h1 {

        font-size: 32px;
    }


    .contact-header h2 {

        font-size: 30px;
    }


    .contact-form-card {

        padding: 22px 17px;
    }


    .faq-header h2 {

        font-size: 30px;
    }


    .faq-wrapper .accordion-button {

        padding: 18px;

        font-size: 14px;
    }


    .faq-wrapper .accordion-body {

        padding: 0 18px 20px;
    }

}