/* =========================================================
   PRIMEVITALS — CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT MAIN SECTION
========================================================= */

.pv-contact-section {
    padding: 90px 0;
    background: #ffffff;
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.pv-contact-intro {
    padding-right: 35px;
}

.pv-contact-intro .pv-section-eyebrow,
.pv-contact-map-header .pv-section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: #0798b8;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pv-contact-intro h2 {
    margin: 0 0 18px;

    color: #1e2d5b;

    font-family: "Manrope", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.pv-contact-intro h2 span {
    color: #0798b8;
}

.pv-contact-intro > p {
    margin: 0;

    color: #6c7485;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.pv-contact-details {
    margin-top: 38px;
}

.pv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    padding: 19px 0;

    border-bottom: 1px solid #edf1f4;
}

.pv-contact-item:first-child {
    padding-top: 0;
}

.pv-contact-item:last-child {
    border-bottom: 0;
}

.pv-contact-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0798b8;
    background: #eef9fb;

    border-radius: 12px;

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.pv-contact-item:hover .pv-contact-icon {
    color: #ffffff;
    background: #0798b8;
    transform: translateY(-2px);
}

.pv-contact-item span {
    display: block;
    margin-bottom: 4px;

    color: #9aa3af;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.pv-contact-item a {
    color: #1e2d5b;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}

.pv-contact-item a:hover {
    color: #0798b8;
}

.pv-contact-item p {
    margin: 0;

    color: #566173;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.pv-contact-form-card {
    position: relative;

    padding: 40px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4ebef;
    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(30, 45, 91, 0.08);
}

.pv-contact-form-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #1e2d5b,
        #0798b8,
        #35c0d9
    );
}


/* =========================================================
   FORM HEADER
========================================================= */

.pv-contact-form-header {
    margin-bottom: 28px;
}

.pv-form-label {
    display: inline-block;
    margin-bottom: 9px;

    color: #0798b8;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.pv-contact-form-header h3 {
    margin: 0 0 8px;

    color: #1e2d5b;

    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
}

.pv-contact-form-header p {
    margin: 0;

    color: #7a8493;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM LABELS
========================================================= */

.pv-contact-form label {
    display: block;
    margin-bottom: 8px;

    color: #1e2d5b;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.pv-input-wrapper {
    position: relative;
}

.pv-input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 15px;

    z-index: 2;

    color: #8e9aa8;

    font-size: 15px;

    transform: translateY(-50%);

    pointer-events: none;

    transition: color 0.3s ease;
}

.pv-input-wrapper:focus-within > i {
    color: #0798b8;
}


/* =========================================================
   INPUTS + SELECT
========================================================= */

