/* ============================================================
   GLOBAL REFRIGERATION - CONTACT PAGE
   Prefix: grc-
   ============================================================ */

.grc-page,
.grc-page * {
    box-sizing: border-box;
}

.grc-page {
    --grc-navy: #071c2c;
    --grc-navy-light: #0d2d43;
    --grc-yellow: #f8b900;
    --grc-yellow-dark: #e7aa00;
    --grc-text: #18232d;
    --grc-muted: #66737d;
    --grc-line: #e4e9ed;
    --grc-light: #f5f7f8;
    --grc-white: #ffffff;
    --grc-green: #159447;

    width: 100%;
    overflow: hidden;
    color: var(--grc-text);
    background: #fff;
}

.grc-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================================
   BREADCRUMB / HERO
   ============================================================ */

.grc-breadcrumb {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 44, .97) 0%,
            rgba(7, 28, 44, .92) 44%,
            rgba(7, 28, 44, .68) 100%
        ),
        url("../img/breadcrumb.png") center/cover no-repeat;
}

.grc-breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    right: 9%;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.10);
}

.grc-breadcrumb::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(248,185,0,.18);
    border-radius: 50%;
    z-index: -1;
}

.grc-breadcrumb-inner {
      position: relative;
    z-index: 2;
    padding-top: 65px;
    padding-bottom: 65px;
    padding-left: 30px;
}

.grc-breadcrumb-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--grc-yellow);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.grc-breadcrumb-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--grc-yellow);
}

.grc-breadcrumb h1 {
      max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.04;
    /* letter-spacing: -2px; */
}

.grc-breadcrumb h1 span {
    /*display: block;*/
    color: var(--grc-yellow);
}

.grc-breadcrumb > .grc-container > p,
.grc-breadcrumb-inner > p {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.75;
}

.grc-breadcrumb-path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.grc-breadcrumb-path a {
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}

.grc-breadcrumb-path a:hover {
    color: var(--grc-yellow);
}

.grc-breadcrumb-path strong {
    color: var(--grc-yellow);
    font-weight: 700;
}


/* ============================================================
   QUICK CONTACT CARDS
   ============================================================ */

.grc-contact-info {
    position: relative;
    z-index: 5;
    margin-top: -48px;
}

.grc-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid var(--grc-line);
    box-shadow: 0 18px 50px rgba(7,28,44,.11);
}

.grc-info-item {
    position: relative;
    min-width: 0;
    min-height: 155px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 32px 28px;
    color: var(--grc-text);
    text-decoration: none;
    background: #fff;
    border-right: 1px solid var(--grc-line);
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.grc-info-item:last-child {
    border-right: 0;
}

a.grc-info-item:hover {
    z-index: 2;
    transform: translateY(-5px);
    background: #fffdf7;
    box-shadow: 0 16px 30px rgba(7,28,44,.08);
}

.grc-info-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #f0d374;
    background: #fff9e7;
}

.grc-info-icon span {
    color: var(--grc-navy);
    font-size: 13px;
    font-weight: 800;
}

.grc-info-content {
    min-width: 0;
}

