﻿/* =========================================
   CONTACT PAGE
========================================= */

.star-contact-page {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================
   CONTACT CONTAINER
========================================= */

.star-contact-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 0 42px;

    box-sizing: border-box;
}


/* =========================================
   CONTACT HERO
========================================= */

.star-contact-hero {
    position: relative;

    width: 100%;
    height: 400px;

    overflow: hidden;

    background: #073452;
}


.star-contact-hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 43, 70, .97) 0%,
            rgba(5, 43, 70, .88) 32%,
            rgba(5, 43, 70, .38) 64%,
            rgba(5, 43, 70, .10) 100%
        ),
        url("../images/contact-page-banner.png");

    background-size: cover;
    background-position: center;

    transform: scale(1.01);
}


.star-contact-hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;
    height: 100%;

    margin: 0 auto;
    padding: 0 42px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
}


.star-contact-hero-content {
    width: 620px;
    max-width: 100%;
}


.star-contact-label {
    position: relative;

    display: inline-block;

    margin-bottom: 12px;

    padding-left: 48px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.star-contact-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 36px;
    height: 3px;

    background: var(--star-orange);

    transform: translateY(-50%);
}


.star-contact-hero h1 {
    margin: 0 0 17px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 58px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.star-contact-hero h1 span {
    color: var(--star-orange);
}


.star-contact-hero p {
    max-width: 550px;

    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.star-contact-info {
    width: 100%;

    padding: 28px 0;

    background: #f3f7fa;
}


.star-contact-info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}


.star-contact-info-card {
    min-height: 205px;

    padding: 23px 24px;

    background: #ffffff;

    border: 1px solid #e2e9ee;

    border-radius: 7px;

    box-sizing: border-box;

    box-shadow:
        0 5px 18px rgba(8, 45, 70, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.star-contact-info-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(8, 45, 70, .10);
}


.star-contact-info-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--star-orange);

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;
}


.star-contact-info-card h3 {
    margin: 0 0 9px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 17px;
    line-height: 1.25;

    font-weight: 700;
}

