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

.nf-contact-hero {
    padding: 70px 0 65px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(249, 115, 22, 0.16),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fffaf5 0%,
            #ffffff 100%
        );
}

.nf-contact-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.nf-contact-hero-copy {
    max-width: 800px;
}

.nf-contact-hero h1 {
    margin: 4px 0 18px;

    color: var(--nf-heading);

    font-size: clamp(50px, 5.5vw, 82px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -3px;
}

.nf-contact-hero p {
    max-width: 680px;

    margin: 0;

    color: var(--nf-muted);

    font-size: 17px;
    line-height: 1.75;
}


/* Hero icon */

.nf-contact-hero-icon {
    flex: 0 0 auto;

    padding-right: 50px;
}

.nf-contact-hero-icon > div {
    width: 125px;
    height: 125px;

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

    color: var(--nf-orange-dark);

    background:
        linear-gradient(
            145deg,
            #fff7ed,
            #ffedd5
        );

    border: 1px solid #fed7aa;
    border-radius: 35px;

    box-shadow:
        0 25px 55px rgba(154, 52, 18, 0.12);

    font-size: 46px;

    transform: rotate(5deg);
}


/* =========================================================
   CONTACT LAYOUT
========================================================= */

.nf-contact-section {
    padding: 70px 0 85px;

    background: #fff;
}

.nf-contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(320px, 0.6fr);

    gap: 55px;
}

.nf-contact-heading {
    max-width: 650px;

    margin-bottom: 32px;
}

