.elementor-49 .elementor-element.elementor-element-22f2be1{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49 .elementor-element.elementor-element-f57edf5{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49 .elementor-element.elementor-element-603ecc7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49 .elementor-element.elementor-element-6deb98b{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-b865b56 */@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ==================================
   PAGE 4 — SECTION 1: CONTACT HERO
=================================== */

.contact-hero {
    --contact-navy: #041c22;
    --contact-teal: #0b353b;
    --contact-red: #c94732;
    --contact-blue: #477796;
    --contact-cream: #fff4d2;
    --contact-white: #ffffff;

    position: relative;
    display: flex;
    align-items: center;
    min-height: 850px;
    padding: 105px 24px 38px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 79% 27%,
            rgba(71, 119, 150, 0.36),
            transparent 27%
        ),
        radial-gradient(
            circle at 5% 95%,
            rgba(201, 71, 50, 0.13),
            transparent 23%
        ),
        linear-gradient(
            130deg,
            #03191e 0%,
            #06262d 58%,
            #041c22 100%
        );

    color: var(--contact-white);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.contact-hero,
.contact-hero * {
    box-sizing: border-box;
    border-radius: 0;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -120px;
    width: 480px;
    height: 480px;

    border:
        75px solid
        rgba(255, 255, 255, 0.025);

    transform: rotate(18deg);
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent,
            black 68%
        );

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 68%
        );

    pointer-events: none;
}

.contact-hero__background-word {
    position: absolute;
    top: 44%;
    left: -1%;

    color: rgba(255, 255, 255, 0.018);

    font-family: "Archivo Black", sans-serif;
    font-size: clamp(10rem, 25vw, 27rem);
    line-height: 0.75;
    letter-spacing: -0.09em;

    transform: translateY(-50%);
    pointer-events: none;
}

.contact-hero__container {
    position: relative;
    z-index: 2;

    width: min(1240px, 100%);
    margin-inline: auto;
}

.contact-hero__main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(370px, 0.68fr);

    align-items: center;
    gap: 80px;
    padding-bottom: 72px;
}

/* ==================================
   LEFT CONTENT
=================================== */

.contact-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 25px;

    color: var(--contact-cream);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.contact-hero__eyebrow-line {
    width: 35px;
    height: 3px;
    background: var(--contact-red);
}

