/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/styles/ContactForm.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
.contactForm {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;
}
.contactFormWrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.contactFormBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.contactFormBackground img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.08;
    background: #ffffff;
}
.contactFormBackgroundGradient {
    position: absolute;
    width: 100%;
    height: 50%;
    background: radial-gradient(circle, #78BFCB, #F2F2F2);
    filter: blur(100px);
    opacity: 10%;
    border-radius: 50%;
    z-index: 0;
}
.contactFormContainer {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
    height: fit-content;
}
.contactFormTextInput:focus,
.contactFormSelect:focus,
.contactFormTextField:focus {
    outline: none;
    border-color: #415e66;
    box-shadow: 0 0 0 3px rgba(65, 94, 102, 0.15);
}
.contactTitle {
    font-size: 48px;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 5%;
}
.contactFormContent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70vh;
}
.contactFormLeftColumn {
    display: none !important;
}
.contactFormRightColumn {
    display: flex;
    min-width: 249px;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.form-row {
    display: flex;
    flex-direction: row;
    column-gap: 1vw;
    margin-bottom: 1.3vw;
}
.form-row > div {
    flex: 1 1 0;
    min-width: 116.5px;
    display: flex;
    flex-direction: column;
}
.form-group {
    display: flex;
    margin-bottom: 1.3vw;
    flex-direction: column;
}
.contactFormTextInput,
.contactFormSelect,
.contactFormTextField {
    padding: 0.6rem 0.8rem;
    border-radius: 5px;
    border: 1.5px solid #d1d5db;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--accent);
    color: #729297;
    transition: all 0.3s ease;
}
.contactFormLabel {
    color: #606060;
    font-weight: 700;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contactFormTextInput {
    padding: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    border-color: #D8D8D8;
    border-radius: 5px;
    max-height: 38px;
    color: #36666e;
}
.contactFormTextInput:focus {
    border-right-color: #bed2d6;
    border-bottom-color: #bed2d6;
    outline: none;
}
.contactFormSelect {
    padding: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    border-color: #D8D8D8;
    border-radius: 5px;
    color: #36666e;
    border-width: 2px;
    border-left-color: #818181;
    border-top-color: #818181;
    width: 100%;
    max-height: 38px;
    box-sizing: border-box;
}
.contactFormSelect:focus {
    border-left-color: #729297;
    border-top-color: #729297;
    border-right-color: #bed2d6;
    border-bottom-color: #bed2d6;
    outline: none;
}
.contactFormTextField {
    background-color: var(--accent);
    resize: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    height: 16vh;
    font-weight: 600;
    font-size: 16px;
    color: #36666e;
    border-width: 2px;
    border-left-color: #818181;
    border-top-color: #818181;
    border-right-color: #d3d3d3;
    border-bottom-color: #d3d3d3;
}
.contactFormTextField:focus {
    border-left-color: #729297;
    border-top-color: #729297;
    border-right-color: #bed2d6;
    border-bottom-color: #bed2d6;
    outline: none;
}
.contactFormButton {
    padding: 0.75rem 2rem;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    background-color: #415e66;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.contactFormButton:hover {
    background-color: #537680;
}
.error-message {
    color: #ce7676;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}
.navigation-buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
}
.nextStepButton, .backStepButton {
    background: none;
    border: none;
    font-size: 3rem;
    color: #36666e;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.backStepButton {
    transform: rotate(180deg); 
}
.nextStepButton:hover {
    transform: translateX(8px);
}
.backStepButton:hover {
    transform: rotate(180deg) translateX(8px);
}
.contactHeaderCentered {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 75%;
    max-width: 75%;
    left: 50%;
    transform: translate(-50%, -240%);
}
.contactTitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #36666e;
    margin: 0;
}
.contactSubtitle {
    font-size: 1.2rem;
    color: #606060;
    margin-top: 0.5rem;
    max-width: 600px;
    line-height: 1.4;
}
.form-step {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, height 0.6s ease;
    height: 0;
    overflow: hidden;
}
.form-step.active {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}
.form-step.inactive {
    opacity: 0;
    transform: translateY(-40px);
    height: 0;
}
.form-step.active .form-row,
.form-step.active .form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
    }
.form-step.active .form-row:nth-child(1),
.form-step.active .form-group:nth-child(1) { animation-delay: 0.1s; }
.form-step.active .form-row:nth-child(2),
.form-step.active .form-group:nth-child(2) { animation-delay: 0.2s; }
.form-step.active .form-row:nth-child(3),
.form-step.active .form-group:nth-child(3) { animation-delay: 0.3s; }
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .contactHeaderCentered {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem; 
        padding: 0 5%;
        text-align: left;
    }
    .contactFormContainer {
        width: 90%; 
    }
    .contactFormContent {
        flex-direction: column; 
        min-height: auto;
        padding-top: 20px;
    }
    .contactFormRightColumn {
        width: 100%;
        padding: 0 5%;
    }
    .contactFormButton {
        margin-top: 20px;
        align-self: flex-start;
    }
    .form-row {
        flex-direction: column;
        row-gap: 1.3vw;
    }
    .contactFormBackgroundGradient {
        display: none;
    }
}
.thankYouMessage {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.6s forwards;
    animation-delay: 0.1s;
    text-align: center;
}
.thankYouMessage h1 {
    font-size: 1.5rem; 
    margin-bottom: 30px; 
    color: #36666e;
}


