/* =========================================================
   TEN ONE RESORT
   Contact Page
   contact.css
   ========================================================= */

.contact-hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 46vh;

    padding:
        150px 0
        80px;

    overflow: hidden;

    isolation: isolate;

    background:
        url("../images/cont_bg.avif");

    background-size:
        cover;

    background-position:
        center center;

    background-repeat:
        no-repeat;

    background-attachment:
        fixed;
}

/* =========================================================
   CONTACT HERO - ELEGANT OVERLAY
   ========================================================= */

.contact-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.99) 0%,
            rgba(255, 255, 255, 0.96) 16%,
            rgba(247, 248, 243, 0.88) 30%,
            rgba(247, 248, 243, 0.68) 45%,
            rgba(247, 248, 243, 0.40) 62%,
            rgba(247, 248, 243, 0.16) 80%,
            rgba(247, 248, 243, 0.00) 100%
        );
}


/* =========================================================
   SOFT ATMOSPHERIC WASH
   No radial ellipse = no visible circle
   ========================================================= */

.contact-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(255, 255, 255, 0.48) 18%,
            rgba(255, 255, 255, 0.18) 42%,
            rgba(255, 255, 255, 0.04) 68%,
            rgba(255, 255, 255, 0.00) 100%
        );
}

/* =========================================================
   04. HERO CONTAINER
   ========================================================= */

.contact-hero-container {
    position: relative;

    width:
        min(
            calc(
                100% -
                (var(--container-padding) * 2)
            ),
            1280px
        );

    margin-inline:
        auto;

    z-index: 2;
}


/* =========================================================
   05. HERO EYEBROW
   ========================================================= */

.contact-eyebrow {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-bottom:
        18px;

    color:
        var(--color-primary-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.78rem;

    font-weight:
        700;

    line-height:
        1.2;

    letter-spacing:
        0.18em;

    text-transform:
        uppercase;
}


.contact-eyebrow::before {
    content:
        "";

    width:
        38px;

    height:
        1px;

    flex-shrink:
        0;

    background:
        var(--color-primary-light);
}


/* =========================================================
   06. HERO TITLE
   ========================================================= */

.contact-title {
    max-width:
        800px;

    margin:
        0 0
        22px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.6rem,
            7vw,
            6.2rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height:
        0.88;

    letter-spacing:
        -0.045em;
}


.contact-title span {
    display:
        block;

    color:
        var(--color-primary);
}


/* =========================================================
   07. HERO DESCRIPTION
   ========================================================= */

.contact-hero-description {
    max-width:
        650px;

    margin:
        0;

    color:#53645d;

    font-family:
        var(--font-body-strong);

    font-size:
        1rem;

    font-weight:
        500;

    line-height:
        1.8;
}


/* =========================================================
   08. TABLET
   769px - 1100px
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .contact-hero {
        min-height:
            42vh;

        padding:
            135px 0
            65px;

        background-attachment:
            scroll;
    }


    .contact-title {
        max-width:
            680px;

        font-size:
            clamp(
                3.2rem,
                7vw,
                5rem
            );
    }


    .contact-hero-description {

        color:#53645d;

        max-width:
            570px;

        font-size:
            0.85rem;
    }


    .contact-hero::after {
        left:
            25%;

        width:
            700px;

        height:
            560px;
    }

}


/* =========================================================
   09. MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .contact-hero {
        min-height:
            48vh;

        padding:
            125px 0
            55px;

        background-position:
            58% center;

        /*
         * Avoid fixed background on mobile for smoother
         * scrolling and better browser support.
         */
        background-attachment:
            scroll;
    }


   .contact-hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 0.90) 14%,
                rgba(247, 248, 243, 0.70) 30%,
                rgba(247, 248, 243, 0.42) 48%,
                rgba(247, 248, 243, 0.16) 68%,
                rgba(247, 248, 243, 0.03) 86%,
                rgba(247, 248, 243, 0) 100%
            );
   }


    .contact-hero::after {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.68) 0%,
                rgba(255, 255, 255, 0.40) 28%,
                rgba(255, 255, 255, 0.14) 52%,
                rgba(255, 255, 255, 0.00) 78%
            );
    }

    .contact-hero-container {
        width:
            calc(
                100% -
                (var(--container-padding) * 2)
            );
    }


    .contact-eyebrow {
        margin-bottom:
            11px;

        font-size:
            0.67rem;

        letter-spacing:
            0.14em;
    }


    .contact-eyebrow::before {
        width:
            27px;
    }


    .contact-title {
        max-width:
            100%;

        margin-bottom:
            16px;

        font-size:
            clamp(
                2.75rem,
                11vw,
                4rem
            );

        line-height:
            0.92;
    }


    .contact-hero-description {

        color:#53645d;
        max-width:
            100%;

        font-size:
            0.80rem;

        line-height:
            1.7;

        color:
            var(--color-text-dark);
    }

}