.grc-info-content small {
    display: block;
    margin-bottom: 7px;
    color: var(--grc-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.grc-info-content strong {
      display: block;
    color: var(--grc-navy);
    font-size: 15px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    letter-spacing: 0.3px;
}

.grc-info-content p {
    margin: 8px 0 0;
    color: var(--grc-muted);
    font-size: 13px;
    line-height: 1.65;
}

.grc-info-arrow {
    margin-left: auto;
    color: var(--grc-yellow-dark);
    font-size: 22px;
    transition: transform .25s ease;
}

a.grc-info-item:hover .grc-info-arrow {
    transform: translateX(4px);
}


/* ============================================================
   MAIN CONTACT AREA
   ============================================================ */

.grc-main {
    padding: 115px 0;
    background: #fff;
}

.grc-main-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
    gap: 85px;
    align-items: start;
}

.grc-section-heading small {
    position: relative;
    display: inline-block;
    padding-left: 42px;
    margin-bottom: 15px;
    color: #9b7600;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.grc-section-heading small::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 30px;
    height: 2px;
    background: var(--grc-yellow);
}

.grc-section-heading h2 {
      margin: 0;
    color: var(--grc-navy);
    font-size: clamp(34px, 4vw, 38px);
    font-weight: revert-rule;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.grc-section-heading h2 span {
    color: #d29c00;
}

.grc-lead {
    margin: 25px 0 34px;
    color: var(--grc-muted);
    font-size: 15px;
    line-height: 1.85;
}


/* CONTACT PERSON */

.grc-person {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 20px 0;
    margin-bottom: 8px;
    border-top: 1px solid var(--grc-line);
    border-bottom: 1px solid var(--grc-line);
}

.grc-person-number {
    flex: 0 0 57px;
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    color: var(--grc-navy);
    background: var(--grc-yellow);
    font-size: 15px;
    font-weight: 900;
}

.grc-person small {
    display: block;
    margin-bottom: 3px;
    color: var(--grc-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.grc-person strong {
    display: block;
    color: var(--grc-navy);
    font-size: 17px;
    line-height: 1.4;
}

.grc-person p {
    margin: 4px 0 0;
    color: var(--grc-muted);
    font-size: 13px;
}


/* CONTACT DETAILS */

.grc-detail-list {
    /*display: grid;*/
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin-top: 30px;
    border-top: 1px solid var(--grc-line);
    border-left: 1px solid var(--grc-line);
}

.grc-detail {
    min-width: 0;
    display: flex;
    gap: 14px;
    padding: 22px 18px;
    border-right: 1px solid var(--grc-line);
    border-bottom: 1px solid var(--grc-line);
}

.grc-detail-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--grc-navy);
    background: #fff7dc;
    font-size: 14px;
    font-weight: 800;
}

.grc-detail small {
    display: block;
    margin-bottom: 6px;
    color: var(--grc-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.grc-detail a,
.grc-detail p {
        display: block;
    margin: 0 0 3px;
    color: var(--grc-navy);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    overflow-wrap: anywhere;
    letter-spacing: 0.4px;
    color: #27261d !important;
}

.grc-detail a:hover {
    color: #bd8c00;
}


/* WHATSAPP BOX */

.grc-whatsapp-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 30px;
    padding: 25px;
    overflow: hidden;
    background: var(--grc-navy);
}

.grc-whatsapp-box::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -70px;
    width: 180px;
    height: 180px;
    border: 25px solid rgba(255,255,255,.035);
    border-radius: 50%;
}

.grc-whatsapp-box > * {
    position: relative;
    z-index: 1;
}

.grc-whatsapp-box small {
    display: block;
    margin-bottom: 5px;
    color: var(--grc-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.grc-whatsapp-box strong {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
}

.grc-whatsapp-box p {
    max-width: 330px;
    margin: 7px 0 0;
    color: rgba(255,255,255,.63);
    font-size: 12px;
    line-height: 1.6;
}

.grc-whatsapp-box a {
    flex: 0 0 auto;
    padding: 13px 17px;
    color: #fff;
    background: var(--grc-green);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .25s ease, background .25s ease;
}

.grc-whatsapp-box a:hover {
    transform: translateY(-2px);
    background: #117b3b;
}


/* ============================================================
   CONTACT FORM
   ============================================================ */

.grc-form-card {
    position: relative;
    padding: 45px;
    background: var(--grc-light);
    border: 1px solid #e7ebee;
}

.grc-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 5px;
    background: var(--grc-yellow);
}

.grc-form-top {
    margin-bottom: 28px;
}

.grc-form-number {
    display: inline-block;
    margin-bottom: 14px;
    color: #a27a00;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.grc-form-top h2 {
    margin: 0;
    color: var(--grc-navy);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.grc-form-top h2 span {
    color: #c89400;
}

.grc-form-top p {
    margin: 12px 0 0;
    color: var(--grc-muted);
    font-size: 13px;
    line-height: 1.7;
}

.grc-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.grc-field {
    margin-bottom: 17px;
}

.grc-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--grc-navy);
    font-size: 11px;
    font-weight: 800;
}

.grc-field input,
.grc-field select,
.grc-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #dce2e6;
    outline: 0;
    border-radius: 0;
    color: var(--grc-text);
    background: #fff;
    font: inherit;
    font-size: 13px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.grc-field input,
.grc-field select {
    height: 52px;
    padding: 0 15px;
}

.grc-field textarea {
    min-height: 130px;
    padding: 15px;
    resize: vertical;
    line-height: 1.6;
}

.grc-field input::placeholder,
.grc-field textarea::placeholder {
    color: #99a2a9;
}

.grc-field input:focus,
.grc-field select:focus,
.grc-field textarea:focus {
    border-color: var(--grc-yellow);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(248,185,0,.10);
}

.grc-submit {
    width: 100%;
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px;
    border: 0;
    cursor: pointer;
    color: var(--grc-navy);
    background: var(--grc-yellow);
    font-size: 13px;
    font-weight: 900;
    transition:
        background .25s ease,
        transform .25s ease;
}

.grc-submit:hover {
    background: var(--grc-yellow-dark);
    transform: translateY(-2px);
}

.grc-submit strong {
    font-size: 20px;
}

.grc-form-note {
    margin: 13px 0 0;
    color: #89939a;
    font-size: 10px;
    line-height: 1.6;
}


/* ============================================================
   LOCATION / MAP
   ============================================================ */

.grc-location {
    padding: 105px 0;
    background: #f3f6f7;
}

.grc-location-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.grc-location-heading .grc-section-heading {
    max-width: 660px;
}

.grc-location-address {
    flex: 0 0 270px;
    padding-left: 20px;
    border-left: 2px solid var(--grc-yellow);
}

.grc-location-address small {
    display: block;
    margin-bottom: 5px;
    color: var(--grc-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.grc-location-address strong {
    display: block;
    color: var(--grc-navy);
    font-size: 17px;
}

.grc-location-address p {
    margin: 5px 0 0;
    color: var(--grc-muted);
    font-size: 12px;
    line-height: 1.6;
}

.grc-map-wrap {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #dfe5e7;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(7,28,44,.09);
}

.grc-map-wrap iframe {
    display: block;
    width: 100%;
    height: 500px;
}

.grc-map-card {
    position: absolute;
    left: 35px;
    bottom: 35px;
    width: min(350px, calc(100% - 70px));
    padding: 28px;
    background: var(--grc-navy);
    box-shadow: 0 16px 40px rgba(7,28,44,.25);
}

.grc-map-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--grc-yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.grc-map-card h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.grc-map-card p {
    margin: 12px 0 18px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1.7;
}

.grc-map-card a {
    display: inline-flex;
    padding: 11px 15px;
    color: var(--grc-navy);
    background: var(--grc-yellow);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.grc-final {
    padding: 0 0 105px;
    background: #f3f6f7;
}

.grc-final-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 55px;
    overflow: hidden;
    background: var(--grc-navy);
}

.grc-final-inner::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -180px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(255,255,255,.025);
    border-radius: 50%;
}

.grc-final-copy,
.grc-final-actions {
    position: relative;
    z-index: 1;
}

.grc-final-copy {
    max-width: 620px;
}

.grc-final-copy small {
    display: block;
    margin-bottom: 9px;
    color: var(--grc-yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.grc-final-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(29px, 3.5vw, 43px);
    line-height: 1.12;
}

.grc-final-copy p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 13px;
    line-height: 1.7;
}

.grc-final-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.grc-final-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 19px;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .25s ease;
}

.grc-final-actions a:hover {
    transform: translateY(-2px);
}

.grc-final-call {
    color: var(--grc-navy);
    background: #fff;
}

.grc-final-whatsapp {
    color: #fff;
    background: var(--grc-green);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .grc-main-grid {
        grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
        gap: 45px;
    }

    .grc-info-item {
        padding: 27px 20px;
    }

    .grc-info-content strong {
        font-size: 15px;
    }

    .grc-form-card {
        padding: 35px;
    }

    .grc-whatsapp-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .grc-final-inner {
        padding: 42px 38px;
    }

}


@media (max-width: 900px) {

    .grc-breadcrumb {
        min-height: 340px;
    }

    .grc-info-grid {
        grid-template-columns: 1fr;
    }

    .grc-info-item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--grc-line);
    }

    .grc-info-item:last-child {
        border-bottom: 0;
    }

    .grc-main {
        padding: 85px 0;
    }

    .grc-main-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .grc-form-card {
        width: 100%;
    }

    .grc-location {
        padding: 80px 0;
    }

    .grc-location-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .grc-location-address {
        flex-basis: auto;
    }

    .grc-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    .grc-container {
        width: min(100% - 28px, 1240px);
    }

    .grc-breadcrumb {
        min-height: 360px;
    }

    .grc-breadcrumb-inner {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .grc-breadcrumb h1 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .grc-breadcrumb-inner > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .grc-contact-info {
        margin-top: -30px;
    }

    .grc-info-item {
        gap: 14px;
        padding: 23px 18px;
    }

    .grc-info-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .grc-info-content strong {
        font-size: 14px;
    }

    .grc-main {
        padding: 70px 0;
    }

    .grc-section-heading h2 {
        font-size: 33px;
    }

    .grc-detail-list {
        grid-template-columns: 1fr;
    }

    .grc-person {
        align-items: flex-start;
    }

    .grc-whatsapp-box {
        padding: 22px 19px;
    }

    .grc-whatsapp-box a {
        width: 100%;
        text-align: center;
    }

    .grc-form-card {
        padding: 30px 20px;
    }

    .grc-form-top h2 {
        font-size: 29px;
    }

    .grc-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grc-location {
        padding: 70px 0;
    }

    .grc-location-heading {
        margin-bottom: 27px;
    }

    .grc-map-wrap {
        min-height: auto;
        border-width: 5px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .grc-map-wrap iframe {
        height: 380px;
    }

    .grc-map-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 0;
        padding: 24px 20px;
        box-shadow: none;
    }

    .grc-final {
        padding-bottom: 70px;
    }

    .grc-final-inner {
        padding: 35px 22px;
    }

    .grc-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .grc-final-actions a {
        width: 100%;
    }

}


/* ============================================================
   VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 390px) {

    .grc-breadcrumb h1 {
        font-size: 33px;
    }

    .grc-info-item {
        padding: 20px 15px;
    }

    .grc-info-arrow {
        display: none;
    }

    .grc-section-heading h2 {
        font-size: 29px;
    }

    .grc-form-card {
        padding: 27px 16px;
    }

}


/* ============================================================
   ACCESSIBILITY / REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .grc-page *,
    .grc-page *::before,
    .grc-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}