.contact-hero__content h1 {
    max-width: 820px;
    margin: 0 0 28px;

    color: var(--contact-white);

    font-family: "Archivo Black", sans-serif;
    font-size: clamp(3.8rem, 7.3vw, 7.3rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.contact-hero__content h1 span {
    color: var(--contact-red);
}

.contact-hero__description {
    max-width: 620px;
    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 1rem;
    line-height: 1.85;
}

/* ==================================
   ACTION BUTTONS
=================================== */

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-bottom: 34px;
}

.contact-hero__button {
    display: grid;

    grid-template-columns:
        46px
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 13px;

    min-height: 70px;

    padding:
        10px
        18px
        10px
        11px;

    border-left:
        5px solid
        var(--contact-cream);

    color: var(--contact-white);
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;

    transition:
        transform 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.contact-hero__button--primary {
    min-width: 285px;

    border-left-color: var(--contact-navy);

    background: var(--contact-red);

    box-shadow:
        8px 8px 0
        rgba(201, 71, 50, 0.18);

    -webkit-clip-path:
        polygon(
            0 0,
            calc(100% - 12px) 0,
            100% 12px,
            100% 100%,
            0 100%
        );

    clip-path:
        polygon(
            0 0,
            calc(100% - 12px) 0,
            100% 12px,
            100% 100%,
            0 100%
        );
}

.contact-hero__button--secondary {
    grid-template-columns:
        46px
        minmax(0, 1fr);

    min-width: 240px;

    border:
        1px solid
        rgba(255, 255, 255, 0.17);

    border-left:
        4px solid
        var(--contact-blue);

    background:
        rgba(255, 255, 255, 0.055);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.contact-hero__button:hover {
    transform: translate(-3px, -3px);
}

.contact-hero__button--primary:hover {
    background: #b73c29;

    box-shadow:
        12px 12px 0
        rgba(201, 71, 50, 0.25);
}

.contact-hero__button--secondary:hover {
    border-color: var(--contact-cream);
    border-left-color: var(--contact-red);

    background:
        rgba(255, 255, 255, 0.09);
}

.contact-hero__button-icon {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    border-bottom:
        3px solid
        var(--contact-cream);

    background:
        rgba(4, 28, 34, 0.18);

    color: var(--contact-white);
}

.contact-hero__button-icon i {
    display: block;

    color: currentColor;

    font-size: 1.4rem;
    line-height: 1;

    pointer-events: none;
}

.contact-hero__button--primary
.contact-hero__button-icon i {
    font-size: 1.65rem;
}

.contact-hero__button--secondary
.contact-hero__button-icon i {
    font-size: 1.15rem;
    transform: rotate(-4deg);
}

.contact-hero__button > span:nth-child(2) {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.35;
}

.contact-hero__button small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.57rem;
    font-weight: 600;
}

.contact-hero__button-arrow {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(255, 255, 255, 0.23);

    background:
        rgba(4, 28, 34, 0.12);

    transition:
        transform 0.28s ease,
        background 0.28s ease;
}

.contact-hero__button:hover
.contact-hero__button-arrow {
    transform: translate(3px, -3px);
    background: var(--contact-navy);
}

/* ==================================
   LOCATIONS
=================================== */

.contact-hero__locations {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.41);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-hero__locations i {
    width: 5px;
    height: 5px;

    background: var(--contact-red);

    box-shadow:
        3px 3px 0
        rgba(201, 71, 50, 0.18);
}

/* ==================================
   RIGHT ENQUIRY PANEL
=================================== */

.contact-hero__panel {
    position: relative;
    overflow: hidden;

    padding: 30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-left:
        6px solid
        var(--contact-red);

    background:
        rgba(255, 255, 255, 0.075);

    box-shadow:
        15px 15px 0
        rgba(0, 0, 0, 0.16);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.contact-hero__panel::before {
    content: "";

    position: absolute;
    top: -75px;
    right: -75px;

    width: 180px;
    height: 180px;

    border:
        30px solid
        rgba(71, 119, 150, 0.12);

    transform: rotate(18deg);
}

.contact-hero__panel::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 70px;
    height: 6px;

    background: var(--contact-red);
}

/* ==================================
   PANEL HEADER
=================================== */

.contact-panel__header {
    position: relative;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 26px;
    padding-bottom: 23px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}

.contact-panel__label {
    display: block;

    margin-bottom: 8px;

    color: var(--contact-red);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.contact-panel__header h2 {
    margin: 0;

    color: var(--contact-white);

    font-family: "Archivo Black", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.contact-panel__status {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;

    padding: 6px 8px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.57rem;
    font-weight: 700;
}

.contact-panel__status i {
    width: 7px;
    height: 7px;

    background: #35c878;

    box-shadow:
        3px 3px 0
        rgba(53, 200, 120, 0.15);
}

/* ==================================
   PANEL DETAILS
=================================== */

.contact-panel__details {
    display: grid;
}

.contact-panel__item {
    display: grid;

    grid-template-columns:
        37px
        minmax(0, 1fr);

    align-items: center;
    gap: 13px;

    padding: 14px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.contact-panel__number {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border-left:
        3px solid
        var(--contact-red);

    background:
        rgba(255, 244, 210, 0.1);

    color: var(--contact-cream);

    font-family: "Archivo Black", sans-serif;
    font-size: 0.57rem;
    font-weight: 400;

    box-shadow:
        4px 4px 0
        rgba(255, 255, 255, 0.035);
}

.contact-panel__item strong,
.contact-panel__item p {
    display: block;
}

.contact-panel__item strong {
    margin-bottom: 3px;

    color: var(--contact-white);

    font-size: 0.73rem;
    font-weight: 800;
}

.contact-panel__item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.46);

    font-size: 0.62rem;
    line-height: 1.45;
}

/* ==================================
   PANEL FOOTER
=================================== */

.contact-panel__footer {
    display: grid;

    grid-template-columns:
        49px
        minmax(0, 1fr)
        40px;

    align-items: center;
    gap: 13px;

    margin-top: 25px;
    padding: 14px;

    border-left:
        5px solid
        var(--contact-red);

    background: var(--contact-cream);
}

.contact-panel__avatar {
    width: 47px;
    height: 47px;

    overflow: hidden;

    border:
        2px solid
        var(--contact-white);

    box-shadow:
        4px 4px 0
        rgba(4, 28, 34, 0.14);
}

.contact-panel__avatar img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.contact-panel__footer span {
    display: block;

    margin-bottom: 3px;

    color: var(--contact-navy);

    font-size: 0.72rem;
    font-weight: 800;
}

.contact-panel__footer p {
    margin: 0;

    color: #66706c;

    font-size: 0.57rem;
    font-weight: 600;
}

.contact-panel__footer > a {
    display: grid;
    place-items: center;

    width: 39px;
    height: 39px;

    border-left:
        3px solid
        var(--contact-navy);

    background: var(--contact-red);
    color: var(--contact-white);

    font-size: 1rem;
    text-decoration: none;

    -webkit-clip-path:
        polygon(
            0 0,
            calc(100% - 8px) 0,
            100% 8px,
            100% 100%,
            0 100%
        );

    clip-path:
        polygon(
            0 0,
            calc(100% - 8px) 0,
            100% 8px,
            100% 100%,
            0 100%
        );

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-panel__footer > a:hover {
    transform: translate(3px, -3px);

    background: var(--contact-navy);

    box-shadow:
        -5px 5px 0
        rgba(201, 71, 50, 0.18);
}

/* ==================================
   BOTTOM INFORMATION STRIP
=================================== */

.contact-hero__strip {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(7, auto);

    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 26px 31px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-left:
        5px solid
        var(--contact-red);

    background:
        rgba(255, 255, 255, 0.055);

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    box-shadow:
        10px 10px 0
        rgba(0, 0, 0, 0.12);
}

.contact-hero__strip::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 65px;
    height: 5px;

    background: var(--contact-red);
}

.contact-strip__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-strip__label {
    color: rgba(255, 255, 255, 0.38);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.contact-strip__item strong,
.contact-strip__item a {
    color: var(--contact-white);

    font-size: 0.69rem;
    font-weight: 800;
    text-decoration: none;
}

.contact-strip__divider {
    width: 1px;
    height: 32px;

    background:
        rgba(255, 255, 255, 0.12);
}

.contact-strip__item--highlight {
    display: grid;

    grid-template-columns:
        11px
        minmax(0, 1fr);

    align-items: center;
    gap: 12px;
}

.contact-strip__status {
    width: 10px;
    height: 10px;

    background: #35c878;

    box-shadow:
        4px 4px 0
        rgba(53, 200, 120, 0.15);
}

/* ==================================
   TABLET
=================================== */

@media (max-width: 1050px) {

    .contact-hero {
        padding-top: 90px;
    }

    .contact-hero__main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-hero__panel {
        width: min(100%, 620px);
    }

    .contact-hero__strip {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-strip__divider {
        display: none;
    }

}

/* ==================================
   MOBILE
=================================== */

@media (max-width: 620px) {

    .contact-hero {
        min-height: auto;
        padding: 73px 16px 20px;
    }

    .contact-hero__main {
        gap: 38px;
        padding-bottom: 45px;
    }

    .contact-hero__content h1 {
        font-size:
            clamp(3rem, 15vw, 4.6rem);
    }

    .contact-hero__description {
        font-size: 0.88rem;
    }

    .contact-hero__actions {
        display: grid;
    }

    .contact-hero__button,
    .contact-hero__button--primary,
    .contact-hero__button--secondary {
        width: 100%;
        min-width: 0;
    }

    .contact-hero__panel {
        padding: 22px 18px;

        border-left-width: 5px;

        box-shadow:
            9px 9px 0
            rgba(0, 0, 0, 0.16);
    }

    .contact-panel__header {
        flex-direction: column;
    }

    .contact-hero__strip {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 22px;

        box-shadow:
            7px 7px 0
            rgba(0, 0, 0, 0.12);
    }

    .contact-strip__item {
        padding-bottom: 17px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.1);
    }

    .contact-strip__item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .contact-strip__item--highlight {
        display: grid;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ed82cda */@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ======================================
   PAGE 4 — SECTION 2: CONTACT CHANNELS
======================================= */

.contact-channels {
    --channels-navy: #041c22;
    --channels-teal: #0b353b;
    --channels-red: #c94732;
    --channels-blue: #477796;
    --channels-cream: #fff4d2;
    --channels-white: #ffffff;
    --channels-grey: #637174;

    position: relative;
    overflow: hidden;
    padding: 115px 24px 120px;
    background:
        radial-gradient(
            circle at 95% 6%,
            rgba(71, 119, 150, 0.12),
            transparent 25%
        ),
        #f7f5ee;
    color: var(--channels-navy);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.contact-channels,
.contact-channels * {
    box-sizing: border-box;
    border-radius: 0;
}

.contact-channels::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(4, 28, 34, 0.16),
            transparent
        );
}

.contact-channels::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 115px;
    height: 7px;
    background: var(--channels-red);
}

.contact-channels__container {
    position: relative;
    z-index: 2;
    width: min(1240px, 100%);
    margin-inline: auto;
}

/* ======================================
   HEADER
======================================= */

.contact-channels__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, 0.6fr);
    align-items: end;
    gap: 65px;
    margin-bottom: 58px;
}

.contact-channels__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
    color: var(--channels-red);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-channels__eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--channels-red);
}

