/* =========================================================
   CONTACT — ORGANIZATION MAP

   1. Contact hero
   2. Contact information and enquiry form
   3. Map and immediate-support panel
   4. FAQ section
   5. Tablet and mobile overrides

   IMPORTANT: Source order is intentionally preserved because
   later responsive/final rules are part of the active cascade.
========================================================= */

/* ==================================
   CONTACT PAGE
=================================== */

.contact-page {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

/* ==================================
   CONTACT HERO SECTION
=================================== */

.contact-hero-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 540px;
    min-height: 540px;
    overflow: hidden;
    background-color: #030303;
}

/* ==================================
   HERO BACKGROUND
=================================== */

.contact-hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        saturate(0.8)
        brightness(0.55);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(0, 0, 0, 0.88) 36%,
            rgba(0, 0, 0, 0.48) 61%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.4) 100%
        );
}

/* ==================================
   HERO CONTAINER
=================================== */

.contact-hero-container {
    position: relative;
    z-index: 2;
    width: min(1250px, calc(100% - 120px));
    max-width: 1250px;
    height: 540px;
    min-height: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;
}

/* ==================================
   HERO CONTENT
=================================== */

.contact-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 550px;
    height: 100%;
    padding-top: 175px;
    opacity: 0;
    transform: translateX(-45px);
    will-change: transform, opacity;
}

/* ==================================
   HERO TITLE GROUP
=================================== */

.contact-title-group {
    width: 100%;
    display: grid;
    grid-template-columns: 4px minmax(0, 1fr);
    align-items: stretch;
    gap: 22px;
    transform: translateY(25px);
}