/* =========================================================
   10. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

    .contact-hero {
        min-height:
            46vh;

        padding:
            115px 0
            50px;

        background-position:
            60% center;
    }


    .contact-title {
        font-size:
            clamp(
                2.4rem,
                12vw,
                3.2rem
            );
    }


    .contact-hero-description {
        color:#53645d;
        font-size:
            0.8rem;

        line-height:
            1.68;
    }


    .contact-hero::after {
        width:
            600px;

        height:
            480px;
    }

}


/* =========================================================
   11. VERY SMALL PHONES
   <= 375px
   ========================================================= */

@media (max-width: 375px) {

    .contact-hero {
        min-height:
            44vh;

        padding:
            108px 0
            44px;
    }


    .contact-title {
        font-size:
            2.35rem;
    }


    .contact-hero-description {
        color:#53645d;
        font-size:
            0.78rem;
    }

}


/* =========================================================
   12. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-hero {
        background-attachment:
            scroll;
    }

}
/* =========================================================
   04. HERO EYEBROW
   ========================================================= */

.contact-eyebrow {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-bottom:
        18px;

    color:
        var(--color-primary-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.78rem;

    font-weight:
        700;

    line-height:
        1.2;

    letter-spacing:
        0.18em;

    text-transform:
        uppercase;
}


.contact-eyebrow::before {
    content:
        "";

    width:
        38px;

    height:
        1px;

    flex-shrink:
        0;

    background:
        var(--color-primary-light);
}


/* =========================================================
   05. HERO TITLE
   ========================================================= */

.contact-title {
    max-width:
        820px;

    margin:
        0 0
        22px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.6rem,
            7vw,
            6.2rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height:
        0.88;

    letter-spacing:
        -0.045em;
}


.contact-title span {
    display:
        block;

    color:
        var(--color-primary);
}



/* =========================================================
   07. MAIN CONTACT SECTION
   ========================================================= */

.contact-section {
    position:
        relative;

    padding:
        clamp(
            5rem,
            8vw,
            8rem
        )
        0;

    overflow:
        hidden;

    background:
        var(--color-background);

    isolation:
        isolate;
}


/* =========================================================
   08. CONTACT SECTION ATMOSPHERE
   ========================================================= */

.contact-section::before {
    content:
        "";

    position:
        absolute;

    top:
        80px;

    left:
        -260px;

    width:
        620px;

    height:
        620px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(
                95,
                169,
                184,
                0.08
            ) 0%,
            rgba(
                95,
                169,
                184,
                0
            ) 72%
        );

    pointer-events:
        none;

    z-index:
        -1;
}


.contact-section::after {
    content:
        "";

    position:
        absolute;

    right:
        -220px;

    bottom:
        -250px;

    width:
        600px;

    height:
        600px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(
                63,
                118,
                85,
                0.08
            ) 0%,
            rgba(
                63,
                118,
                85,
                0
            ) 72%
        );

    pointer-events:
        none;

    z-index:
        -1;
}