.contact-channels__header h2 {
    margin: 0;
    color: var(--channels-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.8rem, 5.7vw, 5.5rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.contact-channels__header h2 span {
    color: var(--channels-blue);
}

.contact-channels__header > p {
    max-width: 440px;
    margin: 0 0 7px;
    color: var(--channels-grey);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* ======================================
   CONTACT GRID
======================================= */

.contact-channels__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-template-rows:
        repeat(2, minmax(265px, auto));
    gap: 18px;
}

.channel-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border:
        1px solid
        rgba(4, 28, 34, 0.12);
    border-left:
        5px solid
        var(--channels-blue);
    background: var(--channels-white);
    box-shadow:
        8px 8px 0
        rgba(71, 119, 150, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.channel-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 5px;
    background: var(--channels-red);
    transition: width 0.3s ease;
}

.channel-card:hover {
    transform: translate(-4px, -4px);
    border-color:
        rgba(201, 71, 50, 0.45);
    border-left-color: var(--channels-red);
    box-shadow:
        14px 14px 0
        rgba(71, 119, 150, 0.12);
}

.channel-card:hover::after {
    width: 115px;
}

.channel-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.channel-card__type,
.channel-card__index {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.channel-card__type {
    color: var(--channels-red);
}

.channel-card__index {
    color: rgba(4, 28, 34, 0.3);
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
}

/* Availability */

.channel-card__availability {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.61rem;
    font-weight: 700;
}

.channel-card__availability i {
    width: 8px;
    height: 8px;
    background: #38d27f;
    box-shadow:
        3px 3px 0
        rgba(56, 210, 127, 0.16);
}

/* ======================================
   MAIN WHATSAPP CARD
======================================= */

.channel-card--whatsapp {
    grid-row: 1 / 3;
    min-height: 548px;
    padding: 34px;
    border-color: transparent;
    border-left:
        6px solid
        var(--channels-red);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(71, 119, 150, 0.34),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #06262d,
            var(--channels-navy)
        );
    color: var(--channels-white);
    box-shadow:
        12px 12px 0
        rgba(4, 28, 34, 0.12);
}

.channel-card--whatsapp::before {
    content: "01";
    position: absolute;
    right: -13px;
    bottom: -45px;
    color: rgba(255, 255, 255, 0.025);
    font-family: "Archivo Black", sans-serif;
    font-size: 14rem;
    line-height: 1;
}

.channel-card--whatsapp::after {
    width: 100px;
}

.channel-card--whatsapp
.channel-card__type {
    color: var(--channels-cream);
}

/* Main icon */

.channel-card__main-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin: auto 0 35px;
    border-left:
        6px solid
        var(--channels-navy);
    background: var(--channels-red);
    color: var(--channels-white);
    box-shadow:
        9px 9px 0
        rgba(201, 71, 50, 0.2);
}

.channel-card__main-icon::after {
    content: "";
    position: absolute;
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    border-top:
        2px solid
        var(--channels-cream);
    border-right:
        2px solid
        var(--channels-cream);
}

.channel-card__main-icon svg {
    width: 43px;
    height: 43px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

/* ======================================
   CARD CONTENT
======================================= */

.channel-card__content {
    position: relative;
    z-index: 2;
}

.channel-card__name {
    display: block;
    margin-bottom: 10px;
    color: var(--channels-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.channel-card--whatsapp
.channel-card__name {
    color: var(--channels-cream);
}

.channel-card__content h3 {
    max-width: 530px;
    margin: 0 0 14px;
    color: var(--channels-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.channel-card--whatsapp
.channel-card__content h3 {
    max-width: 570px;
    color: var(--channels-white);
    font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.channel-card__content p {
    max-width: 520px;
    margin: 0;
    color: var(--channels-grey);
    font-size: 0.82rem;
    line-height: 1.7;
}

.channel-card--whatsapp
.channel-card__content p {
    color: rgba(255, 255, 255, 0.58);
}

/* Main card bottom */

.channel-card__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-top: 36px;
    padding-top: 25px;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);
}

.channel-card__contact small,
.channel-card__contact strong {
    display: block;
}

.channel-card__contact small {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.channel-card__contact strong {
    color: var(--channels-white);
    font-size: 0.93rem;
    font-weight: 800;
}

/* WhatsApp button */

.channel-card__bottom > a {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 50px;
    padding: 8px 9px 8px 18px;
    border-left:
        4px solid
        var(--channels-navy);
    background: var(--channels-red);
    color: var(--channels-white);
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        0 100%
    );
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.channel-card__bottom > a span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background:
        rgba(4, 28, 34, 0.18);
}

.channel-card__bottom > a:hover {
    transform: translate(-3px, -3px);
    background: #b63c29;
    box-shadow:
        7px 7px 0
        rgba(201, 71, 50, 0.2);
}

/* ======================================
   SMALLER CARDS
======================================= */

.channel-card--phone,
.channel-card--social {
    padding: 27px 29px;
}

.channel-card__small-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 22px 0;
    border-left:
        4px solid
        var(--channels-red);
    background: var(--channels-cream);
    color: var(--channels-red);
    box-shadow:
        5px 5px 0
        rgba(71, 119, 150, 0.1);
}

.channel-card__small-icon::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 15px;
    height: 15px;
    border-right:
        2px solid
        var(--channels-blue);
    border-bottom:
        2px solid
        var(--channels-blue);
}

.channel-card__small-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.channel-card--social
.channel-card__small-icon svg {
    fill: currentColor;
    stroke: none;
}

.channel-card--tiktok
.channel-card__small-icon {
    border-left-color: var(--channels-red);
    background: var(--channels-navy);
    color: var(--channels-white);
}

/* Small card link */

.channel-card__simple-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 18px;
    border-top:
        1px solid
        rgba(4, 28, 34, 0.12);
    color: var(--channels-navy);
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.channel-card__simple-link span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-left:
        3px solid
        var(--channels-red);
    background: var(--channels-navy);
    color: var(--channels-white);
    font-size: 1rem;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.channel-card__simple-link:hover span {
    transform: translate(4px, -3px);
    background: var(--channels-red);
}

/* ======================================
   BOTTOM NOTICE
======================================= */

.contact-channels__notice {
    position: relative;
    display: grid;
    grid-template-columns:
        45px
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 19px 21px;
    border:
        1px solid
        rgba(4, 28, 34, 0.1);
    border-left:
        5px solid
        var(--channels-red);
    background: var(--channels-cream);
    box-shadow:
        8px 8px 0
        rgba(71, 119, 150, 0.08);
}

.contact-channels__notice::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 5px;
    background: var(--channels-red);
}

.contact-channels__notice-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-bottom:
        3px solid
        var(--channels-red);
    background: var(--channels-navy);
    color: var(--channels-cream);
}

.contact-channels__notice-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.contact-channels__notice p {
    margin: 0;
    color: #5f6865;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.6;
}

.contact-channels__notice > a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--channels-navy);
    font-size: 0.7rem;
    font-weight: 800;
    text-decoration: none;
}