.contact-title-line {
    display: block;
    width: 4px;
    height: 202px;
    min-height: 202px;
    background-color: var(--aei-red, #e30613);
}

/* ==================================
   HERO TYPOGRAPHY
=================================== */

.contact-hero-title,
.contact-hero-red-title,
.contact-hero-subtitle {
    margin: 0;
    padding: 0;
    font-size: clamp(37px, 3.1vw, 48px);
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-hero-title,
.contact-hero-subtitle {
    color: #ffffff;
}

.contact-hero-red-title {
    margin-top: 5px;
    color: var(--aei-red, #e30613);
}

.contact-hero-subtitle {
    margin-top: 5px;
}

.contact-hero-description {
    max-width: 470px;
    margin: 20px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

/* ==================================
   PRODUCT IMAGE AREA
=================================== */

.contact-hero-product-area {
    position: relative;
    right: -20px;
    bottom: 18px;
    z-index: 3;
    align-self: stretch;
    width: 100%;
    height: 540px;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 45px 0 0;
    overflow: visible;
    pointer-events: none;
    opacity: 0;
    transform: translateX(48px);
    will-change: transform, opacity;
}

.contact-hero-product-image {
    display: block;
    width: 100%;
    max-width: 690px;
    height: 100%;
    max-height: 440px;
    object-fit: contain;
    object-position: right bottom;
    filter:
        brightness(0.68)
        saturate(0.78)
        contrast(0.94)
        drop-shadow(
            0 20px 22px rgba(0, 0, 0, 0.6)
        );
    transform-origin: right bottom;
    will-change: transform;
}

/* ==================================
   HERO ENTRANCE ANIMATION
=================================== */

.contact-hero-section.is-loaded .contact-hero-content,
.contact-hero-section.is-loaded .contact-hero-product-area {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.contact-hero-section.is-loaded
.contact-hero-product-area {
    transition-delay: 0.12s;
}

/* ==================================
   SMALL DESKTOP
=================================== */

@media screen and (max-width: 1199px) {
    .contact-hero-container {
        width: min(100% - 70px, 1120px);
        grid-template-columns: 47% 53%;
    }

    .contact-hero-content {
        max-width: 520px;
        padding-top: 165px;
    }

    .contact-hero-product-area {
        right: -15px;
    }

    .contact-hero-product-image {
        max-width: 620px;
        max-height: 430px;
    }
}

/* ==================================
   TABLET
=================================== */

@media screen and (max-width: 991px) {
    .contact-hero-section,
    .contact-hero-container,
    .contact-hero-product-area {
        height: 470px;
        min-height: 470px;
    }

    .contact-hero-container {
        width: min(100% - 45px, 900px);
        grid-template-columns: 48% 52%;
    }

    .contact-hero-content {
        max-width: 470px;
        padding-top: 135px;
    }

    .contact-title-group {
        gap: 18px;
        transform: translateY(22px);
    }

    .contact-title-line {
        height: 190px;
        min-height: 190px;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: clamp(32px, 4.2vw, 42px);
    }

    .contact-hero-description {
        max-width: 400px;
        font-size: 13px;
    }

    .contact-hero-product-area {
        right: -10px;
        padding-top: 48px;
    }

    .contact-hero-product-image {
        max-width: 540px;
        max-height: 400px;
    }
}

/* ==================================
   MOBILE
=================================== */

@media screen and (max-width: 767px) {
    .contact-hero-section,
    .contact-hero-container,
    .contact-hero-product-area {
        height: 390px;
        min-height: 390px;
    }

    .contact-hero-container {
        width: calc(100% - 26px);
        grid-template-columns: 55% 45%;
    }

    .contact-hero-background {
        object-position: 58% center;
    }

    .contact-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.97) 0%,
                rgba(0, 0, 0, 0.86) 50%,
                rgba(0, 0, 0, 0.32) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.05) 0%,
                rgba(0, 0, 0, 0.42) 100%
            );
    }

    .contact-hero-content {
        max-width: none;
        padding-top: 92px;
    }

    .contact-title-group {
        grid-template-columns: 3px minmax(0, 1fr);
        gap: 10px;
        transform: translateY(22px);
    }

    .contact-title-line {
        width: 3px;
        height: 145px;
        min-height: 145px;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: clamp(21px, 5.8vw, 30px);
        line-height: 1.03;
        letter-spacing: -0.5px;
        white-space: normal;
    }

    .contact-hero-red-title,
    .contact-hero-subtitle {
        margin-top: 4px;
    }

    .contact-hero-description {
        max-width: 245px;
        margin-top: 13px;
        font-size: 10px;
        line-height: 1.45;
    }

    .contact-hero-product-area {
        right: -15px;
        bottom: 10px;
        padding: 50px 0 0;
    }

    .contact-hero-product-image {
        max-width: 350px;
        max-height: 320px;
        object-position: right bottom;
    }
}

/* ==================================
   SMALL MOBILE
=================================== */

@media screen and (max-width: 480px) {
    .contact-hero-section,
    .contact-hero-container,
    .contact-hero-product-area {
        height: 350px;
        min-height: 350px;
    }

    .contact-hero-container {
        width: calc(100% - 20px);
        grid-template-columns: 57% 43%;
    }

    .contact-hero-content {
        padding-top: 80px;
    }

    .contact-title-group {
        gap: 8px;
        transform: translateY(19px);
    }

    .contact-title-line {
        height: 132px;
        min-height: 132px;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: clamp(18px, 5.6vw, 25px);
    }

    .contact-hero-description {
        max-width: 210px;
        margin-top: 11px;
        font-size: 9px;
        line-height: 1.4;
    }

    .contact-hero-product-area {
        right: -13px;
        padding-top: 55px;
    }

    .contact-hero-product-image {
        max-height: 280px;
    }
}

/* ==================================
   EXTRA SMALL MOBILE
=================================== */

@media screen and (max-width: 380px) {
    .contact-hero-container {
        width: calc(100% - 16px);
        grid-template-columns: 59% 41%;
    }

    .contact-title-group {
        gap: 7px;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-hero-description {
        max-width: 190px;
        font-size: 8px;
    }

    .contact-hero-product-area {
        right: -12px;
    }
}

/* ==================================
   REDUCED MOTION
=================================== */

@media (prefers-reduced-motion: reduce) {
    .contact-hero-content,
    .contact-hero-product-area {
        opacity: 1;
        transform: none;
        transition: none !important;
        will-change: auto;
    }

    .contact-hero-product-image {
        transform: none !important;
        animation: none !important;
        will-change: auto;
    }
}

/* =========================================
   CONTACT INFORMATION SECTION
========================================= */

.contact-information-section {
    position: relative;
    width: 100%;
    padding: 75px 0 85px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f7f7 100%
        );
}

/* =========================================
   SECTION CONTAINER
   SAME WIDTH AS CONTACT HERO
========================================= */

.contact-information-container {
    position: relative;
    z-index: 2;
    width: min(1250px, calc(100% - 120px));
    max-width: 1250px;
    min-height: 690px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 51% 49%;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}

/* =========================================
   ACCESSIBILITY
========================================= */

.contact-information-section .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================
   LEFT FORM PANEL
========================================= */

.contact-form-panel {
    position: relative;
    isolation: isolate;
    min-width: 0;
    overflow: hidden;
    background-color: #620003;
}

/* =========================================
   FORM BACKGROUND IMAGE
========================================= */

.contact-form-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter:
        grayscale(12%)
        brightness(0.52)
        contrast(1.06);
    transform: scale(1.03);
}

/* =========================================
   RED BACKGROUND OVERLAY
========================================= */

.contact-form-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            135deg,
            rgba(82, 0, 3, 0.87) 0%,
            rgba(137, 0, 7, 0.76) 52%,
            rgba(52, 0, 2, 0.89) 100%
        );
}

/* =========================================
   FORM CONTENT
========================================= */

.contact-form-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 44px 52px;
}

/* =========================================
   SMALL SECTION LABELS
========================================= */

