/* =========================================================
   CONTACT PAGE ROOT
========================================================= */

.contact-page {
    background:
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #fbf7f2 45%,
            #fffdf9 100%
        );

    color: #241b1d;
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.contact-page .container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.contact-page a {
    text-decoration: none;
}

.contact-page button,
.contact-page input,
.contact-page textarea,
.contact-page select {
    font-family: inherit;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;

    padding:
        95px 0
        90px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(201, 164, 92, .13),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(126, 24, 36, .08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fffdf9,
            #f8f0e8
        );

    border-bottom:
        1px solid
        rgba(126, 24, 36, .08);
}

.contact-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -190px;

    border-radius: 50%;

    border:
        1px solid
        rgba(126, 24, 36, .08);

    pointer-events: none;
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -100px;
    bottom: -110px;

    border-radius: 50%;

    background:
        rgba(201, 164, 92, .07);

    pointer-events: none;
}

.contact-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}

.contact-eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: #8a1f2e;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .28em;

    text-transform: uppercase;
}

.contact-eyebrow::before {
    content: "";

    width: 32px;
    height: 1px;

    background: #c9a45c;
}

.contact-hero h1 {
    margin: 0;

    max-width: 800px;

    color: #241b1d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 1.02;

    letter-spacing: -2.5px;

    font-weight: 600;
}

.contact-hero h1 span {
    display: block;

    color: #8a1f2e;

    font-style: italic;
}

.contact-hero p {
    max-width: 650px;

    margin:
        28px 0 0;

    color: #756b61;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT MAIN SECTION
========================================================= */

.contact-section {
    padding:
        95px 0
        105px;
}

.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(0, 1.12fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   LEFT CONTACT INFORMATION
========================================================= */

.contact-info {
    position: sticky;

    top: 35px;
}

.contact-intro {
    max-width: 570px;

    margin-bottom: 38px;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 13px;

    color: #9a7042;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .24em;

    text-transform: uppercase;
}

.contact-intro h2 {
    margin: 0 0 17px;

    color: #241b1d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.3px;

    font-weight: 600;
}

.contact-intro p {
    margin: 0;

    color: #756b61;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: grid;

    gap: 12px;
}

.contact-detail-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 17px;

    min-height: 88px;

    padding: 17px 20px;

    background:
        rgba(255,255,255,.86);

    border:
        1px solid
        rgba(126, 24, 36, .09);

    border-radius: 17px;

    box-shadow:
        0 12px 35px
        rgba(50, 25, 15, .045);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;

    backdrop-filter: blur(12px);
}

.contact-detail-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(126, 24, 36, .18);

    box-shadow:
        0 20px 45px
        rgba(50, 25, 15, .09);
}

.contact-detail-icon {
    display: grid;

    place-items: center;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #fff4e8,
            #f8e8d7
        );

    color: #8a1f2e;

    font-size: 18px;

    font-weight: 700;

    box-shadow:
        inset 0 0 0 1px
        rgba(201,164,92,.14);
}

.contact-detail-card > div:last-child {
    min-width: 0;
}

.contact-detail-card span {
    display: block;

    margin-bottom: 4px;

    color: #a08062;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;
}

.contact-detail-card strong {
    display: block;

    color: #2b2021;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.35;

    overflow-wrap: anywhere;
}

.contact-detail-card small {
    display: block;

    margin-top: 3px;

    color: #91857d;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   TRUST BOX
========================================================= */

.contact-trust {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-top: 28px;

    padding:
        18px 20px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #fffaf3,
            #f9f1e7
        );

    border:
        1px solid
        rgba(201,164,92,.18);
}

.trust-mark {
    display: grid;

    place-items: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #8a1f2e;

    color: #fff;

    font-size: 14px;

    font-weight: 700;
}

.contact-trust strong {
    display: block;

    margin-bottom: 3px;

    color: #35282a;

    font-size: 13px;
}

.contact-trust p {
    margin: 0;

    color: #85766d;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    padding:
        34px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid
        rgba(126,24,36,.10);

    border-radius: 27px;

    box-shadow:
        0 30px 80px
        rgba(50,25,15,.09),
        0 4px 15px
        rgba(50,25,15,.035);

    overflow: hidden;

    backdrop-filter: blur(18px);
}

