/* =========================================================
   REGAL CONTACT PAGE
   COMPLETE CORRECTED CSS
   NO ENQUIRY FORM
========================================================= */

.contact-page {
    --ct-red: #ed2d35;
    --ct-black: #090b0e;
    --ct-paper: #f7f6f2;
    --ct-white: #ffffff;
    --ct-text: #171918;
    --ct-muted: #777b78;
    --ct-line: #dcdcd8;

    background: var(--ct-paper);
    color: var(--ct-text);

    font-family: "Inter", sans-serif;

    overflow: hidden;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}

.contact-page .ct-rail {
    width: min(1316px, calc(100% - 44px));
    max-width: 1316px;
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.contact-page h1,
.contact-page h2,
.contact-page h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.contact-page h1 em,
.contact-page h2 em,
.contact-page h3 em {
    color: var(--ct-red);
    font-style: normal;
}

.contact-page p {
    color: var(--ct-muted);
}


/* =========================================================
   LABEL
========================================================= */

.contact-page .ct-label {
    display: flex;
    align-items: center;
    gap: 13px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.contact-page .ct-label span {
    color: var(--ct-red);
}

.contact-page .ct-label b {
    color: #626764;
}

.contact-page .ct-label i {
    width: 42px;
    height: 1px;

    background: var(--ct-red);
}

.contact-page .ct-label small {
    color: #999d99;
    letter-spacing: 2px;
}


/* =========================================================
   HERO
========================================================= */

.ct-hero {
    min-height: 650px;

    background: var(--ct-black);
    color: white;

    display: flex;
    align-items: center;
}

.ct-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 45px;
}

.ct-hero .ct-label b {
    color: #d8d8d5;
}

.ct-hero .ct-label small {
    color: #777b78;
}

.ct-hero-code {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #686d6a;
}

.ct-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    gap: 100px;

    align-items: end;

    padding: 95px 0 90px;
}

.ct-eyebrow {
    display: block;

    margin-bottom: 22px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;

    color: var(--ct-red);
}

.ct-hero-title h1 {
    font-size: clamp(90px, 10vw, 170px);

    line-height: .83;
    letter-spacing: -1px;
}

.ct-hero-title p {
    max-width: 540px;

    margin: 35px 0 0;

    font-size: 15px;
    line-height: 1.8;
}

.ct-hero-side {
    border-left: 1px solid #292c2e;

    padding-left: 50px;
}

.ct-location-mini span {
    display: block;

    margin-bottom: 22px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;

    color: var(--ct-red);
}

.ct-location-mini strong {
    display: block;

    font-family: "Bebas Neue", sans-serif;
    font-size: 38px;
    font-weight: 400;

    line-height: 1.05;
}

.ct-location-mini small {
    display: block;

    margin-top: 20px;

    font-size: 10px;
    letter-spacing: 3px;

    color: #737774;
}

.ct-scroll-btn {
    margin-top: 80px;

    display: inline-flex;
    align-items: center;

    gap: 18px;

    color: white;
    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ct-scroll-btn i {
    color: var(--ct-red);
}

.ct-scroll-btn:hover {
    color: white;
}

.ct-scroll-btn:hover i {
    transform: translateY(4px);
}


/* =========================================================
   DETAILS SECTION
========================================================= */

.ct-details {
    padding: 125px 0 130px;
}

.ct-section-head {
    display: grid;

    grid-template-columns:
        minmax(0, .7fr)
        minmax(0, 1.3fr);

    align-items: end;

    margin-bottom: 75px;
}

.ct-section-head .ct-label {
    align-self: start;
}

.ct-section-head h2 {
    font-size: clamp(70px, 8vw, 125px);

    line-height: .83;
}

.ct-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 100px;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.ct-info-intro {
    margin-bottom: 40px;
}

.ct-info-intro span {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.ct-info-intro p {
    max-width: 410px;

    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}

.ct-info-row {
    display: grid;

    grid-template-columns:
        54px
        minmax(0, 1fr)
        25px;

    gap: 20px;

    align-items: center;

    padding: 27px 0;

    border-top: 1px solid var(--ct-line);

    color: var(--ct-text);
    text-decoration: none;

    transition: .25s ease;
}

.ct-info-row:last-of-type {
    border-bottom: 1px solid var(--ct-line);
}

.ct-info-row:hover {
    color: var(--ct-text);
    padding-left: 8px;
}

.ct-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ct-black);
    color: white;

    font-size: 15px;

    transition: .25s ease;
}