.nf-contact-heading h2 {
    margin: 2px 0 12px;

    color: var(--nf-heading);

    font-size: clamp(32px, 3vw, 46px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.nf-contact-heading p {
    margin: 0;

    color: var(--nf-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.nf-contact-cards {
    display: grid;

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

    gap: 14px;
}

.nf-contact-card {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    min-height: 160px;

    padding: 25px;

    background: #fff;

    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);

    transition: var(--nf-transition);
}

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

    border-color: #fdba74;

    box-shadow: var(--nf-shadow-hover);
}

.nf-contact-card-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    color: var(--nf-orange-dark);

    background: var(--nf-orange-light);

    border-radius: 13px;

    font-size: 17px;
}

.nf-contact-card-label {
    display: block;

    margin-bottom: 4px;

    color: var(--nf-orange-dark);

    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.nf-contact-card h3 {
    margin: 0 0 7px;

    color: var(--nf-heading);

    font-size: 17px;
    font-weight: 800;
}

.nf-contact-card p,
.nf-contact-card a {
    margin: 0;

    color: var(--nf-muted);

    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;

    word-break: break-word;
}

.nf-contact-card a {
    transition: var(--nf-transition);
}

.nf-contact-card a:hover {
    color: var(--nf-orange-dark);
}


/* =========================================================
   CONTACT SIDE
========================================================= */

.nf-contact-side {
    display: flex;
    flex-direction: column;

    gap: 14px;

    padding-top: 10px;
}


/* Trade card */

.nf-contact-trade-card {
    position: relative;

    overflow: hidden;

    padding: 35px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #7c2d12 0%,
            #c2410c 48%,
            #f97316 100%
        );

    border-radius: var(--nf-radius-lg);

    box-shadow:
        0 25px 60px rgba(154, 52, 18, 0.2);
}

.nf-contact-trade-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: -120px;
    right: -100px;

    border:
        50px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.nf-contact-trade-card > * {
    position: relative;
    z-index: 2;
}

.nf-contact-trade-icon {
    width: 58px;
    height: 58px;

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

    margin-bottom: 26px;

    color: var(--nf-orange-dark);

    background: #fff;

    border-radius: 16px;

    font-size: 21px;
}

.nf-contact-trade-label {
    display: block;

    margin-bottom: 6px;

    color: #fed7aa;

    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.nf-contact-trade-card h2 {
    max-width: 350px;

    margin: 0 0 13px;

    color: #fff;

    font-size: 28px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.nf-contact-trade-card p {
    max-width: 380px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    line-height: 1.7;
}


/* Catalogue */

.nf-contact-catalogue {
    display: grid;

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

    align-items: center;

    gap: 14px;

    padding: 17px;

    background: #fffaf5;

    border: 1px solid #fed7aa;
    border-radius: 15px;

    transition: var(--nf-transition);
}

.nf-contact-catalogue:hover {
    transform: translateY(-3px);

    border-color: var(--nf-orange);

    box-shadow: var(--nf-shadow);
}

.nf-contact-catalogue-icon {
    width: 48px;
    height: 48px;

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

    color: var(--nf-orange-dark);

    background: #fff;

    border-radius: 12px;

    font-size: 17px;
}

.nf-contact-catalogue span {
    display: block;

    margin-bottom: 2px;

    color: var(--nf-orange-dark);

    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.nf-contact-catalogue strong {
    display: block;

    color: var(--nf-heading);

    font-size: 13px;
    font-weight: 800;
}

.nf-contact-catalogue > i {
    color: var(--nf-orange-dark);

    font-size: 12px;
}


/* =========================================================
   MAP
========================================================= */

.nf-contact-map-section {
    padding: 75px 0;

    background: var(--nf-cream);
}

.nf-contact-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}

.nf-contact-map-header h2 {
    margin: 2px 0 0;

    color: var(--nf-heading);

    font-size: 38px;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.nf-contact-map-address {
    max-width: 450px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--nf-muted);

    font-size: 12px;
    font-weight: 600;
}

.nf-contact-map-address i {
    flex: 0 0 auto;

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


/* Actual Google Map */

.nf-contact-map {
    position: relative;

    overflow: hidden;

    min-height: 440px;

    background: #e7e5e4;

    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-lg);

    box-shadow: var(--nf-shadow);
}

.nf-contact-map iframe {
    display: block;

    width: 100% !important;
    height: 440px !important;

    border: 0 !important;
}


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

.nf-contact-bottom-cta {
    padding: 80px 0;

    background: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .nf-contact-layout {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(300px, 0.8fr);

        gap: 30px;
    }

    .nf-contact-trade-card {
        padding: 28px;
    }

}


@media (max-width: 991.98px) {

    .nf-contact-hero {
        padding:
            50px 0
            45px;
    }

    .nf-contact-hero-icon {
        padding-right: 15px;
    }

    .nf-contact-hero-icon > div {
        width: 95px;
        height: 95px;

        border-radius: 27px;

        font-size: 34px;
    }

    .nf-contact-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .nf-contact-side {
        padding-top: 0;
    }

}


@media (max-width: 767.98px) {

    .nf-contact-hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .nf-contact-hero p {
        font-size: 15px;
    }

    .nf-contact-hero-icon {
        display: none;
    }

    .nf-contact-section {
        padding:
            45px 0
            60px;
    }

    .nf-contact-cards {
        grid-template-columns: 1fr;
    }

    .nf-contact-card {
        min-height: auto;
    }

    .nf-contact-map-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

    .nf-contact-map-section {
        padding: 55px 0;
    }

    .nf-contact-map,
    .nf-contact-map iframe {
        min-height: 360px;
        height: 360px !important;
    }

    .nf-contact-bottom-cta {
        padding: 55px 0;
    }

}


@media (max-width: 575.98px) {

    .nf-contact-hero {
        padding:
            38px 0
            35px;
    }

    .nf-contact-hero h1 {
        font-size: 39px;
    }

    .nf-contact-heading h2 {
        font-size: 31px;
    }

    .nf-contact-card {
        padding: 19px;
    }

    .nf-contact-card-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .nf-contact-trade-card {
        padding: 25px 22px;

        border-radius: 20px;
    }

    .nf-contact-trade-card h2 {
        font-size: 24px;
    }

    .nf-contact-map-header h2 {
        font-size: 31px;
    }

    .nf-contact-map,
    .nf-contact-map iframe {
        min-height: 300px;
        height: 300px !important;
    }

}


/* =========================================================
   CONTACT MAP
========================================================= */

.nf-contact-map {
    position: relative;

    width: 100%;
    min-height: 440px;

    overflow: hidden;

    background: #f5f5f4;

    border: 1px solid var(--nf-border);
    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(41, 37, 36, 0.08);
}

.nf-contact-map iframe {
    display: block;

    width: 100% !important;
    height: 440px !important;

    border: 0 !important;
}


/* Mobile */

@media (max-width: 767.98px) {

    .nf-contact-map {
        min-height: 320px;

        border-radius: 15px;
    }

    .nf-contact-map iframe {
        height: 320px !important;
    }

}