.contact-form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #7e1824,
            #c9a45c,
            #7e1824
        );
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    margin-bottom: 30px;
}

.form-number {
    display: grid;

    place-items: center;

    flex: 0 0 47px;

    width: 47px;
    height: 47px;

    border-radius: 14px;

    background:
        #7e1824;

    color: #fff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .05em;

    box-shadow:
        0 10px 24px
        rgba(126,24,36,.18);
}

.contact-form-header h2 {
    margin: 2px 0 7px;

    color: #292021;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 31px;

    line-height: 1.15;

    letter-spacing: -.7px;
}

.contact-form-header p {
    margin: 0;

    color: #8a7b73;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   ALERTS
========================================================= */

.contact-alert {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 22px;

    padding:
        13px 15px;

    border-radius: 13px;

    font-size: 12px;

    line-height: 1.5;
}

.contact-alert-error {
    color: #9f2921;

    background: #fff2f1;

    border:
        1px solid
        #f2cfcb;
}

.contact-alert-success {
    color: #226b43;

    background: #effaf3;

    border:
        1px solid
        #cce9d6;
}

.alert-icon {
    display: grid;

    place-items: center;

    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 800;

    background: currentColor;

    color: #fff;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    display: block;
}

.contact-form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.contact-field {
    min-width: 0;
}

.contact-field-full {
    margin-top: 20px;
}

.contact-field label {
    display: block;

    margin-bottom: 8px;

    color: #392d2d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .01em;
}

.contact-field label span {
    color: #a52f3f;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border:
        1px solid
        #e7ddd6;

    outline: none;

    background:
        #fffdfa;

    color: #302326;

    border-radius: 12px;

    font-size: 13px;

    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        transform .22s ease;
}

.contact-field input,
.contact-field select {
    height: 51px;

    padding:
        0 15px;
}

.contact-field textarea {
    min-height: 150px;

    padding:
        14px 15px;

    resize: vertical;

    line-height: 1.65;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #aaa09a;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
    border-color:
        #d6c4b8;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color:
        #b87953;

    background: #fff;

    box-shadow:
        0 0 0 4px
        rgba(184,121,83,.10);
}

.contact-field select {
    appearance: none;

    cursor: pointer;

    padding-right: 40px;

    background-image:
        linear-gradient(45deg, transparent 50%, #8a7469 50%),
        linear-gradient(135deg, #8a7469 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.field-helper {
    margin-top: 7px;

    color: #a09690;

    font-size: 10px;
}


/* =========================================================
   SUBMIT AREA
========================================================= */

.contact-submit-row {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;
}

.contact-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    min-width: 190px;

    min-height: 54px;

    padding:
        0 20px;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #7e1824,
            #9b2939
        );

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .02em;

    cursor: pointer;

    box-shadow:
        0 13px 28px
        rgba(126,24,36,.19);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-submit:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 18px 35px
        rgba(126,24,36,.26);
}

.contact-submit:active {
    transform:
        translateY(0);
}

.submit-arrow {
    display: grid;

    place-items: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.14);

    transition:
        transform .25s ease;
}

.contact-submit:hover .submit-arrow {
    transform:
        translateX(4px);
}

.contact-form-note {
    margin: 0;

    max-width: 270px;

    color: #92857e;

    font-size: 10px;

    line-height: 1.55;
}

.contact-form-note span {
    margin-right: 3px;
}


/* =========================================================
   BRANCHES SECTION
========================================================= */

.contact-branches-section {
    padding:
        100px 0;

    background:
        #f8f1e9;

    border-top:
        1px solid
        rgba(126,24,36,.06);

    border-bottom:
        1px solid
        rgba(126,24,36,.06);
}

.contact-branches-heading {
    max-width: 650px;

    margin-bottom: 45px;
}

.contact-branches-heading h2 {
    margin: 0 0 15px;

    color: #292021;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(35px, 4vw, 51px);

    line-height: 1.08;

    letter-spacing: -1.3px;
}

.contact-branches-heading h2 span {
    color: #8a1f2e;

    font-style: italic;
}

.contact-branches-heading p {
    margin: 0;

    max-width: 570px;

    color: #796d65;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   BRANCH GRID
========================================================= */

.contact-branches-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 14px;
}