/* =========================================================
   09. CONTACT CONTAINER
   ========================================================= */

.contact-container {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.82fr);

    align-items:
        start;

    gap:
        clamp(
            3rem,
            7vw,
            7rem
        );

    width:
        min(
            calc(
                100% -
                (var(--container-padding) * 2)
            ),
            1180px
        );

    margin-inline:
        auto;

    z-index:
        2;
}


/* =========================================================
   10. CONTACT INFORMATION
   ========================================================= */

.contact-information {
    width:
        100%;

    max-width:
        660px;
}


/* =========================================================
   11. SECTION HEADING
   ========================================================= */

.contact-section-heading {
    margin-bottom:
        34px;
}


.contact-section-eyebrow {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    margin-bottom:
        14px;

    color:
        var(--color-primary-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.7rem;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    line-height:
        1.2;

    text-transform:
        uppercase;
}


.contact-section-eyebrow::before {
    content:
        "";

    width:
        30px;

    height:
        1px;

    background:
        var(--color-primary-light);
}


.contact-section-title {
    margin:
        0 0
        15px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.8rem,
            4.8vw,
            4.25rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height:
        0.92;

    letter-spacing:
        -0.035em;
}


.contact-section-title span {
    display:
        block;

    color:
        var(--color-primary);
}


.contact-section-heading > p {
    max-width:
        580px;

    margin:
        0;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size:
        1rem;

    font-weight:
        500;

    line-height:
        1.75;
}


/* =========================================================
   12. CONTACT DETAILS
   ========================================================= */

.contact-details {
    display:
        grid;

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

    gap:
        10px;

    margin-bottom:
        40px;
}


/* =========================================================
   13. CONTACT DETAIL
   ========================================================= */

.contact-detail {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    min-height:
        78px;

    padding:
        13px
        15px;

    border:
        1px solid
        rgba(
            22,
            74,
            58,
            0.09
        );

    border-radius:
        14px;

    background:
        rgba(
            255,
            255,
            255,
            0.62
        );

    box-shadow:
        0 5px 18px
        rgba(
            22,
            74,
            58,
            0.035
        );

    transition:
        transform
        var(--transition-base),

        border-color
        var(--transition-base),

        background-color
        var(--transition-base),

        box-shadow
        var(--transition-base);
}


.contact-detail:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(
            63,
            118,
            85,
            0.18
        );

    background:
        var(--color-white);

    box-shadow:
        0 10px 26px
        rgba(
            22,
            74,
            58,
            0.08
        );
}


/* =========================================================
   14. CONTACT ICON
   ========================================================= */

.contact-detail-icon {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        39px;

    height:
        39px;

    flex-shrink:
        0;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.16
        );

    border-radius:
        50%;

    color:
        var(--color-primary-light);

    background:
        rgba(
            63,
            118,
            85,
            0.06
        );

    font-size:
        0.82rem;
}


/* =========================================================
   15. CONTACT TEXT
   ========================================================= */

.contact-detail-content {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

    min-width:
        0;
}


.contact-detail-content > span {
    color:
        var(--color-text-muted);

    font-family:
        var(--font-body-strong);

    font-size:
        0.78rem;

    font-weight:
        700;

    letter-spacing:
        0.10em;

    line-height:
        1.2;

    text-transform:
        uppercase;
}


.contact-detail-content a {
    overflow-wrap:
        anywhere;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-body-strong);

    font-size:
        0.8rem;

    font-weight:
        700;

    line-height:
        1.45;

    transition:
        color
        var(--transition-base);
}


.contact-detail-content a:hover {
    color:
        var(--color-primary);
}


/* =========================================================
   16. STAY INFORMATION
   ========================================================= */

.stay-information {
    position:
        relative;

    padding:
        28px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.11
        );

    border-radius:
        20px;

    background:
        rgba(
            247,
            248,
            243,
            0.72
        );

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);
}