.star-contact-info-card p {
    color: #263f52 !important;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}

.star-contact-info-card span {
    color: #263f52 !important;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}

.star-contact-info-card p strong {
    color: #0b3b5c !important;
    font-weight: 700;
}

.star-contact-info-card a {
    color: #0b3b5c !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.star-contact-info-card a:hover {
    color: #CA500B !important;
}


/* Divider */

.star-contact-card-line {
    background: #cbd6de !important;
    opacity: 1 !important;
}

.star-contact-info-card > span {
    display: block;

    color: #718292;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   NEW REQUEST A QUOTE / WHATSAPP FORM
========================================================= */

.star-contact-quote-section {
    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    box-sizing: border-box;
}


.star-contact-quote-grid {
    width: 100%;

    display: grid;

    grid-template-columns: 46% 54%;

    gap: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e9ee;

    border-radius: 7px;

    box-shadow:
        0 8px 25px rgba(8, 45, 70, .06);

    box-sizing: border-box;
}


/* =========================================
   LEFT IMAGE
========================================= */

.star-contact-quote-image {
    position: relative;

    width: 100%;

    min-height: 570px;

    overflow: hidden;

    background: #e9eff3;

    box-sizing: border-box;
}


.star-contact-quote-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform .5s ease;
}


.star-contact-quote-grid:hover
.star-contact-quote-image img {
    transform: scale(1.025);
}


.star-contact-quote-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(5, 43, 70, .92) 0%,
            rgba(5, 43, 70, .48) 48%,
            rgba(5, 43, 70, .08) 100%
        );

    pointer-events: none;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.star-contact-image-overlay {
    position: absolute;

    z-index: 2;

    left: 32px;
    right: 32px;
    bottom: 32px;
}


.star-contact-image-overlay span {
    display: block;

    margin-bottom: 8px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.star-contact-image-overlay h2 {
    margin: 0 0 9px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 31px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -.5px;
}


.star-contact-image-overlay p {
    max-width: 390px;

    margin: 0;

    color: rgba(255,255,255,.86);

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================
   RIGHT FORM BOX
========================================= */

.star-contact-quote-box {
    width: 100%;

    min-width: 0;

    padding: 34px 38px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================
   FORM HEADING
========================================= */

.star-contact-quote-heading {
    width: 100%;

    margin: 0 0 22px;

    padding: 0;

    box-sizing: border-box;
}


.star-contact-quote-heading > span {
    display: block;

    margin: 0 0 6px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.star-contact-quote-heading h2 {
    position: relative;

    display: inline-block;

    margin: 0;

    padding-bottom: 11px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 29px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.5px;
}


.star-contact-quote-heading h2 strong {
    color: var(--star-orange);

    font-weight: 700;
}


.star-contact-quote-heading h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--star-orange) 0%,
            var(--star-orange) 82%,
            var(--star-navy) 82%,
            var(--star-navy) 100%
        );

    border-radius: 10px;
}


.star-contact-quote-heading p {
    margin: 13px 0 0;

    color: #536979;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   WHATSAPP FORM
========================================= */

.star-quick-quote-form {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* =========================================
   HONEYPOT
========================================= */

.star-quick-quote-form .star-form-hp {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    left: -9999px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* =========================================
   FORM SUBTITLE
========================================= */

.star-quick-quote-form .star-quote-subtitle {
    display: block;

    margin: 0 0 10px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.star-quick-quote-form .star-quote-product-title {
    margin-top: 19px;
}


/* =========================================
   NAME + PHONE
========================================= */

.star-quick-quote-form .star-quote-row {
    width: 100%;

    display: grid;

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

    gap: 12px;

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


/* =========================================
   FORM FIELD
========================================= */

.star-quick-quote-form .star-quote-field {
    width: 100%;

    margin: 0 0 12px;

    padding: 0;

    box-sizing: border-box;
}


.star-quick-quote-form .star-quote-field label {
    display: block;

    margin: 0 0 5px;

    color: #40566a;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 600;
}


.star-quick-quote-form .star-quote-field input {
    display: block;

    width: 100%;

    height: 40px;

    min-height: 40px;

    margin: 0;

    padding: 0 12px;

    box-sizing: border-box;

    background: #ffffff;

    color: #40566a;

    border: 1px solid #d9e1e6;

    border-radius: 4px;

    outline: none;

    box-shadow: none;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: normal;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.star-quick-quote-form .star-quote-field input::placeholder {
    color: #9aa8b3;
}


.star-quick-quote-form .star-quote-field input:focus {
    border-color: var(--star-orange);

    box-shadow:
        0 0 0 3px rgba(202,80,11,.08);
}


/* =========================================
   PRODUCT OPTIONS
========================================= */

.star-quick-quote-form .star-quote-products {
    width: 100%;

    display: grid;

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

    gap: 7px;

    margin: 0 0 15px;

    padding: 0;

    box-sizing: border-box;
}


.star-quick-quote-form .star-product-option {
    width: 100%;

    min-height: 36px;

    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    padding: 7px 9px;

    box-sizing: border-box;

    background: #f6f9fb;

    border: 1px solid #dfe7ec;

    border-radius: 4px;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease;
}


.star-quick-quote-form .star-product-option:hover {
    background: #fff8f4;

    border-color: rgba(202,80,11,.45);
}


.star-quick-quote-form .star-product-option input {
    width: 14px !important;

    height: 14px !important;

    min-width: 14px !important;

    max-width: 14px !important;

    margin: 0 !important;

    padding: 0 !important;

    flex: 0 0 14px;

    accent-color: var(--star-orange);

    cursor: pointer;
}


.star-quick-quote-form .star-product-option span {
    display: block;

    color: #40566a;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.35;

    font-weight: 500;
}


.star-quick-quote-form
.star-product-option:has(input:checked) {
    background: #fff7f2;

    border-color: var(--star-orange);
}


.star-quick-quote-form
.star-product-option:has(input:checked) span {
    color: var(--star-navy);

    font-weight: 600;
}


/* =========================================
   FORM BOTTOM
========================================= */

.star-quick-quote-form .star-quote-bottom {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin: 4px 0 0;

    padding: 14px 0 0;

    border-top: 1px solid #e7edf1;

    box-sizing: border-box;
}


.star-quick-quote-form .star-quote-note {
    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;

    color: #718292;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    line-height: 1.4;
}


.star-quick-quote-form .star-quote-note i {
    color: var(--star-orange);

    font-size: 10px;
}


/* =========================================
   WHATSAPP SUBMIT
========================================= */

.star-quick-quote-form .star-quote-submit {
    min-height: 43px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex: 0 0 auto;

    background: var(--star-orange);

    color: #ffffff;

    border: 1px solid var(--star-orange);

    border-radius: 4px;

    cursor: pointer;

    font-family: "Poppins", sans-serif;

    font-size: 10.5px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.star-quick-quote-form .star-quote-submit i {
    font-size: 14px;

    line-height: 1;

    color: #ffffff;
}


.star-quick-quote-form .star-quote-submit span {
    font-size: 15px;

    line-height: 1;

    color: #ffffff;

    transition: transform .25s ease;
}


.star-quick-quote-form .star-quote-submit:hover {
    background: var(--star-navy);

    border-color: var(--star-navy);

    color: #ffffff;
}


.star-quick-quote-form .star-quote-submit:hover span {
    transform: translateX(2px);
}


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

.star-contact-cta {
    position: relative;

    width: 100%;

    min-height: 205px;

    overflow: hidden;

    background: var(--star-navy);
}


.star-contact-cta-bg {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 43, 70, .97) 0%,
            rgba(5, 43, 70, .88) 45%,
            rgba(5, 43, 70, .55) 100%
        ),
        url("images/contact-cta.jpg");

    background-size: cover;

    background-position: center;
}


.star-contact-cta .star-contact-container {
    position: relative;

    z-index: 2;

    min-height: 205px;

    display: flex;

    align-items: center;
}


.star-contact-cta-inner {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.star-contact-cta-content {
    max-width: 680px;
}


.star-contact-cta-label {
    position: relative;

    display: inline-block;

    margin-bottom: 9px;

    padding-left: 43px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.star-contact-cta-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 32px;
    height: 3px;

    background: var(--star-orange);

    transform: translateY(-50%);
}


.star-contact-cta-content h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 700;
}


.star-contact-cta-content h2 span {
    color: var(--star-orange);
}


.star-contact-cta-content p {
    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.6;
}


.star-contact-cta-action {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;
}


.star-contact-cta-btn,
.star-contact-cta-whatsapp {
    min-height: 46px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 4px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    transition: .25s ease;
}


.star-contact-cta-btn {
    background: var(--star-orange);

    color: #ffffff;

    border: 1px solid var(--star-orange);
}


.star-contact-cta-btn span {
    font-size: 16px;
}


.star-contact-cta-btn:hover {
    background: #ffffff;

    color: var(--star-orange);
}


.star-contact-cta-whatsapp {
    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.45);
}


.star-contact-cta-whatsapp i {
    font-size: 17px;
}


.star-contact-cta-whatsapp:hover {
    background: #ffffff;

    color: var(--star-navy);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-contact-container {
        padding: 0 25px;
    }


    .star-contact-hero {
        height: 380px;
    }


    .star-contact-hero-container {
        padding: 0 25px;
    }


    .star-contact-hero h1 {
        font-size: 50px;
    }


    .star-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* NEW FORM */

    .star-contact-quote-grid {
        grid-template-columns: 44% 56%;
    }


    .star-contact-quote-box {
        padding: 30px 25px;
    }


    .star-contact-quote-image {
        min-height: 570px;
    }


    .star-contact-quote-heading h2 {
        font-size: 27px;
    }


    /* CTA */

    .star-contact-cta-content h2 {
        font-size: 29px;
    }


    .star-contact-cta-action {
        flex-direction: column;

        align-items: stretch;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-contact-container {
        padding: 0 20px;
    }


    /* =====================================
       HERO
    ===================================== */

    .star-contact-hero {
        height: 360px;
    }


    .star-contact-hero-container {
        padding: 0 20px;
    }


    .star-contact-hero-content {
        padding-left: 35px;
    }


    .star-contact-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .star-contact-hero h1 {
        font-size: 40px;

        letter-spacing: -1px;
    }


    .star-contact-hero p {
        max-width: 420px;

        font-size: 11px;

        line-height: 1.6;
    }


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

    .star-contact-info {
        padding: 20px 0;
    }


    .star-contact-info-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }


    .star-contact-info-card {
        min-height: 190px;

        padding: 18px 16px;
    }


    .star-contact-info-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 11px;

        font-size: 18px;
    }


    .star-contact-info-card h3 {
        font-size: 14px;
    }


    .star-contact-info-card p,
    .star-contact-info-card a {
        font-size: 10px;
    }


    .star-contact-info-card > span {
        font-size: 9px;
    }


    /* =====================================
       NEW FORM
    ===================================== */

    .star-contact-quote-section {
        padding: 45px 0;
    }


    .star-contact-quote-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .star-contact-quote-image {
        min-height: 300px;

        height: 300px;
    }


    .star-contact-image-overlay {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


    .star-contact-image-overlay h2 {
        font-size: 27px;
    }


    .star-contact-quote-box {
        padding: 30px 22px;
    }


    .star-contact-quote-heading h2 {
        font-size: 27px;
    }


    .star-quick-quote-form .star-quote-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .star-quick-quote-form .star-quote-products {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }


    .star-quick-quote-form .star-quote-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .star-quick-quote-form .star-quote-note {
        justify-content: center;

        text-align: center;
    }


    .star-quick-quote-form .star-quote-submit {
        width: 100%;

        min-height: 44px;
    }


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

    .star-contact-cta {
        min-height: auto;
    }


    .star-contact-cta .star-contact-container {
        min-height: auto;

        padding-top: 38px;
        padding-bottom: 38px;
    }


    .star-contact-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;
    }


    .star-contact-cta-content h2 {
        font-size: 27px;
    }


    .star-contact-cta-content p {
        font-size: 10px;
    }


    .star-contact-cta-action {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .star-contact-cta-btn,
    .star-contact-cta-whatsapp {
        width: 100%;

        box-sizing: border-box;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-contact-container {
        padding: 0 15px;
    }


    /* =====================================
       HERO
    ===================================== */

    .star-contact-hero {
        height: 340px;
    }


    .star-contact-hero-container {
        padding: 0 15px;
    }


    .star-contact-hero-content {
        padding-left: 25px;
    }


    .star-contact-hero h1 {
        font-size: 34px;
    }


    .star-contact-hero p {
        font-size: 10px;
    }


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

    .star-contact-info-grid {
        grid-template-columns: 1fr;
    }


    .star-contact-info-card {
        min-height: auto;

        padding: 20px;
    }


    /* =====================================
       NEW FORM
    ===================================== */

    .star-contact-quote-section {
        padding: 40px 0;
    }


    .star-contact-quote-image {
        min-height: 250px;

        height: 250px;
    }


    .star-contact-image-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    .star-contact-image-overlay span {
        font-size: 9px;
    }


    .star-contact-image-overlay h2 {
        font-size: 23px;
    }


    .star-contact-image-overlay p {
        font-size: 10px;
    }


    .star-contact-quote-box {
        padding: 25px 17px;
    }


    .star-contact-quote-heading {
        margin-bottom: 20px;
    }


    .star-contact-quote-heading h2 {
        font-size: 24px;
    }


    .star-contact-quote-heading p {
        font-size: 10px;
    }


    .star-quick-quote-form .star-quote-products {
        grid-template-columns: 1fr;
    }


    .star-quick-quote-form .star-product-option {
        min-height: 36px;
    }


    .star-quick-quote-form .star-product-option span {
        font-size: 10px;
    }


    .star-quick-quote-form .star-quote-field input {
        height: 40px;

        min-height: 40px;

        font-size: 11px;
    }


    .star-quick-quote-form .star-quote-submit {
        width: 100%;

        min-height: 44px;

        padding: 0 14px;

        font-size: 10.5px;
    }


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

    .star-contact-cta-content h2 {
        font-size: 24px;
    }


    .star-contact-cta-content p {
        font-size: 9.5px;
    }

}