.contact-branch-card {
    position: relative;

    min-height: 250px;

    display: flex;

    flex-direction: column;

    padding: 20px;

    background:
        rgba(255,255,255,.82);

    border:
        1px solid
        rgba(126,24,36,.09);

    border-radius: 20px;

    box-shadow:
        0 14px 40px
        rgba(50,25,15,.055);

    overflow: hidden;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.contact-branch-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(126,24,36,.16);

    box-shadow:
        0 24px 50px
        rgba(50,25,15,.10);
}

.branch-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 27px;
}

.branch-icon {
    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background:
        #fff3e8;

    color: #8a1f2e;

    font-size: 16px;
}

.branch-status {
    padding:
        5px 8px;

    border-radius: 999px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .09em;

    text-transform: uppercase;
}

.contact-branch-card.open .branch-status {
    color: #28744c;

    background:
        #edf8f1;
}

.contact-branch-card.coming-soon .branch-status {
    color: #9a6a2e;

    background:
        #fff4df;
}

.branch-card-content {
    flex: 1;
}

.branch-label {
    display: block;

    margin-bottom: 5px;

    color: #a28b78;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .2em;
}

.branch-card-content h3 {
    margin: 0 0 9px;
    color: #2c2223;
    font-family:
        "Playfair Display",
        Georgia,
        serif;
    font-size: 28px;
    line-height: 1.05;
}

.branch-card-content p {
    margin: 0;
    color: #85776f;
    font-size: 14px;
    line-height: 1.65;
}

.branch-call,
.branch-coming {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 14px;

    border-top:
        1px solid
        #eee3db;

    color: #7e1824;

    font-size: 10px;

    font-weight: 700;
}

.branch-call span {
    transition:
        transform .2s ease;
}

.branch-call:hover span {
    transform:
        translateX(4px);
}

.branch-coming {
    color: #a17848;
}


/* =========================================================
   WHATSAPP SECTION
========================================================= */

.contact-whatsapp-section {
    padding:
        85px 0 40px;
}

.contact-whatsapp-card {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        32px 35px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #4d1620,
            #7e1824
        );

    color: #fff;

    box-shadow:
        0 25px 55px
        rgba(80,20,30,.17);

    overflow: hidden;
}

.contact-whatsapp-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.10);
}

.contact-whatsapp-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    left: 35%;

    bottom: -130px;

    border-radius: 50%;

    background:
        rgba(201,164,92,.10);
}

.whatsapp-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 18px;
}

.whatsapp-icon {
    display: grid;

    place-items: center;

    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid
        rgba(255,255,255,.15);

    font-size: 20px;
}

.contact-whatsapp-card .section-kicker {
    margin-bottom: 7px;

    color: #dfbd83;
}

.contact-whatsapp-card h2 {
    margin: 0 0 6px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 28px;

    line-height: 1.1;
}

.contact-whatsapp-card p {
    margin: 0;

    color: rgba(255,255,255,.70);

    font-size: 11px;

    line-height: 1.6;
}

.whatsapp-button {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 17px;

    min-height: 50px;

    padding:
        0 19px;

    border-radius: 12px;

    background: #fff;

    color: #651024;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.12);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.whatsapp-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.18);
}


/* =========================================================
   QUICK ORDER CTA
========================================================= */

.contact-quick-section {
    padding:
        40px 0 100px;
}

.contact-quick-card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        35px 40px;

    background:
        linear-gradient(
            135deg,
            #fffaf4,
            #f7ede3
        );

    border:
        1px solid
        rgba(201,164,92,.20);

    border-radius: 24px;
}

.contact-quick-card h2 {
    margin: 5px 0 8px;

    color: #2c2223;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 29px;

    line-height: 1.15;
}

.contact-quick-card p {
    margin: 0;

    color: #81736b;

    font-size: 11px;

    line-height: 1.6;
}

.contact-quick-button {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    min-height: 50px;

    padding:
        0 19px;

    border-radius: 12px;

    background:
        #7e1824;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 12px 25px
        rgba(126,24,36,.16);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-quick-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 17px 32px
        rgba(126,24,36,.22);
}


/* =========================================================
   FORM VALIDATION ANIMATION
========================================================= */

.form-validation-shake {
    animation:
        contactShake .42s ease;
}