.stay-information-heading {
    margin-bottom:
        20px;
}


.stay-information-heading
.contact-section-eyebrow {
    margin-bottom:
        7px;
}


.stay-information-heading h3 {
    margin:
        0;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        1.9rem;

    font-weight:
        var(--font-weight-semibold);

    line-height:
        1;
}


/* =========================================================
   17. STAY INFORMATION GRID
   ========================================================= */

.stay-information-grid {
    display:
        grid;

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

    gap:
        10px;
}


/* =========================================================
   18. STAY INFO CARD
   ========================================================= */

.stay-info-card {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    padding:
        15px;

    border:
        1px solid
        rgba(
            22,
            74,
            58,
            0.07
        );

    border-radius:
        14px;

    background:
        rgba(
            255,
            255,
            255,
            0.63
        );
}


.stay-info-icon {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        34px;

    height:
        34px;

    flex-shrink:
        0;

    border-radius:
        50%;

    color:
        var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.08
        );

    font-size:
        0.70rem;
}


.stay-info-card h4 {
    margin:
        0 0
        5px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-body-strong);

    font-size:
        0.95rem;

    font-weight:
        700;

    line-height:
        1.35;
}


.stay-info-card p {
    margin:
        0;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.85rem;

    font-weight:
        500;

    line-height:
        1.65;
}


/* =========================================================
   19. CONTACT CTA
   ========================================================= */

.contact-cta {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    margin-top:
        22px;

    padding:
        18px
        19px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.20
        );

    border-radius:
        16px;

    background:
        linear-gradient(
            120deg,
            #103D30,
            #18513E
        );

    box-shadow:
        0 12px 32px
        rgba(
            22,
            74,
            58,
            0.12
        );
}


.contact-cta > div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;
}


.contact-cta > div > span {
    color:
        rgba(
            255,
            255,
            255,
            0.58
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.58rem;

    font-weight:
        600;

    letter-spacing:
        0.10em;

    text-transform:
        uppercase;
}


.contact-cta > div > strong {
    color:
        var(--color-white);

    font-family:
        var(--font-body-strong);

    font-size:
        0.78rem;

    font-weight:
        700;
}


/* =========================================================
   20. CONTACT CTA BUTTON
   ========================================================= */

.contact-cta-button {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    min-height:
        43px;

    padding:
        0 8px
        0 13px;

    flex-shrink:
        0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.28
        );

    border-radius:
        var(--radius-full);

    color:
        var(--color-white);

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.67rem;

    font-weight:
        700;

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    transition:
        transform
        var(--transition-base),

        background-color
        var(--transition-base),

        border-color
        var(--transition-base);
}


.contact-cta-button:hover {
    color:
        var(--color-white);

    background:
        rgba(
            255,
            255,
            255,
            0.16
        );

    border-color:
        rgba(
            255,
            255,
            255,
            0.48
        );

    transform:
        translateY(-2px);
}


.contact-cta-button
.fa-whatsapp {
    font-size:
        0.90rem;
}


.contact-cta-button
.fa-arrow-right {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        27px;

    height:
        27px;

    border-radius:
        50%;

    color:
        var(--color-primary);

    background:
        var(--color-white);

    transition:
        transform
        var(--transition-base);
}


.contact-cta-button:hover
.fa-arrow-right {
    transform:
        translateX(3px);
}


/* =========================================================
   21. MAP COLUMN
   ========================================================= */

.contact-map-column {
    position:
        sticky;

    top:
        110px;

    width:
        100%;
}


/* =========================================================
   22. MAP CARD
   ========================================================= */

.contact-map-card {
    position:
        relative;

    padding:
        22px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.78
        );

    border-radius:
        24px;

    background:
        rgba(
            255,
            255,
            255,
            0.82
        );

    box-shadow:
        0 24px 65px
        rgba(
            22,
            74,
            58,
            0.12
        );

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}


/* =========================================================
   23. MAP HEADER
   ========================================================= */

