/* =========================================================
   NARINA SAFARIS
   CONTACT PAGE
========================================================= */

.contact-page {
    background: #f7f5ef;
}


/* =========================================================
   CONTACT HERO BANNER
========================================================= */

.contact-hero {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #173429;

    text-align: center;
}


.contact-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(3, 31, 20, 0.38),
            rgba(3, 31, 20, 0.7)
        );
}


.contact-hero-content {
    position: relative;

    z-index: 2;

    width: calc(100% - (var(--site-gutter) * 2));
    max-width: 780px;

    margin: 0 auto;
    padding: 80px 0 65px;
}


.contact-hero-eyebrow {
    margin-bottom: 16px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.contact-hero-eyebrow span {
    width: 34px;
    height: 2px;

    background: var(--narina-red);
}


.contact-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: clamp(48px, 5vw, 72px);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -0.04em;
}


.contact-hero p {
    max-width: 610px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding:
        clamp(70px, 6vw, 95px)
        var(--site-gutter)
        clamp(95px, 8vw, 135px);

    background: #f7f5ef;
}


.contact-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    /* FORM / INFO */
    grid-template-columns:
        minmax(0, 1.75fr)
        minmax(390px, 0.85fr);

    align-items: stretch;

    gap: 24px;
}


/* =========================================================
   FORM PANEL
========================================================= */

