/* =========================================================
   PARAKKH — CONTACT PAGE
========================================================= */

.pk-contact-page {

    --contact-navy: #243647;
    --contact-red: #BE3032;
    --contact-text: #5C6870;
    --contact-muted: #8D969B;
    --contact-border: #DDE2E4;
    --contact-light: #F7F8F8;

    width: 100%;

    background: #ffffff;

    color: var(--contact-navy);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;

}


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

.pk-contact-container {

    width: min(1120px, 90%);

    margin: 0 auto;

    padding: 150px 0 120px;

}


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


.pk-contact-eyebrow {

    display: block;

    margin-bottom: 25px;

    color: var(--contact-red);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3.5px;

}


.pk-contact-hero h1 {

    max-width: 850px;

    margin: 0 0 30px;

    font-size: clamp(48px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 500;

}


.pk-contact-hero h1 span {

    display: block;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    font-size: 1.05em;

    font-style: italic;

    font-weight: 600;

    color: var(--contact-red);

}


.pk-contact-hero-content > p {

    max-width: 680px;

    margin: 0;

    font-size: 17px;

    line-height: 1.9;

    color: var(--contact-text);

}


/* =========================================================
   CONTACT GRID
========================================================= */

.pk-contact-grid {

    display: grid;

    grid-template-columns: 35% 65%;

    border-top: 1px solid var(--contact-border);

}


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

.pk-contact-information {

    padding: 60px 60px 0 0;

}


.pk-contact-info-block {

    margin-bottom: 60px;

}


.pk-contact-label {

    display: block;

    margin-bottom: 18px;

    color: var(--contact-red);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

}


.pk-contact-info-block a {

    display: block;

    width: fit-content;

    margin-bottom: 8px;

    color: var(--contact-navy);

    font-size: 15px;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition:
        color .25s ease,
        border-color .25s ease;

}


.pk-contact-info-block a:hover {

    color: var(--contact-red);

    border-color: var(--contact-red);

}


.pk-contact-info-block p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: var(--contact-text);

}


/* =========================================================
   NOTE
========================================================= */

.pk-contact-info-note {

    max-width: 280px;

    padding-top: 35px;

    border-top: 1px solid var(--contact-border);

}


.pk-contact-info-note span {

    display: block;

    margin-bottom: 15px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--contact-muted);

}


.pk-contact-info-note p {

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: var(--contact-text);

}


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

.pk-contact-form-wrapper {

    padding: 60px 0 0 70px;

    border-left: 1px solid var(--contact-border);

}


.pk-contact-form {

    max-width: 650px;

}


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

.pk-contact-field {

    margin-bottom: 32px;

}


.pk-contact-field label {

    display: block;

    margin-bottom: 11px;

    color: var(--contact-navy);

    font-size: 11px;

    font-weight: 600;

}


.pk-contact-field input,
.pk-contact-field textarea {

    width: 100%;

    padding: 15px 0;

    border: 0;

    border-bottom: 1px solid var(--contact-border);

    outline: none;

    background: transparent;

    color: var(--contact-navy);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    font-size: 14px;

    transition:
        border-color .25s ease;

}


.pk-contact-field textarea {

    resize: vertical;

    min-height: 120px;

}


.pk-contact-field input::placeholder,
.pk-contact-field textarea::placeholder {

    color: #AAB0B4;

}


.pk-contact-field input:focus,
.pk-contact-field textarea:focus {

    border-color: var(--contact-red);

}


/* =========================================================
   BUTTON
========================================================= */

.pk-contact-submit {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 15px;

    padding: 17px 25px;

    border: 0;

    background: var(--contact-red);

    color: #ffffff;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .3px;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;

}


.pk-contact-submit span {

    font-size: 19px;

    transition:
        transform .25s ease;

}


.pk-contact-submit:hover {

    background: #A9282B;

    transform: translateY(-2px);

}


.pk-contact-submit:hover span {

    transform: translateX(5px);

}


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

@media (max-width: 800px) {

    .pk-contact-container {

        width: 88%;

        padding: 110px 0 80px;

    }


    .pk-contact-hero {

        margin-bottom: 70px;

    }


    .pk-contact-hero h1 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .pk-contact-grid {

        grid-template-columns: 1fr;

    }


    .pk-contact-information {

        padding: 45px 0;

    }


    .pk-contact-info-block {

        margin-bottom: 40px;

    }


    .pk-contact-form-wrapper {

        padding: 50px 0 0;

        border-left: 0;

        border-top: 1px solid var(--contact-border);

    }

}


@media (max-width: 500px) {

    .pk-contact-hero h1 {

        font-size: 40px;

    }


    .pk-contact-hero-content > p {

        font-size: 16px;

    }

}

.pk-contact-hero {
    background-image: url("imgs/contect.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================================================
   FULL WIDTH CONTACT HERO
========================================================= */

.pk-contact-hero {

    width: 100%;

    min-height: 560px;

    display: flex;

    align-items: center;

    /* background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.82),
            rgba(255, 255, 255, 0.82)
        ),
        url("imgs/contect.png"); */

            background-image: url("imgs/contect.png");
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}


/* Keep text aligned with the rest of the page */

.pk-contact-hero .pk-contact-container {

    width: min(1226px, 90%);

    margin: 0 auto;

    padding: 100px 0;

}


/* Hero text */

.pk-contact-hero-content {

    max-width: 900px;

}


/* =========================================================
   IMPORTANT
   Remove the old padding from the outer container
   if it was controlling the hero.
========================================================= */

.pk-contact-page > .pk-contact-container {

    padding-top: 0;

}

/* =========================================================
   GOOGLE MAP SECTION
========================================================= */

.pk-contact-map-section {
    margin-top: 110px;
    padding-top: 70px;
    border-top: 1px solid var(--contact-border);
}


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

.pk-contact-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}


.pk-contact-map-heading h2 {
    margin: 0;
    color: var(--contact-navy);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 500;
}


.pk-contact-map-heading h2 span {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    font-style: italic;
    font-weight: 600;
    color: var(--contact-red);
}


.pk-contact-map-heading > p {
    margin: 0 0 5px;
    color: var(--contact-text);
    font-size: 14px;
}


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

.pk-contact-map {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #eef1f2;
}


.pk-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%);
}


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

.pk-contact-map {
    transition: transform .3s ease;
}


.pk-contact-map:hover {
    transform: translateY(-2px);
}


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

@media (max-width: 800px) {

    .pk-contact-map-section {
        margin-top: 70px;
        padding-top: 50px;
    }

    .pk-contact-map-heading {
        display: block;
        margin-bottom: 30px;
    }

    .pk-contact-map-heading > p {
        margin-top: 20px;
    }

    .pk-contact-map {
        height: 350px;
    }

}


@media (max-width: 500px) {

    .pk-contact-map-heading h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .pk-contact-map {
        height: 300px;
    }

}