.pv-input-wrapper input,
.pv-input-wrapper select,
.pv-input-wrapper textarea {
    width: 100%;

    color: #1e2d5b;
    background: #f8fafb;

    border: 1px solid #e3e9ed;
    border-radius: 9px;

    outline: none;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.pv-input-wrapper input,
.pv-input-wrapper select {
    height: 52px;
    padding: 0 15px 0 43px;
}

.pv-input-wrapper textarea {
    min-height: 145px;

    padding: 15px 15px 15px 43px;

    resize: vertical;

    line-height: 1.6;
}

.pv-input-wrapper input::placeholder,
.pv-input-wrapper textarea::placeholder {
    color: #a6afb9;
}

.pv-input-wrapper select {
    color: #7d8795;

    cursor: pointer;

    appearance: auto;
}

.pv-input-wrapper input:focus,
.pv-input-wrapper select:focus,
.pv-input-wrapper textarea:focus {
    background: #ffffff;

    border-color: #0798b8;

    box-shadow:
        0 0 0 3px rgba(7, 152, 184, 0.08);
}

.pv-input-wrapper textarea + i {
    top: 20px;

    transform: none;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.pv-contact-submit {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 8px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #1e2d5b,
        #0798b8
    );

    border: 0;
    border-radius: 9px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(7, 152, 184, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.pv-contact-submit:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(7, 152, 184, 0.24);

    filter: brightness(1.04);
}

.pv-contact-submit i {
    transition: transform 0.3s ease;
}

.pv-contact-submit:hover i {
    transform: translateX(5px);
}


/* =========================================================
   QUICK CONTACT OPTIONS
========================================================= */

.pv-contact-options {
    padding: 0 0 90px;

    background: #ffffff;
}

.pv-contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pv-contact-option {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 100px;

    padding: 20px 22px;

    color: inherit;
    background: #f6f9fb;

    border: 1px solid #e5ecef;
    border-radius: 15px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.pv-contact-option:hover {
    color: inherit;

    background: #ffffff;

    border-color: rgba(7, 152, 184, 0.25);

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(30, 45, 91, 0.08);
}

.pv-contact-option-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0798b8;
    background: #eaf8fb;

    border-radius: 11px;

    font-size: 17px;
}

.pv-contact-option div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.pv-contact-option span {
    display: block;
    margin-bottom: 4px;

    color: #99a2ae;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.pv-contact-option strong {
    display: block;

    color: #1e2d5b;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.pv-contact-option > i:last-child {
    color: #9aa5b2;

    font-size: 15px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.pv-contact-option:hover > i:last-child {
    color: #0798b8;
    transform: translate(3px, -3px);
}


/* =========================================================
   MAP SECTION
========================================================= */

.pv-contact-map-section {
    padding: 90px 0;

    background: #f6f9fb;
}

.pv-contact-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 30px;
}

.pv-contact-map-header h2 {
    margin: 0;

    color: #1e2d5b;

    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.pv-contact-map-header p {
    max-width: 480px;

    margin: 0;

    color: #6c7485;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

.pv-contact-map {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 8px solid #ffffff;
    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(30, 45, 91, 0.10);
}

.pv-contact-map iframe {
    display: block;

    width: 100%;
    min-height: 450px;

    border: 0;

    filter: grayscale(15%);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .pv-contact-section {
        padding: 75px 0;
    }

    .pv-contact-intro h2 {
        font-size: 36px;
    }

    .pv-contact-form-card {
        padding: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pv-contact-intro {
        padding-right: 0;
    }

    .pv-contact-form-card {
        margin-top: 15px;
    }

    .pv-contact-options-grid {
        grid-template-columns: 1fr;
    }

    .pv-contact-map-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .pv-contact-section {
        padding: 60px 0;
    }

    .pv-contact-intro h2 {
        font-size: 29px;
    }

    .pv-contact-intro > p {
        font-size: 14px;
    }

    .pv-contact-details {
        margin-top: 28px;
    }

    .pv-contact-item {
        gap: 13px;
        padding: 16px 0;
    }

    .pv-contact-icon {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;

        font-size: 16px;
    }

    .pv-contact-item a {
        font-size: 13px;
    }

    .pv-contact-item p {
        font-size: 13px;
    }

    .pv-contact-form-card {
        padding: 28px 20px;

        border-radius: 17px;
    }

    .pv-contact-form-header h3 {
        font-size: 24px;
    }

    .pv-contact-form-header p {
        font-size: 13px;
    }

    .pv-input-wrapper input,
    .pv-input-wrapper select {
        height: 50px;
    }

    .pv-input-wrapper textarea {
        min-height: 125px;
    }

    .pv-contact-options {
        padding-bottom: 60px;
    }

    .pv-contact-option {
        min-height: 90px;
        padding: 17px;
    }

    .pv-contact-map-section {
        padding: 60px 0;
    }

    .pv-contact-map-header h2 {
        font-size: 28px;
    }

    .pv-contact-map-header p {
        font-size: 13px;
    }

    .pv-contact-map {
        border-width: 5px;
        border-radius: 14px;
    }

    .pv-contact-map iframe {
        min-height: 350px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pv-contact-section {
        padding: 50px 0;
    }

    .pv-contact-intro h2 {
        font-size: 26px;
    }

    .pv-contact-form-card {
        padding: 25px 16px;
    }

    .pv-contact-form .row {
        --bs-gutter-x: 0.75rem;
    }

    .pv-contact-option {
        gap: 11px;
    }

    .pv-contact-option-icon {
        flex: 0 0 40px;

        width: 40px;
        height: 40px;
    }

    .pv-contact-option strong {
        font-size: 12px;
    }

    .pv-contact-map iframe {
        min-height: 300px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .pv-contact-icon,
    .pv-contact-option,
    .pv-contact-submit,
    .pv-contact-submit i {
        transition: none;
    }

}