.contact-form-panel {
    width: 100%;

    padding:
        52px
        55px;

    background: #ffffff;

    border:
        1px solid
        rgba(4, 60, 37, 0.08);

    border-radius: 17px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-heading {
    width: 100%;
    max-width: 780px;

    margin-bottom: 42px;
}


.contact-form-heading > span {
    display: block;

    margin-bottom: 10px;

    color: var(--narina-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.contact-form-heading h2 {
    margin: 0;

    color: #173429;

    font-family: var(--font-heading);

    font-size: clamp(36px, 3.3vw, 50px);
    font-weight: 600;

    line-height: 1.07;

    letter-spacing: -0.025em;
}


.contact-form-heading p {
    max-width: 740px;

    margin-top: 15px;

    color: #737c76;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
}


/* TWO COLUMN ROW */

.contact-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 20px;
}


/* =========================================================
   FIELD
========================================================= */

.contact-field {
    width: 100%;

    margin-bottom: 22px;
}


.contact-field label {
    display: block;

    margin-bottom: 8px;

    color: #294238;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    color: #173429;

    background: #fbfaf7;

    border:
        1px solid
        rgba(4, 60, 37, 0.14);

    border-radius: 8px;

    outline: none;

    font-family: var(--font-body);

    font-size: 12px;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* INPUT */

.contact-field input {
    min-height: 54px;

    padding:
        0
        17px;
}


/* SELECT */

.contact-field select {
    min-height: 54px;

    padding:
        0
        17px;

    cursor: pointer;
}


/* TEXTAREA */

.contact-field textarea {
    min-height: 180px;

    padding:
        16px
        17px;

    resize: vertical;

    line-height: 1.6;
}


/* PLACEHOLDERS */

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9da49f;
}


/* FOCUS */

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: #ffffff;

    border-color: var(--narina-green);

    box-shadow:
        0 0 0 3px
        rgba(5, 106, 61, 0.07);
}


/* =========================================================
   PHONE FIELD
========================================================= */

.phone-field {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: stretch;

    background: #fbfaf7;

    border:
        1px solid
        rgba(4, 60, 37, 0.14);

    border-radius: 8px;

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.phone-prefix {
    min-width: 74px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #173429;

    border-right:
        1px solid
        rgba(4, 60, 37, 0.12);

    font-size: 11px;
    font-weight: 700;
}


.phone-field input {
    min-width: 0;

    flex: 1;

    min-height: 52px;

    border: 0;

    border-radius: 0;

    background: transparent;

    box-shadow: none;
}


.phone-field input:focus {
    box-shadow: none;
}


.phone-field:focus-within {
    background: #ffffff;

    border-color: var(--narina-green);

    box-shadow:
        0 0 0 3px
        rgba(5, 106, 61, 0.07);
}


/* =========================================================
   FORM FOOTER
========================================================= */

.contact-form-footer {
    margin-top: 2px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.contact-form-footer p {
    margin: 0;

    color: #8b928e;

    font-size: 10px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    min-width: 180px;
    min-height: 54px;

    padding:
        0
        26px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #ffffff;

    background: var(--narina-red);

    border: 0;

    cursor: pointer;

    font-family: var(--font-body);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.contact-submit svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.contact-submit:hover {
    background: var(--narina-dark-red);

    transform: translateY(-2px);
}


.contact-submit:hover svg {
    transform: translateX(5px);
}


/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.contact-info-card {
    width: 100%;
    max-width: none;

    padding:
        46px
        38px
        38px;

    display: flex;

    flex-direction: column;

    background: #0b553c;

    color: #ffffff;

    border-radius: 17px;

    box-shadow:
        0 20px 50px
        rgba(17, 57, 37, 0.12);
}


/* =========================================================
   INFO TOP
========================================================= */

.contact-info-top {
    margin-bottom: 10px;
}


.contact-info-label {
    display: block;

    margin-bottom: 12px;

    color: #b9d1c4;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.contact-info-top h2 {
    margin: 0;

    max-width: 280px;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: 34px;
    font-weight: 600;

    line-height: 1.06;

    letter-spacing: -0.02em;
}


.contact-info-top p {
    margin-top: 17px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT INFO ITEM
========================================================= */

.contact-info-item {
    width: 100%;

    margin-top: 17px;

    padding:
        16px
        15px;

    display: flex;

    align-items: center;

    gap: 13px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


a.contact-info-item:hover {
    background:
        rgba(255, 255, 255, 0.14);

    transform: translateX(3px);
}


/* ICON */

.contact-info-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.28);

    border-radius: 50%;
}


.contact-info-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* INFO TEXT */

.contact-info-item small {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.contact-info-item strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.4;

    word-break: break-word;
}


/* =========================================================
   SOCIAL AREA
========================================================= */

.contact-social-area {
    margin-top: auto;

    padding-top: 45px;
}


.contact-social-area > span {
    display: block;

    margin-bottom: 15px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.contact-socials {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* SOCIAL BUTTON */

.contact-socials a {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.27);

    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.contact-socials a:hover {
    background: var(--narina-red);

    border-color: var(--narina-red);

    transform: translateY(-3px);
}


/* DEFAULT SVG */

.contact-socials svg {
    width: 17px;
    height: 17px;

    fill: currentColor;

    stroke: none;
}


/* INSTAGRAM */

.contact-socials a:nth-child(2) svg {
    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;
}


.contact-socials .social-fill {
    fill: currentColor;

    stroke: none;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.contact-bottom {
    padding:
        clamp(70px, 7vw, 100px)
        var(--site-gutter);

    text-align: center;

    background: #ffffff;
}


.contact-bottom-inner {
    width: 100%;
    max-width: 750px;

    margin: 0 auto;
}


.contact-bottom span {
    color: var(--narina-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.contact-bottom h2 {
    margin: 14px 0 0;

    color: #173429;

    font-family: var(--font-heading);

    font-size: clamp(36px, 4vw, 57px);
    font-weight: 600;

    line-height: 1.05;
}


.contact-bottom p {
    margin-top: 12px;

    color: #777f7a;

    font-size: 14px;
}


/* =========================================================
   SMALL DESKTOP
========================================================= */

@media (max-width: 1150px) {

    .contact-container {
        max-width: 1080px;

        grid-template-columns:
            minmax(0, 1.6fr)
            minmax(340px, 0.9fr);

        gap: 20px;
    }


    .contact-form-panel {
        padding:
            45px
            40px;
    }


    .contact-info-card {
        padding:
            40px
            30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-container {
        grid-template-columns: 1fr;

        max-width: 800px;
    }


    .contact-info-card {
        width: 100%;
        max-width: none;

        min-height: auto;

        padding:
            42px
            38px;
    }


    .contact-info-top {
        max-width: 600px;
    }


    .contact-info-top h2 {
        max-width: 500px;

        font-size: 34px;
    }


    .contact-social-area {
        margin-top: 35px;

        padding-top: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-hero {
        min-height: 390px;
    }


    .contact-hero-content {
        padding: 65px 0 50px;
    }


    .contact-hero h1 {
        font-size: 45px;
    }


    .contact-hero p {
        font-size: 13px;
    }


    .contact-section {
        padding:
            55px
            var(--site-gutter)
            70px;
    }


    .contact-form-panel {
        padding:
            32px
            22px;

        border-radius: 12px;
    }


    .contact-form-heading {
        margin-bottom: 32px;
    }


    .contact-form-heading h2 {
        font-size: 34px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-field {
        margin-bottom: 18px;
    }


    .contact-field input,
    .contact-field select {
        min-height: 50px;
    }


    .contact-field textarea {
        min-height: 155px;
    }


    .contact-form-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .contact-submit {
        width: 100%;

        min-height: 52px;
    }


    .contact-info-card {
        padding:
            34px
            22px;

        border-radius: 12px;
    }


    .contact-info-top h2 {
        font-size: 30px;
    }


    .contact-info-item {
        padding:
            14px
            13px;
    }


    .contact-info-icon {
        width: 38px;
        height: 38px;
    }


    .contact-social-area {
        margin-top: 30px;

        padding-top: 10px;
    }


    .contact-bottom {
        padding:
            60px
            var(--site-gutter);
    }


    .contact-bottom h2 {
        font-size: 36px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .contact-socials {
        gap: 7px;
    }


    .contact-socials a {
        width: 39px;
        height: 39px;
    }


    .contact-info-item strong {
        font-size: 11px;
    }

}


/* =========================================================
   CONTACT FORM SYSTEM MESSAGES
========================================================= */

.contact-form-status {
    display: none;

    width: 100%;

    margin:
        4px
        0
        22px;

    padding:
        16px
        18px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.5;
}


.contact-form-status.success {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #0b553c;

    background: #edf8f2;

    border:
        1px solid
        rgba(11, 85, 60, 0.18);
}


.contact-form-status.success::before {
    content: "✓";

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #0b553c;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 700;
}


.contact-form-status.error {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #b50918;

    background: #fff1f2;

    border:
        1px solid
        rgba(213, 0, 18, 0.15);
}


.contact-form-status.error::before {
    content: "!";

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: var(--narina-red);

    border-radius: 50%;

    font-size: 13px;

    font-weight: 700;
}


.contact-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;
}


.contact-submit.sending {
    pointer-events: none;
}


/* =========================================================
   HONEYPOT - NEVER SHOW TO REAL USERS
========================================================= */

.contact-honeypot {
    position: absolute !important;

    left: -9999px !important;
    top: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;

    visibility: hidden !important;
}


.contact-honeypot input,
.contact-honeypot label {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}



/* =========================================================
   NARINA SAFARIS
   CONTACT PAGE — CINEMATIC DARK / PREMIUM GLASS OVERRIDES
   Added after the original stylesheet so these rules win.
========================================================= */

:root {
    --contact-cream: #f5f1e7;
    --contact-sage: #c7d5cc;
    --contact-muted: #95a69c;
    --contact-line: rgba(255,255,255,.08);
}

/* PAGE */
.contact-page {
    color: var(--contact-cream);
    background:
        radial-gradient(circle at 18% 16%, rgba(99,112,77,.10), transparent 26%),
        radial-gradient(circle at 84% 64%, rgba(17,87,61,.12), transparent 30%),
        linear-gradient(to bottom, #111613 0%, #0b130f 22%, #06110d 58%, #030b08 100%);
}

/* HERO */
.contact-hero {
    border-bottom: 1px solid rgba(255,255,255,.055);
}
.contact-hero-image {
    filter: saturate(.94) brightness(.84) contrast(1.04);
    transform: scale(1.01);
}
.contact-hero-overlay {
    background:
        linear-gradient(to top, rgba(2,18,11,.90) 0%, rgba(2,18,11,.42) 42%, rgba(2,18,11,.17) 72%, rgba(2,18,11,.38) 100%),
        linear-gradient(to right, rgba(3,28,19,.34), rgba(3,28,19,.04) 52%, rgba(3,21,14,.28)),
        radial-gradient(circle at 50% 44%, transparent 18%, rgba(0,0,0,.30) 100%);
}
.contact-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(8,18,14,.52));
}
.contact-hero h1 {
    color: var(--contact-cream);
    text-shadow: 0 12px 42px rgba(0,0,0,.28);
}
.contact-hero p {
    color: rgba(245,241,231,.78);
}

/* MAIN CONTACT AREA */
.contact-section {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(118,96,56,.08), transparent 34%),
        radial-gradient(circle at 86% 55%, rgba(19,91,63,.13), transparent 30%),
        linear-gradient(to bottom, #151916 0%, #0f1512 28%, #08130f 68%, #05100c 100%);
}
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background: linear-gradient(120deg, rgba(255,255,255,.014), transparent 28%, transparent 74%, rgba(255,255,255,.010));
}
.contact-container {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0,1.72fr) minmax(360px,.88fr);
    gap: 24px;
}

/* FORM PANEL */
.contact-form-panel {
    position: relative;
    overflow: hidden;
    padding: 54px 55px;
    color: var(--contact-cream);
    background:
        linear-gradient(145deg, rgba(255,255,255,.075) 0%, rgba(255,255,255,.03) 42%, rgba(255,255,255,.018) 100%),
        rgba(14,26,20,.76);
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 24px 60px rgba(0,0,0,.30);
    backdrop-filter: blur(22px) saturate(1.1);
    -webkit-backdrop-filter: blur(22px) saturate(1.1);
}
.contact-form-panel::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -160px;
    top: -210px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255,255,255,.035);
}
.contact-form-heading,
.contact-form {
    position: relative;
    z-index: 2;
}
.contact-form-heading > span {
    color: #ff727b;
}
.contact-form-heading h2 {
    color: var(--contact-cream);
}
.contact-form-heading p {
    color: rgba(205,217,210,.66);
}

/* FORM LABELS + FIELDS */
.contact-field label {
    color: rgba(235,240,236,.84);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    color: #f2f5f2;
    color-scheme: dark;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.contact-field select option {
    color: #f2f5f2;
    background: #16211c;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(223,232,226,.36);
}
.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.055);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: rgba(255,255,255,.065);
    border-color: #7cab90;
    box-shadow: 0 0 0 3px rgba(124,171,144,.12);
}

/* PHONE FIELD */
.phone-field {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
}
.phone-prefix {
    color: #dce6df;
    border-right-color: rgba(255,255,255,.09);
}
.phone-field:focus-within {
    background: rgba(255,255,255,.065);
    border-color: #7cab90;
    box-shadow: 0 0 0 3px rgba(124,171,144,.12);
}
.contact-form-footer p {
    color: rgba(204,216,208,.42);
}

/* SUBMIT BUTTON */
.contact-submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e20b1c 0%, #c60017 100%);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 10px 24px rgba(190,0,18,.18);
}
.contact-submit::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -45%;
    width: 32%;
    opacity: 0;
    transform: skewX(-20deg);
    background: linear-gradient(to right, transparent, rgba(255,255,255,.18), transparent);
    transition: left .45s ease, opacity .25s ease;
}
.contact-submit:hover {
    background: linear-gradient(135deg, #f01628, #b80015);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 14px 30px rgba(190,0,18,.26);
}
.contact-submit:hover::before {
    left: 120%;
    opacity: 1;
}

/* INFO CARD */
.contact-info-card {
    position: relative;
    overflow: hidden;
    padding: 48px 38px 38px;
    background:
        radial-gradient(circle at 10% 0%, rgba(91,173,128,.22), transparent 34%),
        radial-gradient(circle at 95% 100%, rgba(7,48,33,.42), transparent 38%),
        linear-gradient(150deg, rgba(12,98,66,.97), rgba(6,59,41,.98));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 24px 60px rgba(0,0,0,.30);
}
.contact-info-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -160px;
    top: -190px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255,255,255,.045);
}
.contact-info-card::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24%;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.12), transparent);
}
.contact-info-top,
.contact-info-item,
.contact-social-area {
    position: relative;
    z-index: 2;
}
.contact-info-label {
    color: rgba(208,232,218,.72);
}
.contact-info-top p {
    color: rgba(255,255,255,.66);
}