.ct-info-row:hover .ct-icon {
    background: var(--ct-red);
}

.ct-info-row small {
    display: block;

    margin-bottom: 6px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--ct-red);
}

.ct-info-row strong {
    display: block;

    font-size: 14px;
    font-weight: 700;
}

.ct-info-row span {
    display: block;

    margin-top: 5px;

    font-size: 15px;

    color: var(--ct-muted);
}

.ct-info-row > .fa-arrow-up-right {
    color: var(--ct-red);

    font-size: 11px;

    transition: .25s ease;
}

.ct-info-row:hover > .fa-arrow-up-right {
    transform: translate(3px, -3px);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.ct-social {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 35px;
}

.ct-social span {
    margin-right: 10px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #7d817e;
}

.ct-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ct-line);

    color: var(--ct-text);
    text-decoration: none;

    font-size: 12px;

    transition: .25s ease;
}

.ct-social a:hover {
    background: var(--ct-black);
    border-color: var(--ct-black);

    color: white;

    transform: translateY(-3px);
}


/* =========================================================
   REGAL SUPPORT PANEL
   REPLACES ENQUIRY FORM
========================================================= */

.ct-support-panel {
    min-height: 100%;

    display: flex;
    flex-direction: column;

    padding: 50px;

    background: white;

    border: 1px solid #e2e1dc;
}


/* SUPPORT HEADING */

.ct-support-panel .ct-form-heading > span {
    display: block;

    margin-bottom: 18px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;

    color: var(--ct-red);
}

.ct-support-panel .ct-form-heading h3 {
    font-size: 58px;

    line-height: .86;

    margin-bottom: 25px;
}

.ct-support-panel .ct-form-heading p {
    max-width: 480px;

    margin: 0 0 35px;

    color: var(--ct-muted);

    font-family: "Inter", sans-serif;

    font-size: 17px;
    line-height: 1.8;
}


/* SUPPORT LIST */

.ct-support-list {
    border-top: 1px solid #dcdcd8;
}

.ct-support-row {
    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr)
        18px;

    align-items: center;

    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid #dcdcd8;

    color: var(--ct-text);
    text-decoration: none;

    transition: .25s ease;
}

.ct-support-row:hover {
    color: var(--ct-text);

    padding-left: 8px;
}

.ct-support-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ct-black);
    color: white;

    font-size: 15px;

    transition: .25s ease;
}

.ct-support-row:hover .ct-support-icon {
    background: var(--ct-red);
}

.ct-support-row > div:nth-child(2) {
    min-width: 0;
}

.ct-support-row small {
    display: block;

    margin-bottom: 5px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--ct-red);
}

.ct-support-row strong {
    display: block;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}

.ct-support-row span {
    display: block;

    margin-top: 5px;

    color: var(--ct-muted);

    font-family: "Inter", sans-serif;

    font-size: 14px;
    line-height: 1.5;
}

.ct-support-row > .fa-arrow-up-right {
    color: var(--ct-red);

    font-size: 11px;

    transition: .25s ease;
}

.ct-support-row:hover > .fa-arrow-up-right {
    transform: translate(3px, -3px);
}


/* STATIC SERVICE ROW */

.ct-support-static {
    cursor: default;
}

.ct-support-static:hover {
    padding-left: 0;
}

.ct-support-static:hover .ct-support-icon {
    background: var(--ct-black);
}


/* SUPPORT BOTTOM */

.ct-support-bottom {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: auto;
    padding-top: 30px;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #8a8d89;
}

.ct-support-line {
    width: 45px;
    height: 1px;

    background: var(--ct-red);
}

.ct-support-bottom i {
    margin-left: auto;

    color: var(--ct-red);

    font-size: 12px;
}


/* =========================================================
   MAP
========================================================= */

.ct-map-section {
    position: relative;

    background: var(--ct-black);

    padding: 0;
}

.ct-map {
    position: relative;

    width: 100%;
    height: 650px;

    filter: grayscale(100%);
}

.ct-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

.ct-map-card {
    position: absolute;

    left: max(22px, calc((100% - 1316px) / 2));

    top: 50%;

    transform: translateY(-50%);

    width: 390px;

    padding: 50px;

    background: white;
}

.ct-map-card > span {
    display: block;

    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;

    color: var(--ct-red);
}

.ct-map-card h2 {
    font-size: 75px;

    line-height: .82;

    margin-bottom: 28px;
}

