/* ========================================
   IMPORTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/* ========================================
         CSS VARIABLES
         ======================================== */
:root {
    --ISARA-Dark-Grey: #5A5756;
    --ISARA-Black: #000;
    --ISARA-Grey: #8E8C8D;
    --ISARA-Light-Grey: #ECECEC;
    --ISARA-Red: #EC1C24;
}

/* ========================================
         BASE STYLES
         ======================================== */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: transparent;
    color: var(--ISARA-Black, #000);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

/* ========================================
         UTILITIES
         ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Typography */
.isara-h2 {
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.isara-h3 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
}

.isara-p {
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.isara-p-lg {
    font-size: 18px;
    line-height: normal;
    font-style: normal;
    font-weight: 300;
}

/* Buttons */
.isara-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.42px;
    cursor: pointer;

}

.isara-btn-danger {
    background-color: var(--ISARA-Red, #EC1C24);
    color: #FFF !important;
    transition: background-color 0.3s ease;
}

.isara-btn-danger:hover {
    background-color: rgba(236, 28, 36, 0.75);
}

.isara-btn-cta {
    color: var(--ISARA-Black, #000);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: transform 0.3s ease;
}

.isara-btn-cta img {
    width: 13px;
    height: auto;
}

.isara-btn-cta:hover {
    transform: scale(1.03);
}

.isara-btn-cta:hover img {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}


.features__bg {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    z-index: -1;
    max-height: 100%;
    overflow: hidden;
}

.features__bg img {
    max-width: 85%;
    height: auto;
}



@media (min-width: 768px) {

    .isara-h2 {
        font-size: 48px;
        line-height: normal;
    }

    .isara-h3 {
        font-size: 36px;
        line-height: normal;
    }

    .isara-p-lg {
        font-size: 18px;
        line-height: normal;
    }

    .isara-btn-cta img {
        width: 16px;
        height: auto;
    }

    .features__bg {
        display: flex;
    }

    .features__bg img {
        max-width: 330px;
        height: auto;
    }
}


/* hero section */

.hero {
    position: relative;
}

.hero_inner {
    position: relative;
    display: flex;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
    z-index: 1;
}

.hero_inner>h2 {
    max-width: 880px;
}

.hero_inner>p {
    max-width: 700px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}


.hero_inner .hero__actions {
    flex-direction: column;
    width: 100%;
}

.hero_inner .hero__actions button {
    width: 100%;
    max-width: 320px;
}

.hero__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    overflow: hidden;
    display: flex;
}

.hero__bg img {
    opacity: 0.15;
    width: 465px;
    height: auto;
    object-fit: cover;
}

.square_orange {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    transform: rotate(45deg);
    background-color: var(--ISARA-Red);
    border-radius: 4px;
}

@media (min-width: 768px) {
    .hero_inner {
        padding: 168px 0px;
        gap: 32px;
    }

    .hero_inner .hero__actions {
        flex-direction: row;
        width: auto;
    }

    .hero_inner .hero__actions button {
        width: auto;
        max-width: none;
    }
}


/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact_form {
    position: relative;
}


.contact_form__bg {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    z-index: -1;
    max-height: 100%;
    overflow: hidden;
}

.contact_form_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px 30px;
}

.contact_form__bg img {
    max-width: 85%;
    height: auto;
}

.contact_form_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact_form_content span:first-child {
    font-size: 12px;
    font-weight: 300;
    border: 1px solid var(--ISARA-Red, #EC1C24);
    padding: 6px;
    border-radius: 4px;
    color: var(--ISARA-Red, #EC1C24);
    width: fit-content;
}

.contact_form_content p a {
    color: var(--ISARA-Red, #EC1C24);
}


.contact_border_box {
    border: 1px solid var(--ISARA-Light-Grey, #ECECEC);
    padding: 20px;
    border-radius: 20px;
    background-color: #FFF;
    box-shadow: 2px 5px 8px 0 rgba(0, 0, 0, 0.10);
}

.contact_form_inputs {
    flex: 1;
    padding: 32px 28px;
    gap: 20px;
    flex-wrap: wrap;
}

.contact_form_inputs input {
    outline: none;

    background-color: #FFF;
    width: 100%;
    padding: 32px 28px;
    border: 1px solid var(--ISARA-Light-Grey, #ECECEC);
    box-shadow: 2px 5px 8px 0 rgba(0, 0, 0, 0.10);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    color: var(--ISARA-Black, #000);
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: -1;
    outline: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    background-color: #FFF;
    width: 100%;
    padding: 32px 28px;
    border: 1px solid var(--ISARA-Light-Grey, #ECECEC);
    box-shadow: 2px 5px 8px 0 rgba(0, 0, 0, 0.10);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    color: var(--ISARA-Black, #000);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-select-value {
    flex: 1;
    text-align: left;
}

.custom-select.placeholder .custom-select-value {
    color: #999;
}

.custom-select-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--ISARA-Black, #000);
    transition: transform 0.3s ease;
}

.custom-select.is-open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: #FFF;
    border: 1px solid var(--ISARA-Light-Grey, #ECECEC);
    box-shadow: 2px 5px 12px 0 rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.custom-select.is-open .custom-select-options {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.custom-select-option {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    color: var(--ISARA-Black, #000);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid var(--ISARA-Light-Grey, #ECECEC);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background-color: var(--ISARA-Light-Grey, #ECECEC);
    color: var(--ISARA-Red, #EC1C24);
}

.custom-select-option:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.custom-select-option:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.contact_form_inputs_footer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


@media (min-width: 768px) {
    .contact_form__bg {
        display: flex;
    }

    .contact_form__bg img {
        max-width: 500px;
        height: auto;
    }

    .contact_form_inner {
        padding: 90px 140px;
        flex-direction: row;
        gap: 70px;
    }

    .contact_form_content {
        max-width: 340px;
    }

    .contact_form_inputs input:nth-child(1) {
        width: calc(50% - 10px);
    }

    .contact_form_inputs input:nth-child(2) {
        width: calc(50% - 10px);
    }
}


/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    position: relative;
    background-color: var(--ISARA-Black, #000);
}

.cta_inner {
    position: relative;
    display: flex;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
    z-index: 1;
}

.cta_inner h2 {
    color: #FFF;
}

.cta_inner p {
    color: var(--ISARA-Light-Grey, #5A5756);
}

.cta_inner a {
    color: #FFF;
}

.cta_inner .hero__actions {
    flex-direction: column;
    width: 100%;
}

.cta_inner .hero__actions button {
    width: 100%;
    max-width: 320px;
}

.cta__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    overflow: hidden;
    display: flex;
}

.cta__bg img {
    width: 465px;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .cta_inner {
        padding: 120px 200px;
        gap: 32px;
    }

    .cta_inner .hero__actions {
        flex-direction: row;
        width: auto;
    }

    .cta_inner .hero__actions button {
        width: auto;
        max-width: none;
    }
}