.contact-section-label {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 23px;
    color: var(--aei-red, #e30613);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.contact-section-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 2px;
    background-color: currentColor;
    transform: translateY(-50%);
}

.contact-form-panel .contact-section-label {
    color: #ff2732;
}

/* =========================================
   FORM HEADING
========================================= */

.contact-form-title {
    margin: 0 0 27px;
    color: #ffffff;
    font-size: clamp(34px, 2.8vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-message-form {
    width: 100%;
}

.contact-form-field {
    width: 100%;
    margin-bottom: 14px;
}

/* =========================================
   INPUTS AND TEXTAREA
========================================= */

.contact-form-field input,
.contact-form-field textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 2px;
    outline: none;
    background-color: rgba(20, 0, 1, 0.2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-form-field input {
    height: 47px;
    padding: 0 16px;
}

.contact-form-field textarea {
    min-height: 132px;
    padding: 14px 16px;
    line-height: 1.5;
    resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.88);
    opacity: 1;
}

.contact-form-field input:hover,
.contact-form-field textarea:hover {
    border-color: rgba(255, 255, 255, 0.78);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-color: #ffffff;
    background-color: rgba(0, 0, 0, 0.28);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.08);
}

/* =========================================
   RIGHT DETAILS PANEL
========================================= */

.contact-details-panel {
    position: relative;
    min-width: 0;
    padding: 62px 50px 50px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 70%,
            #fafafa 100%
        );
}

.contact-details-panel::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -85px;
    width: 210px;
    height: 210px;
    border: 30px solid rgba(227, 6, 19, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

/* =========================================
   DETAILS HEADING
========================================= */

.contact-details-title {
    position: relative;
    margin: 0 0 16px;
    padding-bottom: 15px;
    color: #111111;
    font-size: clamp(37px, 3vw, 45px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -1.2px;
}

.contact-details-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: var(--aei-red, #e30613);
}

/* =========================================
   DETAILS INTRODUCTION
========================================= */

.contact-details-introduction {
    max-width: 470px;
    margin: 0 0 34px;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

/* =========================================
   CONTACT DETAILS LIST
========================================= */

.contact-details-list {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-detail-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    margin-bottom: 21px;
    padding: 10px 12px 10px 0;
    border-radius: 4px;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.contact-detail-item:hover {
    background-color: #fff5f5;
    transform: translateX(5px);
}

/* =========================================
   CONTACT DETAIL ICON
========================================= */

.contact-detail-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(227, 6, 19, 0.2);
    border-radius: 50%;
    background-color: #fff4f4;
    color: var(--aei-red, #e30613);
    font-size: 17px;
    line-height: 1;
}

/* =========================================
   CONTACT DETAIL CONTENT
========================================= */

.contact-detail-content {
    min-width: 0;
}

.contact-detail-content h3 {
    margin: 0 0 5px;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.contact-detail-content p,
.contact-detail-content address {
    margin: 0;
    color: #3c3c3c;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
}

.contact-detail-content a {
    color: inherit;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-detail-content a:hover {
    color: var(--aei-red, #e30613);
}

/* =========================================
   SOCIAL LINKS
========================================= */

.contact-social-area {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
}

.contact-social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.contact-social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111111;
    border-radius: 50%;
    background-color: #111111;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-social-links a:hover {
    border-color: var(--aei-red, #e30613);
    background-color: var(--aei-red, #e30613);
    transform: translateY(-3px);
    box-shadow:
        0 7px 15px rgba(227, 6, 19, 0.22);
}

/* =========================================
   SMALL DESKTOP
========================================= */

@media screen and (max-width: 1199px) {
    .contact-information-container {
        width: min(100% - 70px, 1120px);
        grid-template-columns: 51% 49%;
    }

    .contact-form-content {
        padding: 45px 36px 48px;
    }

    .contact-details-panel {
        padding: 58px 40px 46px;
    }

    .contact-form-title {
        font-size: 36px;
    }

    .contact-details-title {
        font-size: 40px;
    }
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 991px) {
    .contact-information-section {
        padding: 58px 0 68px;
    }

    .contact-information-container {
        width: min(100% - 45px, 900px);
        grid-template-columns: 50% 50%;
    }

    .contact-form-content {
        padding: 42px 30px 46px;
    }

    .contact-details-panel {
        padding: 53px 32px 43px;
    }

    .contact-form-title {
        font-size: 32px;
    }

    .contact-details-title {
        font-size: 36px;
    }

    .contact-details-introduction {
        font-size: 13px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 767px) {
    .contact-information-section {
        padding: 45px 0 55px;
    }

    .contact-information-container {
        width: calc(100% - 26px);
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .contact-form-content {
        padding: 37px 25px 42px;
    }

    .contact-form-title {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .contact-form-field input {
        height: 45px;
    }

    .contact-form-field textarea {
        min-height: 125px;
    }

    .contact-submit-button {
        width: 100%;
    }

    .contact-details-panel {
        padding: 43px 25px 42px;
    }

    .contact-details-title {
        font-size: 35px;
    }

    .contact-details-introduction {
        margin-bottom: 29px;
        font-size: 13px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {
    .contact-information-container {
        width: calc(100% - 20px);
    }

    .contact-form-content,
    .contact-details-panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .contact-form-title {
        font-size: 27px;
    }

    .contact-details-title {
        font-size: 31px;
    }

    .contact-detail-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .contact-detail-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .contact-social-links {
        gap: 13px;
    }
}

/* =========================================
   CAPTCHA AND SUBMIT BUTTON — ENHANCED
========================================= */

.g-recaptcha {
    width: 304px;
    max-width: 100%;
    margin: 20px 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.2);
}

.g-recaptcha > div {
    margin: 0 !important;
}

.contact-submit-button {
    position: relative;
    width: 304px;
    max-width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background:
        linear-gradient(
            135deg,
            #ff202c 0%,
            #ed0815 55%,
            #d9000c 100%
        );
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        0 10px 24px rgba(110, 0, 5, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.contact-submit-button span,
.contact-submit-button i {
    position: relative;
    z-index: 2;
}

.contact-submit-button i {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.contact-submit-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(110, 0, 5, 0.42);
}

.contact-submit-button:hover::before {
    left: 150%;
}

.contact-submit-button:hover i {
    transform: translateX(5px);
}

/* Mobile */

@media screen and (max-width: 480px) {
    .g-recaptcha {
        width: 304px;
        transform: scale(0.89);
        transform-origin: left top;
        margin-bottom: -2px;
    }

    .contact-submit-button {
        width: 100%;
        min-height: 50px;
    }
}

/* =========================================
   CONTACT MAP SECTION
========================================= */

.contact-map-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

/* =========================================
   MAP CONTAINER
========================================= */

.contact-map-container {
    position: relative;
    width: min(1250px, calc(100% - 120px));
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(237, 17, 31, 0.85);
    border-radius: 6px;
    background-color: #eeeeee;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Red upper accent */

.contact-map-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 2px;
    background-color: var(--aei-red, #ed111f);
    pointer-events: none;
}

/* =========================================
   GOOGLE MAP
========================================= */

.contact-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   SMALL DESKTOP
========================================= */

@media screen and (max-width: 1199px) {
    .contact-map-section {
        padding: 0;
    }

    .contact-map-container {
        width: min(1120px, calc(100% - 70px));
        height: 460px;
    }
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 991px) {
    .contact-map-section {
        padding: 0;
    }

    .contact-map-container {
        width: min(900px, calc(100% - 45px));
        height: 420px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 767px) {
    .contact-map-section {
        padding: 0;
    }

    .contact-map-container {
        width: calc(100% - 26px);
        height: 350px;
        border-radius: 5px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {
    .contact-map-section {
        padding: 0;
    }

    .contact-map-container {
        width: calc(100% - 20px);
        height: 310px;
    }
}

/* =========================================
   IMMEDIATE SUPPORT SECTION
========================================= */

.contact-support-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 42px;
    overflow: hidden;
    background-color: #ffffff;
}

@media screen and (min-width: 992px) {
    .contact-support-section {
        padding-top: 16px;
    }
}

/* =========================================
   SUPPORT CONTAINER
========================================= */

.contact-support-container {
    position: relative;
    isolation: isolate;
    width: min(1250px, calc(100% - 120px));
    min-height: 155px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 230px;
    align-items: center;
    gap: 30px;
    padding: 28px 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background:
        linear-gradient(
            105deg,
            #050606 0%,
            #09090a 42%,
            #300609 70%,
            #8e000c 100%
        );
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.contact-support-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top red accent */

.contact-support-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            #ed111f 0%,
            rgba(237, 17, 31, 0.5) 50%,
            transparent 100%
        );
}

/* Decorative glow */

.contact-support-container::after {
    content: "";
    position: absolute;
    top: -170px;
    right: 110px;
    z-index: -1;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background-color: rgba(237, 17, 31, 0.12);
    filter: blur(45px);
    pointer-events: none;
}

/* =========================================
   SUPPORT ICON
========================================= */

.contact-support-icon {
    position: relative;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(237, 17, 31, 0.46);
    border-radius: 50%;
    color: var(--aei-red, #ed111f);
    background:
        radial-gradient(
            circle,
            rgba(237, 17, 31, 0.13) 0%,
            rgba(237, 17, 31, 0.03) 70%
        );
    box-shadow:
        inset 0 0 20px rgba(237, 17, 31, 0.08),
        0 8px 22px rgba(0, 0, 0, 0.2);
}

.contact-support-icon::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px dashed rgba(237, 17, 31, 0.25);
    border-radius: 50%;
}

.contact-support-icon i {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 45px;
    line-height: 1;
}

/* =========================================
   SUPPORT CONTENT
========================================= */

.contact-support-content {
    position: relative;
    min-width: 0;
    padding-left: 25px;
    color: #ffffff;
}

.contact-support-content::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 3px;
    border-radius: 10px;
    background-color: var(--aei-red, #ed111f);
}

.contact-support-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(23px, 2vw, 29px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.45px;
}

.contact-support-content p {
    max-width: 560px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

/* =========================================
   SUPPORT ACTION
========================================= */

.contact-support-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
}

/* Call button */

.contact-support-button {
    position: relative;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #ff2835 0%,
            #ed111f 100%
        );
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2px;
    text-decoration: none;
    box-shadow:
        0 9px 24px rgba(237, 17, 31, 0.32);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-support-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    width: 55%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.contact-support-button:hover::before {
    left: 135%;
}

.contact-support-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 13px 28px rgba(237, 17, 31, 0.45);
}

.contact-support-button i,
.contact-support-button span {
    position: relative;
    z-index: 2;
}

.contact-support-button i {
    font-size: 15px;
}

/* Phone number */

.contact-support-number {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-support-number:hover {
    color: #ff3641;
}

/* =========================================
   SMALL DESKTOP
========================================= */

@media screen and (max-width: 1199px) {
    .contact-support-container {
        width: min(1120px, calc(100% - 70px));
        grid-template-columns: 90px minmax(0, 1fr) 210px;
        gap: 25px;
        padding: 27px 34px;
    }
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 991px) {
    .contact-support-section {
        padding-bottom: 34px;
    }

    .contact-support-container {
        width: min(900px, calc(100% - 45px));
        grid-template-columns: 72px minmax(0, 1fr) 185px;
        gap: 20px;
        padding: 25px;
    }

    .contact-support-icon {
        width: 68px;
        height: 68px;
    }

    .contact-support-icon i {
        font-size: 37px;
    }

    .contact-support-content {
        padding-left: 19px;
    }

    .contact-support-content h2 {
        font-size: 22px;
    }

    .contact-support-content p {
        font-size: 13px;
    }

    .contact-support-button {
        padding: 11px 16px;
        font-size: 13px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 767px) {
    .contact-support-section {
        padding-top: 16px;
        padding-bottom: 26px;
    }

    .contact-support-container {
        width: calc(100% - 26px);
        min-height: 0;
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 17px;
        row-gap: 9px;
        padding: 15px 20px;
    }

    .contact-support-icon {
        width: 58px;
        height: 58px;
        align-self: start;
    }

    .contact-support-icon i {
        font-size: 31px;
    }

    .contact-support-content {
        padding-left: 16px;
    }

    .contact-support-content h2 {
        font-size: 20px;
    }

    .contact-support-content p {
        font-size: 13px;
    }

    .contact-support-content p br {
        display: none;
    }

    .contact-support-action {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0;
    }

    .contact-support-button {
        width: 100%;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {
    .contact-support-section {
        padding-bottom: 20px;
    }

    .contact-support-container {
        width: calc(100% - 20px);
        grid-template-columns: 51px minmax(0, 1fr);
        column-gap: 13px;
        row-gap: 9px;
        padding: 15px;
    }

    .contact-support-icon {
        width: 49px;
        height: 49px;
    }

    .contact-support-icon i {
        font-size: 27px;
    }

    .contact-support-content {
        padding-left: 13px;
    }

    .contact-support-content h2 {
        font-size: 18px;
    }

    .contact-support-content p {
        margin-top: 7px;
        font-size: 12px;
    }

    .contact-support-number {
        font-size: 14px;
    }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
    .contact-support-container {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .contact-support-button {
        transition: none;
    }
}

/* =========================================
   CONTACT FAQ SECTION
========================================= */

.contact-faq-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 38px 0 42px;
    overflow: hidden;
    border-bottom: 3px solid var(--aei-red, #ed111f);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafafa 100%
        );
}

/* Background decoration */

.contact-faq-section::before {
    content: "";
    position: absolute;
    top: -135px;
    right: -115px;
    width: 300px;
    height: 300px;
    border: 52px solid rgba(237, 17, 31, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

/* =========================================
   FAQ CONTAINER
========================================= */

.contact-faq-container {
    position: relative;
    z-index: 2;
    width: min(1250px, calc(100% - 120px));
    margin: 0 auto;
}

/* =========================================
   SECTION HEADING
========================================= */

.contact-faq-heading {
    max-width: 650px;
    margin: 0 auto 25px;
    text-align: center;
}

.contact-faq-heading > span {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--aei-red, #ed111f);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-faq-heading h2 {
    margin: 0;
    color: #090909;
    font-size: clamp(25px, 2.3vw, 34px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

.contact-faq-heading h2::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin: 10px auto 0;
    background-color: var(--aei-red, #ed111f);
}

.contact-faq-heading p {
    max-width: 550px;
    margin: 10px auto 0;
    color: #5b5b5b;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.5;
}

/* =========================================
   FAQ GRID
========================================= */

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

/* =========================================
   FAQ CARD
========================================= */

.contact-faq-card {
    position: relative;
    min-height: 190px;
    margin: 0;
    padding: 21px 19px 19px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.045);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-faq-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Upper red line */

.contact-faq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            #ed111f,
            #ff4a54
        );
    transition: width 0.35s ease;
}

/* Bottom glow */

.contact-faq-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(237, 17, 31, 0.035);
    transition: transform 0.35s ease;
    pointer-events: none;
}

.contact-faq-card:hover {
    border-color: rgba(237, 17, 31, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.085);
}

.contact-faq-card:hover::before {
    width: 100%;
}

.contact-faq-card:hover::after {
    transform: scale(1.3);
}

/* Card number */

.contact-faq-number {
    position: absolute;
    top: 15px;
    right: 16px;
    color: rgba(237, 17, 31, 0.11);
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
}

/* =========================================
   FAQ ICON
========================================= */

.contact-faq-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(237, 17, 31, 0.23);
    border-radius: 50%;
    color: var(--aei-red, #ed111f);
    background-color: rgba(237, 17, 31, 0.045);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-faq-icon i {
    font-size: 18px;
    line-height: 1;
}

.contact-faq-card:hover .contact-faq-icon {
    color: #ffffff;
    background-color: var(--aei-red, #ed111f);
    transform: rotate(-6deg) scale(1.05);
    box-shadow:
        0 7px 16px rgba(237, 17, 31, 0.25);
}

/* =========================================
   FAQ TYPOGRAPHY
========================================= */

.contact-faq-card h3 {
    position: relative;
    z-index: 2;
    max-width: 205px;
    margin: 0;
    color: #101010;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.contact-faq-card p {
    position: relative;
    z-index: 2;
    margin: 8px 0 0;
    color: #626262;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.5;
}

/* =========================================
   SMALL DESKTOP
========================================= */

@media screen and (max-width: 1199px) {
    .contact-faq-container {
        width: min(1120px, calc(100% - 70px));
    }

    .contact-faq-card {
        padding-right: 17px;
        padding-left: 17px;
    }
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 991px) {
    .contact-faq-section {
        padding: 34px 0 38px;
    }

    .contact-faq-container {
        width: min(900px, calc(100% - 45px));
    }

    .contact-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-faq-card {
        min-height: 175px;
        padding: 20px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 767px) {
    .contact-faq-section {
        padding: 26px 0 28px;
    }

    .contact-faq-container {
        width: calc(100% - 26px);
    }

    .contact-faq-heading {
        margin-bottom: 18px;
    }

    .contact-faq-heading > span {
        margin-bottom: 3px;
        font-size: 7px;
    }

    .contact-faq-heading h2 {
        font-size: 17px;
        line-height: 1;
    }

    .contact-faq-heading h2::after {
        width: 28px;
        height: 2px;
        margin-top: 7px;
    }

    .contact-faq-heading p {
        max-width: 360px;
        margin-top: 7px;
        font-size: 8px;
        line-height: 1.4;
    }

    .contact-faq-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .contact-faq-card {
        min-width: 0;
        min-height: 133px;
        padding: 13px 10px 11px;
    }

    .contact-faq-number {
        top: 10px;
        right: 8px;
        font-size: 20px;
    }

    .contact-faq-icon {
        width: 27px;
        height: 27px;
        margin-bottom: 8px;
    }

    .contact-faq-icon i {
        font-size: 11px;
    }

    .contact-faq-card h3 {
        max-width: 100%;
        font-size: 9px;
        line-height: 1.2;
    }

    .contact-faq-card p {
        margin-top: 5px;
        font-size: 7.5px;
        line-height: 1.35;
    }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
    .contact-faq-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media screen and (max-width: 900px) {

    .contact-information-section {
        padding: 24px 0 34px !important;
    }

    .contact-information-container {
        width: calc(100% - 24px) !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        border-radius: 8px !important;
    }

    /* FORM */

    .contact-form-content {
        padding: 26px 20px 28px !important;
    }

    .contact-section-label {
        margin-bottom: 8px !important;
        padding-left: 20px !important;
        font-size: 9px !important;
    }

    .contact-form-title {
        margin-bottom: 20px !important;
        font-size: 26px !important;
        line-height: 1.05 !important;
        letter-spacing: -0.5px !important;
    }

    .contact-message-form {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .contact-form-field {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .contact-form-field:nth-child(5) {
        grid-column: 1 / -1 !important;
    }

    .contact-form-field input {
        height: 42px !important;
        padding: 0 13px !important;
        font-size: 12px !important;
    }

    .contact-form-field textarea {
        min-height: 90px !important;
        padding: 12px 13px !important;
        font-size: 12px !important;
        resize: none !important;
    }

    .contact-message-form .g-recaptcha {
        grid-column: 1 / -1 !important;
        margin: 13px 0 !important;
        transform: scale(0.88) !important;
        transform-origin: left top !important;
    }

    .contact-submit-button {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-height: 44px !important;
        margin-top: 0 !important;
        font-size: 11px !important;
    }

    /* GET IN TOUCH */

    .contact-details-panel {
        padding: 27px 20px 29px !important;
    }

    .contact-details-title {
        margin-bottom: 12px !important;
        padding-bottom: 11px !important;
        font-size: 28px !important;
        line-height: 1 !important;
    }

    .contact-details-title::after {
        width: 38px !important;
        height: 2px !important;
    }

    .contact-details-introduction {
        margin-bottom: 18px !important;
        font-size: 11.5px !important;
        line-height: 1.5 !important;
    }

    .contact-details-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .contact-detail-item {
        min-width: 0 !important;
        min-height: 92px !important;
        display: block !important;
        margin: 0 !important;
        padding: 12px !important;
        border: 1px solid #eeeeee !important;
        border-radius: 6px !important;
        background-color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    }

    .contact-detail-icon {
        width: 29px !important;
        height: 29px !important;
        margin-bottom: 8px !important;
        font-size: 12px !important;
    }

    .contact-detail-content h3 {
        margin-bottom: 4px !important;
        font-size: 11px !important;
    }

    .contact-detail-content p,
    .contact-detail-content address {
        font-size: 9px !important;
        line-height: 1.45 !important;
        overflow-wrap: anywhere !important;
    }

    .contact-social-area {
        margin-top: 18px !important;
        padding-top: 15px !important;
    }

    .contact-social-links {
        margin-top: 11px !important;
    }
}
@media screen and (max-width: 767px) {
    .contact-hero-section,
    .contact-hero-container {
        height: 220px !important;
        min-height: 200px !important;
    }
}
@media screen and (max-width: 767px) {
    .contact-hero-content {
        width: 46% !important;
        max-width: 210px !important;
        top: -50px !important;
    }

    .contact-title-group {
        grid-template-columns: 3px minmax(0, 1fr) !important;
        gap: 9px !important;
    }

    .contact-title-line {
        width: 3px !important;
        height: 88px !important;
        min-height: 88px !important;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: 18px !important;
        line-height: 1 !important;
        letter-spacing: -0.3px !important;
        white-space: nowrap !important;
    }

    .contact-hero-description {
        max-width: 175px !important;
        margin-top: 6px !important;
        font-size: 7px !important;
        line-height: 1.35 !important;
    }
}
@media screen and (max-width: 767px) {
    .contact-hero-product-area {
        right: 12px !important;
        bottom: 200px !important;
    }
}
@media screen and (max-width: 767px) {
    .contact-hero-product-image {
        scale: 1.08 !important;
        transform-origin: right bottom !important;
    }
}
/* =========================================
   PAGE CONTAINER WIDTH SYSTEM
========================================= */

:is(main .container,.contact-hero-container,.contact-information-container,.contact-map-container,.contact-support-container,.contact-faq-container) {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
}

.contact-map-container {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

@media (min-width: 576px) {
    :is(main .container,.contact-hero-container,.contact-information-container,.contact-map-container,.contact-support-container,.contact-faq-container) { max-width: 540px !important; }
}

@media (min-width: 768px) {
    :is(main .container,.contact-hero-container,.contact-information-container,.contact-map-container,.contact-support-container,.contact-faq-container) { max-width: 720px !important; }
}

@media (min-width: 992px) {
    :is(main .container,.contact-hero-container,.contact-information-container,.contact-map-container,.contact-support-container,.contact-faq-container) { max-width: 960px !important; }
}

@media (min-width: 1200px) {
    :is(main .container,.contact-hero-container,.contact-information-container,.contact-map-container,.contact-support-container,.contact-faq-container) { max-width: 1140px !important; }
}

@media (min-width: 1400px) {
    :is(main .container,.contact-hero-container,.contact-information-container,.contact-map-container,.contact-support-container,.contact-faq-container) { max-width: 1320px !important; }
}
/* =========================================
   CONTACT FAQ — 2 CARD MOBILE SLIDER
========================================= */

@media screen and (max-width: 480px) {

    .contact-faq-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 8px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .contact-faq-grid::-webkit-scrollbar {
        display: none !important;
    }

    .contact-faq-card {
        flex: 0 0 calc((100% - 8px) / 2) !important;
        width: calc((100% - 8px) / 2) !important;
        min-width: calc((100% - 8px) / 2) !important;
        max-width: calc((100% - 8px) / 2) !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
    }

    .contact-faq-slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 13px;
    }

    .contact-faq-slider-dot {
        width: 6px;
        height: 6px;
        padding: 0;
        border: 0;
        border-radius: 50px;
        background: #cfd3db;
        transition: 0.25s ease;
    }

    .contact-faq-slider-dot.is-active {
        width: 20px;
        background: var(--aei-red, #ed111f);
    }
}
/* =========================================
   IMMEDIATE SUPPORT — COMPACT MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .contact-support-section {
        padding: 10px 0 16px !important;
    }

    .contact-support-container {
        box-sizing: border-box !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        min-height: 0 !important;
        margin-right: auto !important;
        margin-left: auto !important;
        grid-template-columns: 42px minmax(0, 1fr) !important;
        column-gap: 10px !important;
        row-gap: 6px !important;
        padding: 10px 12px !important;
    }

    .contact-support-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .contact-support-icon i {
        font-size: 21px !important;
    }

    .contact-support-content {
        padding-left: 10px !important;
    }

    .contact-support-content h2 {
        font-size: 15px !important;
        line-height: 1.1 !important;
    }

    .contact-support-content p {
        margin-top: 4px !important;
        font-size: 9px !important;
        line-height: 1.35 !important;
    }

    .contact-support-action {
        row-gap: 5px !important;
    }

    .contact-support-button {
        min-height: 36px !important;
        padding: 7px 12px !important;
        font-size: 10px !important;
    }

    .contact-support-button i {
        font-size: 12px !important;
    }

    .contact-support-number {
        font-size: 9px !important;
    }
}
/* =========================================
   CONTACT MAP — COMPACT MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .contact-map-section {
        box-sizing: border-box !important;
        width: 100% !important;
        padding: 0 0 18px !important;
    }

    .contact-map-container {
        box-sizing: border-box !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        height: 240px !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding: 0 !important;
    }

    .contact-map-frame {
        width: 100% !important;
        height: 100% !important;
    }

    .contact-support-section {
        padding-top: 8px !important;
    }
}
/* =========================================
   CONTACT INFORMATION — COMPACT MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .contact-information-section {
        padding: 16px 0 22px !important;
    }

    .contact-information-container {
        box-sizing: border-box !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    /* CONTACT FORM */

    .contact-form-content {
        padding: 18px 14px 20px !important;
    }

    .contact-section-label {
        margin-bottom: 5px !important;
        padding-left: 16px !important;
        font-size: 7px !important;
    }

    .contact-form-title {
        margin-bottom: 14px !important;
        font-size: 22px !important;
        line-height: 1.03 !important;
    }

    .contact-message-form {
        gap: 7px !important;
    }

    .contact-form-field {
        margin-bottom: 0 !important;
    }

    .contact-form-field input {
        height: 36px !important;
        padding: 0 10px !important;
        font-size: 10px !important;
    }

    .contact-form-field textarea {
        min-height: 70px !important;
        height: 70px !important;
        padding: 10px !important;
        font-size: 10px !important;
    }

    .contact-message-form .g-recaptcha {
        height: 62px !important;
        margin: 7px 0 !important;
        transform: scale(0.8) !important;
        transform-origin: left top !important;
    }

    .contact-submit-button {
        min-height: 38px !important;
        font-size: 9px !important;
    }

    /* GET IN TOUCH */

    .contact-details-panel {
        padding: 20px 14px 21px !important;
    }

    .contact-details-title {
        margin-bottom: 9px !important;
        padding-bottom: 9px !important;
        font-size: 24px !important;
    }

    .contact-details-introduction {
        margin-bottom: 12px !important;
        font-size: 10px !important;
        line-height: 1.4 !important;
    }

    .contact-details-list {
        gap: 7px !important;
    }

    .contact-detail-item {
        min-height: 78px !important;
        padding: 9px !important;
    }

    .contact-detail-icon {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 5px !important;
        font-size: 10px !important;
    }

    .contact-detail-content h3 {
        margin-bottom: 3px !important;
        font-size: 9px !important;
    }

    .contact-detail-content p,
    .contact-detail-content address {
        font-size: 7.5px !important;
        line-height: 1.35 !important;
    }

    .contact-social-area {
        margin-top: 12px !important;
        padding-top: 10px !important;
    }

    .contact-social-links {
        gap: 9px !important;
        margin-top: 8px !important;
    }

    .contact-social-links a {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
}
/* =========================================
   CONTACT HERO — MOBILE HEIGHT
========================================= */

@media screen and (max-width: 480px) {

    .contact-hero-section,
    .contact-hero-container {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }
}
/* =========================================
   CONTACT HERO CONTENT — SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .contact-hero-content {
        width: 40% !important;
        max-width: 165px !important;
    }

    .contact-title-group {
        grid-template-columns: 2px minmax(0, 1fr) !important;
        gap: 7px !important;
    }

    .contact-title-line {
        width: 2px !important;
        height: 70px !important;
        min-height: 70px !important;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: 14px !important;
        line-height: 1 !important;
        letter-spacing: -0.2px !important;
    }

    .contact-hero-red-title,
    .contact-hero-subtitle {
        margin-top: 3px !important;
    }

    .contact-hero-description {
        max-width: 135px !important;
        margin-top: 4px !important;
        font-size: 5.5px !important;
        line-height: 1.3 !important;
    }
}

@media screen and (max-width: 480px) {

    .contact-hero-content {
        width: 42% !important;
        max-width: 175px !important;
        top: -40px !important;
    }

    .contact-hero-title,
    .contact-hero-red-title,
    .contact-hero-subtitle {
        font-size: 15px !important;
    }

    .contact-hero-description {
        max-width: 145px !important;
        font-size: 6px !important;
    }

    .contact-title-line {
        height: 75px !important;
        min-height: 75px !important;
    }
}

@media screen and (max-width: 480px) {

    .contact-hero-content {
        top: -40px !important;
    }
}
@media screen and (max-width: 480px) {

    .contact-hero-product-area {
        bottom: 170px !important;
    }

    .contact-hero-product-image {
        scale: 1.35 !important;
        transform-origin: right bottom !important;
    }
}