.contact-map-header {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    margin-bottom:
        16px;
}


.contact-map-eyebrow {
    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--color-primary-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.58rem;

    font-weight:
        700;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}


.contact-map-header h2 {
    margin:
        0 0
        4px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        1.9rem;

    font-weight:
        var(--font-weight-semibold);

    line-height:
        0.98;
}


.contact-map-header p {
    margin:
        0;

    color:
        var(--color-text-muted);

    font-family:
        var(--font-body-strong);

    font-size:
        0.67rem;

    font-weight:
        500;
}


/* =========================================================
   24. MAP MARKER
   ========================================================= */

.contact-map-marker {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        42px;

    height:
        42px;

    flex-shrink:
        0;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.15
        );

    border-radius:
        50%;

    color:
        var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.07
        );

    font-size:
        0.85rem;
}


/* =========================================================
   25. MAP
   ========================================================= */

.contact-map {
    position:
        relative;

    width:
        100%;

    aspect-ratio:
        4 / 4.25;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            22,
            74,
            58,
            0.10
        );

    border-radius:
        18px;

    background:
        #E9EEE8;

    box-shadow:
        0 10px 28px
        rgba(
            22,
            74,
            58,
            0.07
        );
}


.contact-map iframe {
    display:
        block;

    width:
        100%;

    height:
        100%;

    border:
        0;

    filter:
        saturate(0.88);

    opacity:
        0.94;
}


/* =========================================================
   26. MAP BUTTON
   ========================================================= */

.contact-map-button {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    margin-top:
        12px;

    min-height:
        47px;

    padding:
        0 10px
        0 16px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.16
        );

    border-radius:
        var(--radius-full);

    color:
        var(--color-primary);

    background:
        rgba(
            247,
            248,
            243,
            0.72
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.69rem;

    font-weight:
        700;

    transition:
        transform
        var(--transition-base),

        background-color
        var(--transition-base),

        border-color
        var(--transition-base);
}


.contact-map-button:hover {
    color:
        var(--color-primary-dark);

    background:
        var(--color-white);

    border-color:
        rgba(
            63,
            118,
            85,
            0.30
        );

    transform:
        translateY(-2px);
}


.contact-map-button > span:last-child {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        30px;

    height:
        30px;

    border-radius:
        50%;

    color:
        var(--color-white);

    background:
        var(--color-primary);
}


/* =========================================================
   27. MAP NOTE
   ========================================================= */

.contact-map-note {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        8px;

    margin-top:
        14px;

    padding:
        0 3px;
}


.contact-map-note > i {
    margin-top:
        2px;

    color:
        var(--color-primary-light);

    font-size:
        0.72rem;
}


.contact-map-note p {
    margin:
        0;

    color:
        var(--color-text-muted);

    font-family:
        var(--font-body-strong);

    font-size:
        0.73rem;

    font-weight:
        500;

    line-height:
        1.6;
}


/* =========================================================
   28. TABLET
   769px - 1100px
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .contact-hero {
        min-height:
            40vh;

        padding:
            135px
            0
            60px;
    }


    .contact-title {
        font-size:
            clamp(
                3.2rem,
                7vw,
                5rem
            );
    }


    .contact-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.88fr);

        gap:
            3rem;
    }


    .contact-section-title {
        font-size:
            clamp(
                2.6rem,
                5vw,
                3.7rem
            );
    }


    .contact-details {
        gap:
            9px;
    }


    .contact-detail {
        min-height:
            72px;

        padding:
            11px
            12px;
    }


    .stay-information {
        padding:
            22px;
    }


    .stay-information-grid {
        grid-template-columns:
            1fr;
    }


    .contact-map-column {
        top:
            100px;
    }


    .contact-map-card {
        padding:
            18px;
    }


    .contact-map {
        aspect-ratio:
            4 / 4.8;
    }

}


/* =========================================================
   29. MOBILE
   <= 768px
   ========================================================= */