.contact-channels__notice > a span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-left:
        3px solid
        var(--channels-navy);
    background: var(--channels-red);
    color: var(--channels-white);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.contact-channels__notice > a:hover span {
    transform: translate(3px, -3px);
    background: var(--channels-navy);
}

/* ======================================
   TABLET
======================================= */

@media (max-width: 960px) {
    .contact-channels {
        padding: 90px 22px 100px;
    }

    .contact-channels__header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 43px;
    }

    .contact-channels__header > p {
        max-width: 650px;
    }

    .contact-channels__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .channel-card--whatsapp {
        grid-row: auto;
        min-height: 530px;
    }
}

/* ======================================
   MOBILE
======================================= */

@media (max-width: 620px) {
    .contact-channels {
        padding: 70px 16px 78px;
    }

    .contact-channels__header h2 {
        font-size:
            clamp(2.45rem, 12.5vw, 4rem);
    }

    .channel-card {
        box-shadow:
            6px 6px 0
            rgba(71, 119, 150, 0.08);
    }

    .channel-card--whatsapp {
        min-height: 530px;
        padding: 25px 21px;
    }

    .channel-card--phone,
    .channel-card--social {
        padding: 24px 21px;
    }

    .channel-card__bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .channel-card__bottom > a {
        justify-content: space-between;
        width: 100%;
    }

    .contact-channels__notice {
        grid-template-columns:
            42px
            minmax(0, 1fr);
        box-shadow:
            6px 6px 0
            rgba(71, 119, 150, 0.08);
    }

    .contact-channels__notice > a {
        grid-column: 1 / -1;
        justify-content: space-between;
        padding-top: 14px;
        border-top:
            1px solid
            rgba(4, 28, 34, 0.11);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4305e93 */@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ==========================================
   PAGE 4 — SECTION 3: GENERAL ENQUIRY FORM
=========================================== */

.enquiry-section {
    --enquiry-navy: #041c22;
    --enquiry-teal: #0b353b;
    --enquiry-red: #c94732;
    --enquiry-blue: #477796;
    --enquiry-cream: #fff4d2;
    --enquiry-white: #ffffff;
    --enquiry-grey: #637174;

    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(71, 119, 150, 0.2),
            transparent 28%
        ),
        var(--enquiry-navy);
    color: var(--enquiry-white);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.enquiry-section,
.enquiry-section * {
    box-sizing: border-box;
    border-radius: 0;
}

.enquiry-section::before {
    content: "?";
    position: absolute;
    top: 50%;
    left: -2%;
    color: rgba(255, 255, 255, 0.018);
    font-family: "Archivo Black", sans-serif;
    font-size: 38rem;
    line-height: 0.7;
    transform: translateY(-50%);
    pointer-events: none;
}

.enquiry-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 115px;
    height: 7px;
    background: var(--enquiry-red);
}

.enquiry-section__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(330px, 0.72fr)
        minmax(550px, 1.28fr);
    align-items: start;
    gap: 70px;
    width: min(1240px, 100%);
    margin-inline: auto;
}

