/* contact page  */

/* hero  */

.contact-hero {
    width: 100%;
    min-height: 50vh;
    position: relative;
    padding: 100px 32px 48px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://mksurveys.com/wp-content/uploads/2024/10/Laser-scanning-edited-1-scaled.webp");
    background-position: 50% 50%;
    background-size: cover;
}

@supports (min-height: 50dvh) {
    .contact-hero {
        min-height: 50dvh;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 70vh;
        padding: 100px 16px 16px 16px!important;
    }
    .contact-hero .wrapper .content h1 {
        font-size: 20px!important;
    }
    .contact-hero .wrapper .content h2 {
        font-size: 54px!important;
    }
}

/* mobile dvh support */
@supports (min-height: 70dvh) {
    @media (max-width: 767px) {
        .contact-hero {
            min-height: 70dvh;
        }
    }
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: .5;
    height: 100%;
    background: linear-gradient(0deg,rgb(0,0,0) 2%,rgba(0,0,0,0) 50%,rgb(1,1,1) 96%);
}



.contact-hero .wrapper {
    max-width: 1200px;
    width: 100%;
}

.contact-hero .wrapper .content {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.contact-hero .wrapper .content h1 {
    font-size: 24px;
    background-color: var(--muted-green);
    color: var(--dark-jungle);
    padding: 4px 8px;
    width: fit-content;
    margin-bottom: 40px;
    margin-top: 0;
}

.contact-hero .wrapper .content h2 {
    color: var(--white);
    margin-top: 0;
    line-height: 1.2;
    margin-bottom: 0;
    font-size: 72px;
    font-weight: bold;
}

/* end of hero  */

/* contact section  */

.contact-form-section {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
    background-color: var(--pale-grey);
}


@media (max-width: 767px) {
    .contact-form-section {
        padding: 32px 16px!important;
    }
    .contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row {
        flex-direction: column;
    }
    .contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper {
        width: 100%!important;
    }
}

@media (max-width: 1024px) {
    .contact-form-section .wrapper .action {
        flex-direction: column;
    }
    .contact-form-section .wrapper .action .info {
        width: 100%!important;
    }
}

@media (max-width: 576px) {
    .contact-form-section .wrapper .action .form-area .form-wrapper {
        padding: 16px 24px!important;
    }
    .contact-form-section .wrapper .action .form-area .form-wrapper .form-head .icon-wrapper {
        width: 26px!important;
        min-width: 26px!important;
    }
    .contact-form-section .wrapper .action .form-area .form-wrapper .form-head h3 {
        font-size: clamp(20px,6vw,24px)!important;
    }
}

.contact-form-section .wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.contact-form-section .wrapper .action {
    display: flex;
    gap: 40px;
}

.contact-form-section .wrapper .action .info {
    width: 35%;
    min-width: 35%;
}

.contact-form-section .wrapper .action .form-area {
    flex-grow: 1;
}

.contact-form-section .wrapper .action .form-area .form-wrapper {
    border: 1px solid rgb(229, 231, 235);
    background-color: var(--white);
    padding: 36px;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 8px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-head {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-head .icon-wrapper {
    width: 32px;
    min-width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-head .icon-wrapper svg {
    width: 100%;
    fill: var(--everglade);
    height: auto;
    max-width: 100%;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-head h3 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body {
    width: 100%;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form {
    width: 100%;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row {
    width: 100%;
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.message .input-wrapper {
    width: 100%;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.submit {
    width: 100%;
    margin-bottom: 0;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.submit button {
    height: 48px;
    position: relative;
    overflow: hidden;
    width: fit-content;
    font-size: 16px;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0 16px;
    background-color: var(--muted-green);
    color: var(--dark-jungle);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.submit button:hover {
    background-color: transparent;
    color: var(--dark-jungle);
    border: 1px solid var(--dark-jungle);

}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.submit button:disabled {
    background-color: grey;
    cursor: not-allowed;
    border: 1px solid transparent;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.submit button svg {
    width: 14px;
    min-width: 14px;
    height: auto;
    max-width: 100%;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.privacy .input-wrapper {
    flex-direction: row;
    width: 100%;
    font-size: 14px;
    gap: 12px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.privacy .input-wrapper a {
    color: var(--dark-jungle);
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row.privacy .input-wrapper input[type="checkbox"] {
    accent-color: var(--everglade);
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper.error::before {
    content: '';
    width: 8px;
    height: 100%;
    background-color: red;
    position: absolute;
    top: 0;
    left: -14px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper label {
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper input[type="text"], .contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper input[type="email"], .contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper input[type="text"], .contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper input[type="tel"] {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid rgb(229, 231, 235);
    margin-bottom: 8px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper textarea {
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgb(229, 231, 235);
    margin-bottom: 8px;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper .error-message {
    width: 100%;
    color: red;
    font-size: 14px;
    display: none;
}

.contact-form-section .wrapper .action .form-area .form-wrapper .form-body form .input-row .input-wrapper.error .error-message {
    display: block!important;
}

.contact-form-section .input-wrapper.error input,
.contact-form-section .input-wrapper.error textarea {
    border-color: red!important;
}

.contact-form-section .input-wrapper.valid input,
.contact-form-section .input-wrapper.valid textarea {
    border-color: #5cb85c!important;
}

.contact-form-section .wrapper .action .info .info-text {
    width: 100%;
}

.contact-form-section .wrapper .action .info .info-text h2 {
    margin-top: 0;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
}

.contact-form-section .wrapper .action .info .info-text p {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-form-section .wrapper .action .info .info-text .image-wrapper {
    width: 100%;
}

.contact-form-section .wrapper .action .info .info-text .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.contact-form-section .wrapper .action .info .info-ctas {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-form-section .wrapper .action .info .info-ctas a {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--dark-jungle);
    font-size: 18px;
    text-decoration: underline;
}

.contact-form-section .wrapper .action .info .info-ctas a:hover {
    text-decoration: none;
}

.contact-form-section .wrapper .action .info .info-ctas a svg {
    width: 24px;
    height: auto;
    fill: var(--everglade);
    min-width: 24px;
    max-width: 100%;
}

/* form area  */

/* map  */

.contact-form-section .wrapper .map {
    width: 100%;
    margin-top: 32px;
}

.contact-form-section .wrapper .map .gmap-wrapper {
    width: 100%;
    border-radius: 16px;
    background-color: var(--white);
    padding: 16px;
    overflow: hidden;
}

.contact-form-section .wrapper .map .gmap-wrapper iframe {
    width: 100%;
    border-radius: 16px;
}

/* end of contact section  */

/* where we serve  */

.where-we-serve {
    padding: 144px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
	background: var(--white);
}

@media (max-width: 1024px) {
    .where-we-serve {
        padding: 64px 32px!important;
    }
    .where-we-serve .wrapper {
        flex-direction: column;
    }
    .where-we-serve .wrapper .content, .where-we-serve .wrapper .image-wrapper {
        width: 100%!important;
    }
}

@media (max-width: 767px) {
    .where-we-serve {
        padding: 32px 16px!important;
    }
    .where-we-serve .wrapper .content h2 {
        font-size: clamp(40px,7vw, 48px)!important;
    }
}

.where-we-serve .wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.where-we-serve .wrapper .content, .where-we-serve .wrapper .image-wrapper {
    width: 50%;
}

.where-we-serve .wrapper .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.where-we-serve .wrapper .content span {
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-jungle);
}

.where-we-serve .wrapper .content h2 {
    font-size: 56px;
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 24px;
}

.where-we-serve .wrapper .content p {
    margin-top: 0;
}

/* end of where we serve  */