@keyframes contactShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-3px);
    }
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .contact-layout {
        grid-template-columns:
            minmax(0, .9fr)
            minmax(0, 1.1fr);

        gap: 42px;
    }

    .contact-branches-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .contact-hero {
        padding:
            75px 0;
    }

    .contact-section {
        padding:
            70px 0 80px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-info {
        position: static;
    }

    .contact-intro {
        max-width: 700px;
    }

    .contact-form-card {
        max-width: 760px;

        width: 100%;

        margin-inline: auto;
    }

    .contact-branches-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .contact-page .container {
        width:
            calc(100% - 28px);
    }

    .contact-hero {
        padding:
            62px 0 65px;
    }

    .contact-hero h1 {
        font-size:
            clamp(42px, 11vw, 58px);

        letter-spacing:
            -1.7px;
    }

    .contact-hero p {
        margin-top: 20px;

        font-size: 13px;
    }

    .contact-section {
        padding:
            58px 0 65px;
    }

    .contact-intro h2 {
        font-size: 37px;
    }

    .contact-form-card {
        padding:
            25px 20px;

        border-radius: 21px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .contact-field-full {
        margin-top: 17px;
    }

    .contact-submit-row {
        flex-direction: column;

        align-items: stretch;

        gap: 13px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-form-note {
        max-width: none;
    }

    .contact-branches-section {
        padding:
            70px 0;
    }

    .contact-branches-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 11px;
    }

    .contact-branch-card {
        min-height: 235px;

        padding: 17px;
    }

    .branch-card-content h3 {
        font-size: 25px;
    }

    .contact-whatsapp-section {
        padding:
            60px 0 30px;
    }

    .contact-whatsapp-card {
        align-items: flex-start;

        flex-direction: column;

        padding:
            27px 22px;
    }

    .whatsapp-button {
        width: 100%;

        justify-content: center;
    }

    .contact-quick-section {
        padding:
            30px 0 70px;
    }

    .contact-quick-card {
        align-items: flex-start;

        flex-direction: column;

        padding:
            27px 22px;
    }

    .contact-quick-button {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   RESPONSIVE — 480px
========================================================= */

@media (max-width: 480px) {

    .contact-page .container {
        width:
            calc(100% - 20px);
    }

    .contact-hero {
        padding:
            52px 0 55px;
    }

    .contact-eyebrow {
        font-size: 9px;

        letter-spacing: .20em;
    }

    .contact-hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .contact-hero p {
        font-size: 12px;

        line-height: 1.7;
    }

    .contact-section {
        padding:
            48px 0 55px;
    }

    .contact-intro h2 {
        font-size: 33px;
    }

    .contact-intro p {
        font-size: 12px;
    }

    .contact-detail-card {
        min-height: 80px;

        padding:
            14px;
    }

    .contact-detail-icon {
        flex-basis: 43px;

        width: 43px;
        height: 43px;

        border-radius: 12px;
    }

    .contact-detail-card strong {
        font-size: 13px;
    }

    .contact-detail-card small {
        font-size: 10px;
    }

    .contact-form-card {
        padding:
            23px 17px;

        border-radius: 18px;
    }

    .contact-form-header {
        gap: 12px;

        margin-bottom: 24px;
    }

    .form-number {
        flex-basis: 40px;

        width: 40px;
        height: 40px;

        border-radius: 11px;

        font-size: 11px;
    }

    .contact-form-header h2 {
        font-size: 26px;
    }

    .contact-form-header p {
        font-size: 11px;
    }

    .contact-field input,
    .contact-field select {
        height: 48px;
    }

    .contact-field textarea {
        min-height: 135px;
    }

    .contact-branches-heading h2 {
        font-size: 35px;
    }

    .contact-branches-grid {
        grid-template-columns: 1fr;
    }

    .contact-branch-card {
        min-height: auto;
    }

    .contact-whatsapp-card {
        border-radius: 19px;
    }

    .whatsapp-content {
        align-items: flex-start;
    }

    .whatsapp-icon {
        flex-basis: 46px;

        width: 46px;
        height: 46px;

        border-radius: 13px;
    }

    .contact-whatsapp-card h2 {
        font-size: 25px;
    }

    .contact-quick-card h2 {
        font-size: 25px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-page *,
    .contact-page *::before,
    .contact-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

}