/* ==========================================
   INTRODUCTION
=========================================== */

.enquiry-section__intro {
    position: sticky;
    top: 110px;
}

.enquiry-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--enquiry-cream);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.enquiry-section__eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--enquiry-red);
}

.enquiry-section__intro h2 {
    margin: 0 0 25px;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.enquiry-section__intro h2 span {
    color: var(--enquiry-red);
}

.enquiry-section__intro > p {
    max-width: 470px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.94rem;
    line-height: 1.85;
}

/* ==========================================
   ENQUIRY TOPICS
=========================================== */

.enquiry-topics {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.enquiry-topic {
    position: relative;
    min-height: 122px;
    padding: 17px;
    border:
        1px solid
        rgba(255, 255, 255, 0.1);
    border-left:
        4px solid
        var(--enquiry-blue);
    background:
        rgba(255, 255, 255, 0.045);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.enquiry-topic::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 4px;
    background: var(--enquiry-red);
}

.enquiry-topic:hover {
    transform: translate(-3px, -3px);
    border-left-color: var(--enquiry-red);
    background:
        rgba(255, 255, 255, 0.07);
}

.enquiry-topic > span {
    display: block;
    margin-bottom: 20px;
    color: var(--enquiry-red);
    font-family: "Archivo Black", sans-serif;
    font-size: 0.57rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.enquiry-topic strong,
.enquiry-topic small {
    display: block;
}

.enquiry-topic strong {
    margin-bottom: 5px;
    font-size: 0.69rem;
    font-weight: 800;
}

.enquiry-topic small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.58rem;
    line-height: 1.45;
}

/* ==========================================
   INTRO NOTICE
=========================================== */

.enquiry-section__notice {
    display: grid;
    grid-template-columns:
        24px
        minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
    border-left:
        5px solid
        var(--enquiry-red);
    background: var(--enquiry-cream);
    color: var(--enquiry-navy);
    box-shadow:
        7px 7px 0
        rgba(71, 119, 150, 0.12);
}

.enquiry-section__notice svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--enquiry-red);
    stroke-width: 1.7;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.enquiry-section__notice p {
    margin: 0;
    color: #606966;
    font-size: 0.63rem;
    line-height: 1.55;
}

.enquiry-section__notice strong {
    color: var(--enquiry-navy);
}

/* ==========================================
   FORM CARD
=========================================== */

.enquiry-form-card {
    position: relative;
    overflow: hidden;
    border-left:
        7px solid
        var(--enquiry-red);
    background: var(--enquiry-white);
    color: var(--enquiry-navy);
    box-shadow:
        18px 18px 0
        rgba(71, 119, 150, 0.16);
}

.enquiry-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 90px;
    height: 7px;
    background: var(--enquiry-red);
}

.enquiry-form-card::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 48px;
    height: 48px;
    border-right:
        3px solid
        var(--enquiry-blue);
    border-bottom:
        3px solid
        var(--enquiry-blue);
    pointer-events: none;
}

.enquiry-form-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 34px 25px;
    border-bottom:
        1px solid
        rgba(4, 28, 34, 0.1);
}

.enquiry-form-card__header span {
    display: block;
    margin-bottom: 7px;
    color: var(--enquiry-red);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.enquiry-form-card__header h3 {
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.enquiry-form-card__status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border:
        1px solid
        rgba(4, 28, 34, 0.14);
    color: var(--enquiry-grey);
    font-size: 0.62rem;
    font-weight: 700;
}

.enquiry-form-card__status i {
    width: 8px;
    height: 8px;
    background: #2cb96d;
    box-shadow:
        3px 3px 0
        rgba(44, 185, 109, 0.15);
}

/* ==========================================
   FORM
=========================================== */

.enquiry-form {
    padding: 30px 34px 34px;
}

.enquiry-form__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 22px 17px;
}

.enquiry-field--full {
    grid-column: 1 / -1;
}