@media (max-width: 768px) {

    .contact-hero {
        min-height:
            42vh;

        padding:
            125px
            0
            55px;
    }


    .contact-hero-container {
        width:
            calc(
                100% -
                (var(--container-padding) * 2)
            );
    }


    .contact-eyebrow {
        margin-bottom:
            11px;

        font-size:
            0.67rem;

        letter-spacing:
            0.14em;
    }


    .contact-eyebrow::before {
        width:
            27px;
    }


    .contact-title {
        max-width:
            100%;

        margin-bottom:
            16px;

        font-size:
            clamp(
                2.75rem,
                11vw,
                4rem
            );

        line-height:
            0.92;
    }


    .contact-hero-description {
        max-width:
            100%;

        font-size:
            0.80rem;

        line-height:
            1.7;
    }


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

    .contact-section {
        padding:
            4.75rem
            0;
    }


    .contact-container {
        display:
            flex;

        flex-direction:
            column;

        gap:
            3rem;

        width:
            calc(
                100% -
                (var(--container-padding) * 2)
            );
    }


    .contact-information {
        max-width:
            100%;
    }


    .contact-section-heading {
        margin-bottom:
            25px;
    }


    .contact-section-eyebrow {
        margin-bottom:
            10px;

        font-size:
            0.64rem;
    }


    .contact-section-eyebrow::before {
        width:
            25px;
    }


    .contact-section-title {
        margin-bottom:
            13px;

        font-size:
            clamp(
                2.35rem,
                10vw,
                3.4rem
            );
    }


    .contact-section-heading > p {
        font-size:
            0.85rem;

        line-height:
            1.7;
    }


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

    .contact-details {
        grid-template-columns:
            1fr;

        gap:
            8px;

        margin-bottom:
            28px;
    }


    .contact-detail {
        min-height:
            68px;

        padding:
            11px
            13px;

        border-radius:
            13px;
    }


    .contact-detail-icon {
        width:
            36px;

        height:
            36px;

        font-size:
            0.76rem;
    }


    .contact-detail-content > span {
        font-size:
            0.75rem;
    }


    .contact-detail-content a {
        font-size:
            0.85rem;
    }


    /* =====================================================
       STAY INFORMATION
       ===================================================== */

    .stay-information {
        padding:
            21px
            16px;

        border-radius:
            17px;
    }


    .stay-information-heading {
        margin-bottom:
            16px;
    }


    .stay-information-heading
    .contact-section-eyebrow {
        margin-bottom:
            7px;
    }


    .stay-information-heading h3 {
        font-size:
            1.7rem;
    }


    .stay-information-grid {
        grid-template-columns:
            1fr;

        gap:
            8px;
    }


    .stay-info-card {
        padding:
            13px;
    }


    .stay-info-icon {
        width:
            32px;

        height:
            32px;

        font-size:
            0.67rem;
    }


    .stay-info-card h4 {
        font-size:
            0.85rem;
    }


    .stay-info-card p {
        font-size:
            0.75rem;

        line-height:
            1.6;
    }


    /* =====================================================
       CTA
       ===================================================== */

    .contact-cta {
        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            15px;

        margin-top:
            16px;

        padding:
            17px
            15px;

        border-radius:
            15px;
    }


    .contact-cta > div > span {
        font-size:
            0.53rem;
    }


    .contact-cta > div > strong {
        font-size:
            0.70rem;

        line-height:
            1.45;
    }


    .contact-cta-button {
        width:
            100%;

        justify-content:
            space-between;

        min-height:
            45px;

        font-size:
            0.66rem;
    }


    /* =====================================================
       MAP
       ===================================================== */

    .contact-map-column {
        position:
            relative;

        top:
            auto;

        width:
            100%;
    }


    .contact-map-card {
        padding:
            17px;

        border-radius:
            20px;
    }


    .contact-map-header {
        margin-bottom:
            13px;
    }


    .contact-map-eyebrow {
        font-size:
            0.54rem;
    }


    .contact-map-header h2 {
        font-size:
            1.65rem;
    }


    .contact-map-header p {
        font-size:
            0.60rem;
    }


    .contact-map-marker {
        width:
            37px;

        height:
            37px;

        font-size:
            0.74rem;
    }


    .contact-map {
        aspect-ratio:
            4 / 4;

        border-radius:
            15px;
    }


    .contact-map-button {
        min-height:
            44px;

        font-size:
            0.64rem;
    }


    .contact-map-note {
        margin-top:
            11px;
    }


    .contact-map-note p {
        font-size:
            0.75rem;
    }

}