/* INFO ROWS */
.contact-info-item {
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
a.contact-info-item:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.14);
    transform: translateX(4px);
}
.contact-info-icon {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.24);
}

/* SOCIALS */
.contact-socials a {
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.contact-socials a:hover {
    background: var(--narina-red);
    border-color: var(--narina-red);
}

/* OPTIONAL BOTTOM MESSAGE */
.contact-bottom {
    background:
        radial-gradient(circle at 50% 0%, rgba(125,98,53,.07), transparent 36%),
        linear-gradient(to bottom, #111613, #0d120f);
    border-top: 1px solid rgba(255,255,255,.055);
}
.contact-bottom h2 {
    color: var(--contact-cream);
}
.contact-bottom p {
    color: rgba(204,216,208,.62);
}
.contact-bottom span {
    color: #ff727b;
}

/* STATUS MESSAGES */
.contact-form-status.success {
    color: #d9f2e3;
    background: rgba(48,132,83,.15);
    border-color: rgba(91,184,126,.24);
}
.contact-form-status.error {
    color: #ffd5d9;
    background: rgba(179,20,39,.14);
    border-color: rgba(230,65,82,.24);
}

/* SMALL DESKTOP */
@media (max-width: 1150px) {
    .contact-container {
        grid-template-columns: minmax(0,1.58fr) minmax(330px,.92fr);
    }

    .contact-form-panel {
        padding: 46px 40px;
    }

    .contact-info-card {
        padding: 42px 30px;
    }
}

/* TABLET */
@media (max-width: 950px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-card::after {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .contact-section {
        padding:
            56px
            var(--site-gutter)
            72px;
    }

    .contact-form-panel,
    .contact-info-card {
        border-radius: 17px;
    }

    .contact-form-panel {
        padding: 32px 22px;
    }

    .contact-info-card {
        padding: 35px 22px;
    }
}