.enquiry-field label,
.enquiry-field__label {
    display: block;
    margin-bottom: 9px;
    color: var(--enquiry-navy);
    font-size: 0.66rem;
    font-weight: 800;
}

.enquiry-field__control {
    position: relative;
}

.enquiry-field__control > svg {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--enquiry-blue);
    stroke-width: 1.65;
    stroke-linecap: square;
    stroke-linejoin: miter;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Inputs */

.enquiry-field__control input,
.enquiry-field__control select,
.enquiry-field__control textarea {
    width: 100%;
    min-height: 55px;
    padding: 13px 15px 13px 45px;
    border:
        1px solid
        rgba(4, 28, 34, 0.13);
    border-left:
        4px solid
        var(--enquiry-blue);
    outline: none;
    background: #f7f8f5;
    color: var(--enquiry-navy);
    font:
        600 0.72rem
        "Plus Jakarta Sans",
        sans-serif;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.enquiry-field__control select {
    cursor: pointer;
}

.enquiry-field__control input::placeholder,
.enquiry-field__control textarea::placeholder {
    color: #9ca4a3;
    font-weight: 500;
}

.enquiry-field__control input:focus,
.enquiry-field__control select:focus,
.enquiry-field__control textarea:focus {
    border-color: var(--enquiry-red);
    border-left-color: var(--enquiry-red);
    background: var(--enquiry-white);
    box-shadow:
        6px 6px 0
        rgba(201, 71, 50, 0.09);
}

.enquiry-field__control--message > svg {
    top: 17px;
    transform: none;
}

.enquiry-field__control textarea {
    min-height: 155px;
    padding-bottom: 35px;
    resize: vertical;
    line-height: 1.65;
}

.enquiry-field__counter {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: #9ca4a3;
    font-size: 0.56rem;
    font-weight: 700;
}

.enquiry-field__counter strong {
    color: var(--enquiry-blue);
}

/* ==========================================
   RESPONSE OPTIONS
=========================================== */

.enquiry-response-options {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.enquiry-response {
    margin: 0 !important;
    cursor: pointer;
}

.enquiry-response input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.enquiry-response__box {
    display: grid;
    grid-template-columns:
        19px
        minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 73px;
    padding: 14px;
    border:
        1px solid
        rgba(4, 28, 34, 0.13);
    border-left:
        4px solid
        var(--enquiry-blue);
    background: #f7f8f5;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.enquiry-response:hover
.enquiry-response__box {
    transform: translateY(-2px);
    border-left-color: var(--enquiry-red);
}

.enquiry-response__radio {
    position: relative;
    width: 18px;
    height: 18px;
    border:
        2px solid
        #a8b0ae;
}

.enquiry-response__radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--enquiry-red);
    opacity: 0;
    transform: scale(0.4);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.enquiry-response__box strong,
.enquiry-response__box small {
    display: block;
}

.enquiry-response__box strong {
    margin-bottom: 4px;
    font-size: 0.67rem;
    font-weight: 800;
}

.enquiry-response__box small {
    color: #87908e;
    font-size: 0.57rem;
    line-height: 1.4;
}

.enquiry-response input:checked +
.enquiry-response__box {
    border-color: var(--enquiry-red);
    border-left-color: var(--enquiry-red);
    background:
        rgba(201, 71, 50, 0.055);
    box-shadow:
        5px 5px 0
        rgba(201, 71, 50, 0.1);
}

.enquiry-response input:checked +
.enquiry-response__box
.enquiry-response__radio {
    border-color: var(--enquiry-red);
}

.enquiry-response input:checked +
.enquiry-response__box
.enquiry-response__radio::after {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================
   FORM FOOTER
=========================================== */

.enquiry-form__footer {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 25px;
    margin-top: 29px;
    padding-top: 25px;
    border-top:
        1px solid
        rgba(4, 28, 34, 0.1);
}

.enquiry-form__footer p {
    max-width: 380px;
    margin: 0;
    color: #788280;
    font-size: 0.61rem;
    font-weight: 600;
    line-height: 1.55;
}

.enquiry-form__footer button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 190px;
    min-height: 56px;
    padding: 10px 11px 10px 19px;
    border: 0;
    border-left:
        5px solid
        var(--enquiry-navy);
    background: var(--enquiry-red);
    color: var(--enquiry-white);
    cursor: pointer;
    font:
        800 0.72rem
        "Plus Jakarta Sans",
        sans-serif;
    box-shadow:
        8px 8px 0
        rgba(201, 71, 50, 0.18);
    clip-path: polygon(
        0 0,
        calc(100% - 11px) 0,
        100% 11px,
        100% 100%,
        0 100%
    );
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.enquiry-form__footer button svg {
    width: 36px;
    height: 36px;
    padding: 9px;
    background:
        rgba(4, 28, 34, 0.18);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.enquiry-form__footer button:hover {
    transform: translate(-3px, -3px);
    background: #b83d2a;
    box-shadow:
        12px 12px 0
        rgba(201, 71, 50, 0.24);
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 1000px) {
    .enquiry-section {
        padding: 90px 22px;
    }

    .enquiry-section__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .enquiry-section__intro {
        position: relative;
        top: auto;
    }
}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 620px) {
    .enquiry-section {
        padding: 70px 16px;
    }

    .enquiry-section__intro h2 {
        font-size:
            clamp(2.45rem, 13vw, 4rem);
    }

    .enquiry-topics,
    .enquiry-form__grid,
    .enquiry-response-options {
        grid-template-columns: 1fr;
    }

    .enquiry-field--full {
        grid-column: auto;
    }

    .enquiry-form-card {
        border-left-width: 5px;
        box-shadow:
            10px 10px 0
            rgba(71, 119, 150, 0.16);
    }

    .enquiry-form-card__header {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 20px 21px;
    }

    .enquiry-form {
        padding: 24px 20px;
    }

    .enquiry-form__footer {
        grid-template-columns: 1fr;
    }

    .enquiry-form__footer button {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-49f121d */@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ==========================================
   PAGE 4 — SECTION 4: LOCATION & FINAL CTA
=========================================== */

.contact-location {
    --location-navy: #041c22;
    --location-teal: #0b353b;
    --location-red: #c94732;
    --location-blue: #477796;
    --location-cream: #fff4d2;
    --location-white: #ffffff;
    --location-grey: #637174;

    position: relative;
    overflow: hidden;
    padding: 110px 24px 55px;
    background: #f7f5ee;
    color: var(--location-navy);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.contact-location::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -130px;
    width: 440px;
    height: 440px;
    border: 75px solid rgba(71, 119, 150, 0.06);
    transform: rotate(18deg);
    pointer-events: none;
}

.contact-location__container {
    position: relative;
    z-index: 2;
    width: min(1240px, 100%);
    margin-inline: auto;
}

.contact-location__board {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(4, 28, 34, 0.15);
    border-left: 6px solid var(--location-red);
    background: var(--location-white);
    box-shadow: 18px 18px 0 rgba(4, 28, 34, 0.08);
}

/* Map side */

.contact-location__visual {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: var(--location-navy);
    color: var(--location-white);
}

.contact-location__visual-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    padding: 31px 34px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-location__label {
    display: block;
    margin-bottom: 8px;
    color: var(--location-red);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.contact-location__visual-header h2 {
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(1.5rem, 2.7vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.contact-location__code {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

/* Stylised map */

.contact-location__map {
    position: relative;
    flex: 1;
    min-height: 490px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(71, 119, 150, 0.13),
            transparent 58%
        ),
        var(--location-navy);
}

.contact-map__grid {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 50px 50px;
}

.contact-location__map::before {
    content: "";
    position: absolute;
    top: 13%;
    left: 17%;
    width: 67%;
    height: 71%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(71, 119, 150, 0.07);
    clip-path: polygon(
        12% 0,
        78% 5%,
        100% 30%,
        91% 77%,
        63% 100%,
        18% 88%,
        0 51%
    );
    transform: rotate(-7deg);
}

.contact-map__route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--location-red);
    stroke-width: 2.2;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-dasharray: 9 11;
}

.contact-map__route-secondary {
    stroke: rgba(255, 244, 210, 0.4);
}

.contact-map__point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
}

.contact-map__point strong,
.contact-map__point small {
    display: block;
}

.contact-map__point strong {
    margin-bottom: 3px;
    color: var(--location-white);
    font-size: 0.75rem;
    font-weight: 800;
}

.contact-map__point small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.6rem;
    font-weight: 600;
}

.contact-map__marker {
    position: relative;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(201, 71, 50, 0.7);
    transform: rotate(45deg);
}

.contact-map__marker::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(201, 71, 50, 0.25);
    animation: contactMapPulse 2.3s infinite;
}

.contact-map__marker i {
    width: 9px;
    height: 9px;
    background: var(--location-red);
    box-shadow: 0 0 12px rgba(201, 71, 50, 0.8);
}

.contact-map__small-marker {
    width: 10px;
    height: 10px;
    background: var(--location-cream);
    box-shadow: 5px 5px 0 rgba(255, 244, 210, 0.12);
    transform: rotate(45deg);
}

.contact-map__point--senai {
    top: 17%;
    left: 12%;
}

.contact-map__point--jb {
    right: 8%;
    bottom: 14%;
}

.contact-map__point--other {
    top: 42%;
    right: 8%;
}

.contact-map__watermark {
    position: absolute;
    bottom: -20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.035);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.contact-map__coordinates {
    position: absolute;
    top: 22px;
    right: 23px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

@keyframes contactMapPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.65);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

.contact-location__visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-location__visual-footer > span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.59rem;
    font-weight: 600;
}

.contact-location__visual-footer > span i {
    width: 7px;
    height: 7px;
    background: #36c978;
}

.contact-location__visual-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--location-cream);
    font-size: 0.63rem;
    font-weight: 800;
    text-decoration: none;
}