/* =========================================================
   30. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

    .contact-hero {
        min-height:
            40vh;

        padding:
            115px
            0
            50px;
    }


    .contact-title {
        font-size:
            clamp(
                2.4rem,
                12vw,
                3.2rem
            );
    }


    .contact-hero-description {
        font-size:
            0.8rem;
    }


    .contact-section {
        padding:
            4rem
            0;
    }


    .contact-container {
        gap:
            2.5rem;
    }


    .contact-section-title {
        font-size:
            clamp(
                2.15rem,
                11vw,
                2.85rem
            );
    }


    .contact-section-heading > p {
        font-size:
            0.8rem;
    }


    .contact-detail {
        min-height:
            64px;

        padding:
            10px
            11px;
    }


    .contact-detail-icon {
        width:
            34px;

        height:
            34px;
    }


    .contact-detail-content a {
        font-size:
            0.7rem;
    }


    .stay-information {
        padding:
            18px
            13px;

        border-radius:
            15px;
    }


    .stay-information-heading h3 {
        font-size:
            1.58rem;
    }


    .stay-info-card {
        padding:
            11px;
    }


    .stay-info-card h4 {
        font-size:
            0.8rem;
    }


    .stay-info-card p {
        font-size:
            0.75rem;
    }


    .contact-map-card {
        padding:
            14px;

        border-radius:
            17px;
    }


    .contact-map-header h2 {
        font-size:
            1.48rem;
    }


    .contact-map {
        aspect-ratio:
            4 / 3.8;

        border-radius:
            13px;
    }


    .contact-map-note p {
        font-size:
            0.75rem;
    }

}


/* =========================================================
   31. VERY SMALL PHONES
   <= 375px
   ========================================================= */

@media (max-width: 375px) {

    .contact-hero {
        padding:
            108px
            0
            44px;
    }


    .contact-title {
        font-size:
            2.35rem;
    }


    .contact-hero-description {
        font-size:
            0.85rem;
    }


    .contact-container {
        gap:
            2.15rem;
    }


    .contact-section-title {
        font-size:
            2.15rem;
    }


    .contact-detail {
        min-height:
            61px;
    }


    .contact-detail-icon {
        width:
            32px;

        height:
            32px;

        font-size:
            0.68rem;
    }


    .contact-detail-content > span {
        font-size:
            0.7rem;
    }


    .contact-detail-content a {
        font-size:
            0.8rem;
    }


    .stay-information-heading h3 {
        font-size:
            1.45rem;
    }


    .stay-info-card h4 {
        font-size:
            0.8rem;
    }


    .stay-info-card p {
        font-size:
            0.75rem;
    }


    .contact-map-header h2 {
        font-size:
            1.38rem;
    }


    .contact-map-header p {
        font-size:
            0.55rem;
    }


    .contact-map-button {
        font-size:
            0.59rem;
    }

}


/* =========================================================
   32. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-detail,
    .contact-cta-button,
    .contact-cta-button
    .fa-arrow-right,
    .contact-map-button,
    .contact-links a {
        transition:
            none;
    }


    .contact-detail:hover,
    .contact-cta-button:hover,
    .contact-map-button:hover {
        transform:
            none;
    }

}
.contact-hero{
    padding-bottom: 50px !important;
}

.contact-section{
    padding-top: 50px !important;
}