:root {
    --primary-color: #F9592A;
    --secondary-color: #EF8911;
    --background-color: #FFFFFF;
    --text-color: #000000;
    --font-family: "Lato", sans-serif;
    --font-style: normal;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    --dark-background-color: #1B1B1D;
    --dark-text-color: #FFFFFF;

    --gray-shade10: #C6C8CF;
    --gray-shade50: #868686;

    --desktop-padding: 76px;
    --tablet-padding: 32px;
    --mobile-padding: 16px;
}


/* CONTACT HERO */
section.contact-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #FFF;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding-inline: 32px;
    font-size: 32px;
}

section.contact {
    display: flex;
    flex-direction: column;
    padding-block: 64px;
    padding-inline: var(--mobile-padding);
    gap: 32px;
}

section.contact .left {
    display: flex;
    flex-direction: column;
    text-align: center;
}

section.contact .left .header .caption {
    color: #868686;
}

section.contact .left .body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-block: 32px;
}

section.contact .left .body {
    color: #868688;
}

section.contact .left .body .contact-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-content: center;
}

section.contact .left .body .contact-item i {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 10px;
}

section.contact .left .body .contact-item.c-mail i {
    color: #F9592A;
    background-color: rgba(249, 89, 42, 0.1);
}

section.contact .left .body .contact-item.c-phone i {
    color: dodgerblue;
    background-color: rgba(30, 144, 255, 0.1);
}

section.contact .left .body .contact-item.c-fax i {
    color: blueviolet;
    background-color: rgba(138, 43, 226, 0.1);
}

section.contact .left .body .contact-item.c-office i {
    color: green;
    background-color: rgba(0, 128, 0, 0.1);
}

section.contact .left .body .contact-item .detials .detials-caption {
    font-weight: bold;
}

section.contact .left .footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.contact .left .footer .title {
    font-size: 32px;
}

section.contact .left .footer .socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

section.contact .left .footer .socials i {
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-block;
    background: rgba(249, 89, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

section.contact .right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #9E523C;
    color: #FFF;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

section.contact .right form {
    text-align: left;
}

section.contact .right form .input-group label {
    margin-bottom: 8px;
    display: inline-block;
    font-weight: bold;
}

section.contact .right form .input-group input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    border-radius: 8px;
    color: #FFF;

}

section.contact .right form .input-group textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    border-radius: 8px;
    height: 150px;
    color: #FFF;
}

section.contact .right form button {
    width: 100%;
    border-radius: 10px;
    padding-block: 16px;
    color: #9E523C;
    font-weight: bold;
    margin-top: 16px;
}

/* Responsive Media Queries */
@media (min-width: 768px) {

    /* Styles for screens greater than 768px */
    section.contact-hero {
        height: 300px;
    }


    section.contact {
        padding-inline: var(--tablet-padding);
    }

    section.contact .left .body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-inline: var(--tablet-padding);
    }
}

@media (min-width: 992px) {
    /* Styles for screens greater than 992px */

    section.contact {
        flex-direction: row;
        padding-inline: var(--desktop-padding);
    }

    section.contact .left {
        text-align: left;
        flex: 1;
    }

    section.contact .left .body {
        display: flex;
        flex-direction: column;
        padding-inline: 0;
        text-align: left;
    }

    section.contact .left .body .contact-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        width: 100%;
        justify-content: left;
    }

    section.contact .left .body .contact-item i {
        margin: 0;
    }

    section.contact .left .footer .socials{
        justify-content: left;
    }

    section.contact .right {
        flex: 1;
        height: max-content;
    }
}

@media (min-width: 1200px) {
    /* Styles for screens greater than 1200px */

}