.contact-location__visual-footer a b {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.contact-location__visual-footer a:hover b {
    transform: translate(3px, -3px);
}

/* Content side */

.contact-location__content {
    display: flex;
    flex-direction: column;
    padding: 58px 52px 42px;
}

.contact-location__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: var(--location-red);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.contact-location__eyebrow::before {
    content: "";
    width: 31px;
    height: 3px;
    background: var(--location-red);
}

.contact-location__content > h2 {
    max-width: 560px;
    margin: 0 0 21px;
    color: var(--location-navy);
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.contact-location__content > h2 span {
    color: var(--location-blue);
}

.contact-location__content > p {
    max-width: 530px;
    margin: 0 0 30px;
    color: var(--location-grey);
    font-size: 0.84rem;
    line-height: 1.78;
}

/* Areas */

.contact-location__areas {
    display: grid;
}

.contact-area {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(4, 28, 34, 0.11);
}

.contact-area:first-child {
    border-top: 1px solid rgba(4, 28, 34, 0.11);
}

.contact-area__number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-left: 4px solid var(--location-red);
    background: var(--location-navy);
    color: var(--location-cream);
    font-size: 0.59rem;
    font-weight: 800;
}

.contact-area strong,
.contact-area small {
    display: block;
}

.contact-area strong {
    margin-bottom: 4px;
    color: var(--location-navy);
    font-size: 0.71rem;
    font-weight: 800;
}

.contact-area small {
    color: #87908e;
    font-size: 0.59rem;
    line-height: 1.4;
}

.contact-area__tag {
    padding: 6px 9px;
    border-left: 3px solid var(--location-blue);
    background: rgba(71, 119, 150, 0.1);
    color: var(--location-blue);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Closing box */

.contact-location__closing {
    margin-top: auto;
    padding-top: 28px;
}

.contact-location__closing-copy {
    margin-bottom: 13px;
}

.contact-location__closing-copy small,
.contact-location__closing-copy strong {
    display: block;
}

.contact-location__closing-copy small {
    margin-bottom: 5px;
    color: var(--location-red);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.contact-location__closing-copy strong {
    color: var(--location-navy);
    font-size: 0.86rem;
    font-weight: 800;
}

.contact-location__closing > a {
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 13px;
    min-height: 70px;
    padding: 11px 13px;
    border-left: 6px solid var(--location-navy);
    background: var(--location-red);
    color: var(--location-white);
    text-decoration: none;
    box-shadow: 9px 9px 0 rgba(4, 28, 34, 0.12);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-location__closing > a:hover {
    transform: translate(-3px, -3px);
    background: #b73c29;
    box-shadow: 12px 12px 0 rgba(4, 28, 34, 0.14);
}

.contact-location__whatsapp {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
}

.contact-location__whatsapp svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.contact-location__closing > a small,
.contact-location__closing > a span {
    display: block;
}

.contact-location__closing > a small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.56rem;
    font-weight: 600;
}

.contact-location__closing > a span {
    font-size: 0.76rem;
    font-weight: 800;
}

.contact-location__closing > a b {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.contact-location__closing > a:hover b {
    transform: translate(3px, -3px);
}

/* Bottom line */

.contact-location__bottom {
    display: grid;
    grid-template-columns: auto minmax(50px, 1fr) auto;
    align-items: center;
    gap: 25px;
    padding: 32px 5px 0;
}

.contact-location__bottom > div:first-child span,
.contact-location__bottom > div:first-child strong {
    display: block;
}

.contact-location__bottom > div:first-child span {
    margin-bottom: 4px;
    color: var(--location-red);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.contact-location__bottom > div:first-child strong {
    color: var(--location-navy);
    font-size: 0.66rem;
    font-weight: 700;
}

.contact-location__bottom-line {
    height: 1px;
    background: rgba(4, 28, 34, 0.12);
}

.contact-location__bottom > a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--location-navy);
    font-size: 0.65rem;
    font-weight: 800;
    text-decoration: none;
}

.contact-location__bottom > a span {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-left: 3px solid var(--location-red);
    background: var(--location-navy);
    color: var(--location-white);
}

/* Responsive */

@media (max-width: 1000px) {
    .contact-location {
        padding: 90px 22px 50px;
    }

    .contact-location__board {
        grid-template-columns: 1fr;
    }

    .contact-location__map {
        min-height: 500px;
    }

    .contact-location__content {
        min-height: 620px;
    }
}

@media (max-width: 620px) {
    .contact-location {
        padding: 70px 16px 40px;
    }

    .contact-location__board {
        border-left-width: 4px;
        box-shadow: 10px 10px 0 rgba(4, 28, 34, 0.08);
    }

    .contact-location__visual-header {
        padding: 24px 21px 20px;
    }

    .contact-location__code {
        display: none;
    }

    .contact-location__map {
        min-height: 430px;
    }

    .contact-map__point--senai {
        left: 7%;
    }

    .contact-map__point--other {
        right: 4%;
    }

    .contact-map__point--jb {
        right: 4%;
    }

    .contact-location__visual-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 21px;
    }

    .contact-location__content {
        min-height: auto;
        padding: 45px 21px 25px;
    }

    .contact-location__content > h2 {
        font-size: clamp(2.2rem, 11.5vw, 3.5rem);
    }

    .contact-area {
        grid-template-columns: 37px minmax(0, 1fr);
    }

    .contact-area__tag {
        display: none;
    }

    .contact-location__closing {
        margin-top: 35px;
    }

    .contact-location__closing > a {
        grid-template-columns: 45px minmax(0, 1fr) 28px;
        padding: 12px;
        box-shadow: 6px 6px 0 rgba(4, 28, 34, 0.12);
    }

    .contact-location__bottom {
        grid-template-columns: 1fr auto;
    }

    .contact-location__bottom-line {
        display: none;
    }
}
/* ==========================================
   REAL GOOGLE MAP
=========================================== */

.contact-location__map--real {
    position: relative;
    width: 100%;
    min-height: 470px;
    overflow: hidden;
    background: #e8e8e8;
}

.contact-location__map--real iframe {
    display: block;
    width: 100%;
    height: 470px;
    min-height: 470px;
    border: 0;
    filter: grayscale(15%) contrast(1.05);
}

/* Footer bawah map */
.contact-location__visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-location__visual-footer > span {
    display: block;
}

.contact-location__visual-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* WhatsApp CTA tanpa icon */
.contact-location__closing > a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-location__closing > a > span {
    display: flex;
    flex-direction: column;
}

.contact-location__closing > a small {
    display: block;
}

/* Mobile */
@media (max-width: 767px) {
    .contact-location__map--real,
    .contact-location__map--real iframe {
        height: 400px;
        min-height: 400px;
    }

    .contact-location__visual-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-location__visual-footer a {
        width: 100%;
    }
}/* End custom CSS */