.ct-map-card p {
    margin: 0 0 30px;

    font-size: 13px;
    line-height: 1.8;
}

.ct-map-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 55px;

    padding: 0 18px;

    background: var(--ct-black);

    color: white;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    transition: .25s ease;
}

.ct-map-card a:hover {
    background: var(--ct-red);
}

.ct-map-card a i {
    color: var(--ct-red);
}

.ct-map-card a:hover i {
    color: white;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ct-final {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--ct-black);

    color: white;
}

.ct-final-bg {
    position: absolute;
    inset: 0;

    background-image:
        url("../images/contact-final.jpg");

    background-size: cover;
    background-position: center;

    opacity: .55;
}

.ct-final-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 11, 14, .95) 0%,
            rgba(9, 11, 14, .72) 45%,
            rgba(9, 11, 14, .35) 100%
        );
}

.ct-final-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.ct-final .ct-eyebrow {
    margin-bottom: 25px;
}

.ct-final h2 {
    font-size: clamp(85px, 9vw, 145px);

    line-height: .82;
}

.ct-final p {
    max-width: 450px;

    margin: 30px 0 0;

    color: #b7bab7;

    font-size: 14px;
    line-height: 1.8;
}

.ct-final-btn {
    min-width: 260px;
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;

    background: var(--ct-red);

    color: white;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    transition: .25s ease;
}

.ct-final-btn:hover {
    background: white;
    color: var(--ct-black);
}

.ct-final-btn i {
    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ct-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .ct-hero-side {
        border-left: 0;
        border-top: 1px solid #292c2e;

        padding: 35px 0 0;
    }

    .ct-scroll-btn {
        margin-top: 40px;
    }

    .ct-contact-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .ct-section-head {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .ct-map-card {
        left: 30px;
    }

    .ct-final-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-page .ct-rail {
        width: calc(100% - 36px);
    }


    /* HERO */

    .ct-hero {
        min-height: auto;
    }

    .ct-hero-top {
        padding-top: 35px;
    }

    .ct-hero-code {
        display: none;
    }

    .ct-hero-grid {
        padding: 70px 0;
    }

    .ct-hero-title h1 {
        font-size: 78px;
    }

    .ct-hero-title p {
        font-size: 13px;
    }

    .ct-location-mini strong {
        font-size: 31px;
    }


    /* DETAILS */

    .ct-details {
        padding: 80px 0;
    }

    .ct-section-head {
        margin-bottom: 50px;
    }

    .ct-section-head h2 {
        font-size: 70px;
    }


    /* CONTACT INFO */

    .ct-info-row {
        grid-template-columns:
            48px
            minmax(0, 1fr)
            15px;

        gap: 14px;
    }

    .ct-info-row strong {
        font-size: 14px;
    }


    /* SUPPORT PANEL */

    .ct-support-panel {
        padding: 30px 22px;
    }

    .ct-support-panel .ct-form-heading h3 {
        font-size: 45px;
    }

    .ct-support-panel .ct-form-heading p {
        margin-bottom: 30px;

        font-size: 12px;
        line-height: 1.7;
    }

    .ct-support-row {
        grid-template-columns:
            42px
            minmax(0, 1fr)
            15px;

        gap: 14px;

        padding: 20px 0;
    }

    .ct-support-icon {
        width: 42px;
        height: 42px;
    }

    .ct-support-row strong {
        font-size: 12px;
    }

    .ct-support-row span {
        font-size: 9px;
    }

    .ct-support-bottom {
        margin-top: 25px;
    }


    /* MAP */

    .ct-map {
        height: 600px;
    }

    .ct-map-card {
        left: 18px;
        right: 18px;

        width: auto;

        top: auto;
        bottom: 18px;

        transform: none;

        padding: 30px;
    }

    .ct-map-card h2 {
        font-size: 58px;
    }


    /* FINAL CTA */

    .ct-final {
        min-height: 500px;
    }

    .ct-final h2 {
        font-size: 75px;
    }

    .ct-final-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .ct-hero-title h1 {
        font-size: 68px;
    }

    .ct-section-head h2 {
        font-size: 60px;
    }

    .ct-final h2 {
        font-size: 64px;
    }

    .ct-support-panel {
        padding: 25px 18px;
    }

    .ct-support-panel .ct-form-heading h3 {
        font-size: 40px;
    }

    .ct-support-row {
        grid-template-columns:
            38px
            minmax(0, 1fr)
            12px;

        gap: 11px;
    }

    .ct-support-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

}