/* =====================================================
   CONTACT PAGE
===================================================== */


/* ACTIVE HEADER LINK */

.contact-active::after {

    width: 100% !important;

}



/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {

    position: relative;

    min-height: 360px;

    display: flex;

    align-items: center;

    color: white;

    background-image:

        linear-gradient(
            90deg,
            rgba(5, 28, 20, 0.90),
            rgba(8, 48, 34, 0.65)
        ),

        url("images/hero.jpg");

    background-size: cover;

    background-position: center;

}


.contact-hero-inner {

    padding-top: 55px;

    padding-bottom: 55px;

}


.contact-eyebrow {

    display: block;

    margin-bottom: 8px;

    color: #e3c473;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.contact-hero h1 {

    margin-bottom: 14px;

    max-width: 700px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        42px,
        5vw,
        65px
    );

    line-height: 1.05;

}


.contact-hero p {

    max-width: 600px;

    color: rgba(
        255,
        255,
        255,
        0.88
    );

    font-size: 15px;

    line-height: 1.7;

}



/* =====================================================
   MAIN CONTACT AREA
===================================================== */

.contact-main {

    padding: 70px 0;

    background: var(--cream);

}


.contact-layout {

    display: grid;

    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(480px, 1.4fr);

    gap: 45px;

    align-items: start;

}



/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {

    padding-top: 10px;

}


.contact-details h2,
.contact-form-card h2 {

    margin-bottom: 12px;

    font-family: "Playfair Display", serif;

    color: #17251e;

    font-size: 32px;

}


.contact-intro,
.form-intro {

    margin-bottom: 27px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}



/* CONTACT INFO CARDS */

.contact-info-card {

    width: 100%;

    min-height: 85px;

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 14px;

    padding: 17px 18px;

    border:

        1px solid
        #e3ded4;

    border-radius: 9px;

    background: white;

    color: inherit;

    text-decoration: none;

    box-shadow:

        0 4px 15px
        rgba(0, 0, 0, 0.035);

    transition:

        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

}


a.contact-info-card:hover {

    transform:
        translateY(-3px);

    border-color:
        #c8d9d0;

    box-shadow:

        0 10px 24px
        rgba(0, 0, 0, 0.08);

}



.contact-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        #edf3ef;

    color:
        var(--green);

    font-size: 19px;

}


.whatsapp-contact-icon {

    background:
        #e7f9ed;

    color:
        #25d366;

    font-size: 23px;

}


.contact-info-card span {

    display: block;

    margin-bottom: 2px;

    color:
        #797d78;

    font-size: 10px;

    font-weight: 600;

    letter-spacing:
        0.7px;

    text-transform:
        uppercase;

}


.contact-info-card strong {

    display: block;

    color:
        #26302a;

    font-size: 14px;

    font-weight: 600;

}



/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {

    padding: 38px;

    border:

        1px solid
        #e1ddd4;

    border-radius: 12px;

    background: white;

    box-shadow:

        0 12px 35px
        rgba(0, 0, 0, 0.065);

}



/* FORM ROW */

.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 17px;

}



/* FORM GROUP */

.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color:
        #29332e;

    font-size: 12px;

    font-weight: 600;

}


.form-group label span {

    color:
        #a44a3f;

}



/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border:

        1px solid
        #dcd8cf;

    border-radius: 7px;

    background:
        #fbfaf7;

    color:
        #252a26;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    outline: none;

    transition:

        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

}


.form-group input,
.form-group select {

    height: 48px;

    padding:
        0 13px;

}


.form-group textarea {

    min-height: 165px;

    padding: 13px;

    resize:
        vertical;

    line-height: 1.6;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--green);

    background:
        white;

    box-shadow:

        0 0 0 3px
        rgba(30, 117, 86, 0.10);

}



/* PLACEHOLDERS */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color:
        #a0a39f;

}



/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-submit {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        12px 24px;

    border: none;

    border-radius: 7px;

    background:
        var(--green);

    color:
        white;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:

        0 8px 18px
        rgba(30, 117, 86, 0.18);

    transition:

        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.contact-submit:hover {

    background:
        #155f45;

    transform:
        translateY(-2px);

    box-shadow:

        0 11px 24px
        rgba(30, 117, 86, 0.25);

}



/* =====================================================
   FORM STATUS MESSAGES
===================================================== */

.form-message {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 23px;

    padding: 14px 15px;

    border-radius: 7px;

    font-size: 12px;

    line-height: 1.6;

}


.form-success {

    border:

        1px solid
        #a7d3b4;

    background:
        #edf9f0;

    color:
        #266237;

}


.form-error {

    border:

        1px solid
        #e1b2ab;

    background:
        #fff1ef;

    color:
        #91483e;

}


.form-message i {

    margin-top: 3px;

}



/* =====================================================
   SPAM HONEYPOT
===================================================== */

.website-field {

    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;

    height: 1px !important;

    overflow: hidden !important;

}



/* =====================================================
   BOTTOM WHATSAPP AREA
===================================================== */

.contact-bottom {

    padding: 48px 0;

    background:
        #193f31;

    color:
        white;

}


.contact-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.contact-bottom h2 {

    margin-bottom: 6px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 29px;

}


.contact-bottom p {

    max-width: 650px;

    color:

        rgba(
            255,
            255,
            255,
            0.74
        );

    font-size: 13px;

}



/* =====================================================
   TABLET
===================================================== */

@media
(max-width: 900px) {

    .contact-layout {

        grid-template-columns: 1fr;

    }


    .contact-details {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;

    }


    .contact-details > .section-label,
    .contact-details > h2,
    .contact-details > .contact-intro {

        grid-column:
            1 / -1;

    }


    .contact-info-card {

        margin-bottom: 0;

    }

}



/* =====================================================
   MOBILE
===================================================== */

@media
(max-width: 620px) {

    .contact-hero {

        min-height: 310px;

    }


    .contact-hero h1 {

        font-size: 42px;

    }


    .contact-main {

        padding:
            45px 0;

    }


    .contact-layout {

        gap: 35px;

    }


    .contact-details {

        display: block;

    }


    .contact-info-card {

        margin-bottom: 12px;

    }


    .contact-form-card {

        padding:
            27px 20px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .contact-submit {

        width: 100%;

    }


    .contact-bottom-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}