/* =========================================================
   PICKZON CONTACT US
   Screenshot-inspired UI
   Header + footer remain common
   ========================================================= */

:root {
    --pk-teal: #00bdb0;
    --pk-teal-dark: #009e98;
    --pk-teal-deep: #087f83;
    --pk-dark: #102d3f;
    --pk-text: #405b6c;
    --pk-font: var(--site-font);
}

* {
    box-sizing: border-box;
}

.contact-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.contact-container {
    width: min(1170px, calc(100% - 70px));
    margin: 0 auto;
}

.contact-page h1,
.contact-page h2,
.contact-page h3 {
    font-family: var(--pk-font);
}


/* =========================================================
   COMMON HEADER
   ========================================================= */

#site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100%;
}

#site-header .navbar-main {
    position: relative !important;
    top: auto !important;
}


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

.contact-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(0, 189, 176, .13), transparent 25rem),
        linear-gradient(135deg, #f7fcfd 0%, #eef8f9 52%, #f7fbfc 100%);
    padding: 76px 0;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 74% 14%, rgba(0, 189, 176, .16), transparent 14rem),
        radial-gradient(circle at 58% 88%, rgba(14, 81, 104, .08), transparent 18rem);
}

.contact-hero::after {
    content: "";

    position: absolute;
    right: -5%;
    bottom: -25%;

    width: 58%;
    height: 86%;

    background:
        repeating-linear-gradient(90deg,
            transparent 0 55px,
            rgba(0, 189, 176, .10) 56px 57px);

    transform: skewY(-8deg);

    opacity: .75;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;

    min-height: 520px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;

    align-items: center;

    gap: clamp(45px, 6vw, 90px);
}


/* LEFT */

.contact-copy h1 {
    margin: 0 0 20px;

    color: var(--pk-dark);

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -1.4px;
}

.contact-copy h1 span {
    color: var(--pk-teal);
}

.contact-intro {
    max-width: 460px;
    margin: 0 0 30px;

    color: #405c6d;

    font-family: var(--site-font);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 6px 18px 6px 6px;
    border: 1px solid rgba(23, 84, 103, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 22px rgba(19, 62, 79, .06);
    color: #29495c;
    text-decoration: none;

    font-family: var(--site-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

a.contact-detail:hover {
    transform: translateX(5px);
    border-color: rgba(0, 189, 176, .35);
    box-shadow: 0 12px 26px rgba(0, 126, 132, .12);
    color: var(--pk-dark);
}

.contact-detail.address {
    align-items: flex-start;
    border-radius: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

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

    border-radius: 50%;

    background: var(--pk-teal);
    color: #fff;

    font-size: 20px;

    box-shadow: 0 7px 16px rgba(0, 189, 176, .22);
}

.contact-social {
    display: flex;
    gap: 12px;

    width: fit-content;
    margin-top: 26px;
    padding: 8px;
    border: 1px solid rgba(23, 84, 103, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 22px rgba(19, 62, 79, .06);
}

.contact-social a {
    width: 50px;
    height: 50px;

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

    border-radius: 50%;

    background: linear-gradient(135deg, var(--pk-teal), #00a9a4);
    color: #fff;

    text-decoration: none;

    font-size: 20px;

    transition: .2s ease;
}

.contact-social a:hover {
    transform: translateY(-3px);
    background: var(--pk-teal-dark);
}


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

.contact-form-wrap {
    position: relative;
    z-index: 4;
}

.contact-form {
    width: 100%;
    padding: 26px;
    border: 1px solid rgba(208, 224, 229, .9);
    border-radius: 7px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 55px rgba(16, 67, 81, .14);
}

.contact-form h2 {
    margin: 0 0 12px;
    padding: 15px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00c7bd, #00a9a4);
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.form-intro {
    margin: 0 4px 16px;
    color: #627089;
    text-align: center;
    font-family: var(--site-font);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
}

.contact-form>input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d4dce3;
    outline: none;
    border-radius: 5px;
    background: #fff;

    color: #304858;

    font-family: var(--site-font);
    font-size: 14px;
    font-weight: 500;

    padding: 14px 15px;
    margin-bottom: 14px;
}

.contact-form>input:focus,
.contact-form textarea:focus,
.phone-field:focus-within {
    border-color: var(--pk-teal);
    box-shadow: 0 0 0 4px rgba(0, 189, 176, .12);
}

.contact-form>input {
    height: 55px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}


/* PHONE */

.phone-field {
    width: 100%;

    display: flex;

    overflow: visible;
    margin-bottom: 14px;
    border: 1px solid #d4dce3;
    border-radius: 5px;
    background: #fff;
}

.contact-form .country-code {
    min-width: 108px;
    border-right: 1px solid #dfe5ea;
    background: #f7f9fa;
    color: #384b58;
    font-family: var(--site-font);
    font-size: 14px;
}

.contact-form .country-code-toggle {
    width: 100%;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.contact-form .country-code-toggle i {
    font-size: 9px;
    color: #7b8793;
}

.contact-form .country-code-menu {
    min-width: 176px;
    /* padding: 6px; */
    border: 0;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(16, 67, 81, .16);
}

.contact-form .country-option {
    padding: 8px 10px;
    border-radius: 5px;
    color: #304858;
    font-size: 14px;
}

.phone-field input {
    flex: 1;

    min-width: 0;

    height: 53px;
    border: 0;
    outline: none;

    padding: 14px 15px;

    font-family: var(--site-font);
    font-size: 16px;
}


/* CAPTCHA */

.captcha-box {
    height: 57px;

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

    padding: 7px 9px;

    margin-bottom: 9px;

    border-radius: 3px;

    background: #fff;

    font-family: var(--site-font);
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #222;

    font-size: 13px;
}

.captcha-square {
    width: 18px;
    height: 18px;

    border: 1px solid #999;

    background: #fff;
}

.captcha-right {
    display: flex;
    align-items: center;
    gap: 4px;

    color: #777;

    text-align: center;
}

.captcha-symbol {
    color: #4285f4;

    font-size: 26px;
    font-weight: 700;
}

.captcha-right small {
    display: block;

    font-size: 6px;
    line-height: 1.25;
}

.contact-form .marketing-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
    color: #627089;
    font-family: var(--site-font);
    font-size: 14px;
    line-height: 1.45;
}

.contact-form .marketing-check input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--pk-teal);
    flex: 0 0 18px;
}


/* BUTTON */

.contact-form>button {
    width: 100%;
    min-height: 52px;

    border: 0;
    border-radius: 999px;

    background: linear-gradient(135deg, #00c7bd, #00aaa4);

    color: #fff;

    font-family: var(--pk-font);
    font-size: 14px;
    font-weight: 900;

    letter-spacing: .3px;

    cursor: pointer;

    box-shadow: 0 10px 20px rgba(0, 189, 176, .22);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form>button:hover {
    background: var(--pk-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 158, 152, .28);
}

.form-assurance {
    margin: 8px 2px 0;
    color: #728096;
    text-align: center;
    font-family: var(--site-font);
    font-size: 12px;
    line-height: 1.35;
}


/* =========================================================
   TRUSTED BRANDS
   ========================================================= */

.trusted-section {
    position: relative;
    padding: 64px 0 42px;
    background: linear-gradient(180deg, #fff 0%, #f7fcfc 100%);
}

.trusted-section h2,
.find-us-section h2,
.offices-section h2 {
    margin: 0;

    color: #152f40;

    text-align: center;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.trusted-section h2 {
    position: relative;
    padding-bottom: 60px;
    font-size: clamp(23px, 2.4vw, 30px);
}

.trusted-section h2::after,
.find-us-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    /* background: var(--pk-teal); */
}

.trusted-brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 16px;
    margin-top: 26px;
}

.brand-card {
    position: relative;
    min-height: 108px;

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

    padding: 14px 10px;
    border: 1px solid #e1eaed;
    border-radius: 14px;
    background: #fff;

    box-shadow: 0 8px 20px rgba(22, 64, 79, .06);

    text-align: center;

    font-family: var(--site-font);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.brand-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22%;
    width: 56%;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--pk-teal);
    opacity: .8;
}

.brand-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 189, 176, .35);
    box-shadow: 0 16px 30px rgba(0, 116, 121, .13);
}

.brand-card span {
    color: #647682;
    font-size: 13px;
    font-weight: 600;
}

.brand-card small {
    margin-top: 3px;

    color: #6f7f89;

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

.brand-google {
    font-size: 2rem;
}

.brand-google b {
    color: #4285f4;
}

.brand-google span {
    color: #555;
    font-size: 2rem;
}

.brand-meta {
    color: #1f75df;
    font-size: 2rem;
    font-weight: 800;
}

.brand-meta b {
    font-size: 31px;
}

.brand-ms {
    color: #53616b;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;

}

.brand-ms strong {
    display: block;
    color: #596b77;
    font-size: 16px;
}

.brand-hubspot {
    color: #ff7043;
    font-size: 1.7rem;
    font-weight: 900;
}

.brand-clutch {
    color: #172f40;
    font-size: 1.7rem;
    font-weight: 900;
}

.brand-sortlist {
    color: #65749a;
    font-size: 1.7rem;
    font-weight: 700;
}


/* =========================================================
   FIND US
   ========================================================= */

.find-us-section {
    padding: 58px 0 64px;
    background: #fff;
}

.find-us-section h2 {
    position: relative;
    padding-bottom: 13px;
    font-size: clamp(23px, 2.4vw, 30px);
}

.section-subtitle {
    margin: 10px auto 24px;
    max-width: 580px;

    color: #617583;

    text-align: center;

    font-family: var(--site-font);
    font-size: 15px;
    font-weight: 500;
}

.map-wrapper {
    position: relative;

    width: 100%;
    height: 340px;
    overflow: hidden;

    border-radius: 20px;
    border: 1px solid #dce9eb;
    box-shadow: 0 18px 38px rgba(17, 69, 83, .13);
    background: #e8f5f5;
}

.map-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(5, 53, 65, .18), transparent 48%);
}

.map-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: saturate(.8) contrast(.95);
}

.map-location-card {
    position: absolute;

    left: 28px;
    top: 28px;
    min-width: 285px;
    padding: 18px 20px;

    display: flex;
    flex-direction: column;
    gap: 3px;

    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .94);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(4, 46, 59, .22);

    color: #5c6f7a;

    font-family: var(--site-font);
    font-size: 13px;
}

.map-location-card strong {
    color: #253d4e;

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

.map-location-card a {
    margin-top: 2px;

    color: #2787d6;

    text-decoration: none;

    font-weight: 700;
}

.map-pin {
    position: absolute;

    left: 50%;
    top: 55%;

    transform: translateX(-50%);

    color: #e33d36;

    z-index: 1;
    font-size: 40px;

    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .18));
}

.map-controls {
    position: absolute;

    right: 13px;
    bottom: 13px;

    z-index: 1;
    display: flex;
    flex-direction: column;
}

.map-controls button {
    width: 35px;
    height: 35px;

    border: 1px solid #d7e1e4;
    background: rgba(255, 255, 255, .94);

    color: #555;

    font-size: 23px;

    line-height: 1;

    cursor: pointer;
}

.map-controls button:first-child {
    border-radius: 4px 4px 0 0;
}

.map-controls button:last-child {
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.direct-call {
    width: fit-content;
    max-width: 100%;
    margin: 22px auto 0;
    padding: 11px 18px;
    border: 1px solid rgba(0, 189, 176, .18);
    border-radius: 999px;
    background: #effafa;
    color: #415e70;

    text-align: center;

    font-family: var(--site-font);
    font-size: 14px;
    font-weight: 600;
}

.direct-call a {
    color: var(--pk-teal);

    text-decoration: none;

    font-weight: 900;
}


/* =========================================================
   OFFICE
   ========================================================= */

.offices-section {
    padding: 0 0 22px;
}

.office-card {
    position: relative;

    width: 565px;
    max-width: 100%;

    min-height: 120px;

    margin: 12px auto 0;

    padding: 20px 70px 20px 150px;

    display: flex;
    align-items: center;

    border-radius: 10px;

    background:
        radial-gradient(circle at 88% 50%,
            rgba(0, 189, 176, .10),
            transparent 40%),
        #eef8f9;
}

.usa-flag {
    position: absolute;

    left: 42px;

    width: 72px;
    height: 72px;

    overflow: hidden;

    border-radius: 50%;

    background:
        repeating-linear-gradient(to bottom,
            #b22234 0 5.55%,
            #fff 5.55% 11.1%);

    border: 3px solid #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.usa-flag::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 44%;
    height: 54%;

    background: #3c3b6e;
}

.usa-flag .stars {
    position: absolute;

    left: 6px;
    top: 6px;

    width: 27px;
    height: 23px;

    z-index: 2;

    background:
        radial-gradient(circle,
            #fff 1px,
            transparent 1.6px);

    background-size: 7px 6px;
}

.office-details h3 {
    margin: 0 0 7px;

    color: #173548;

    font-size: 22px;
    font-weight: 900;
}

.office-details p {
    margin: 0;

    color: #526a79;

    font-family: var(--site-font);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.office-pin-icon {
    position: absolute;

    right: 28px;
    top: 27px;

    color: var(--pk-teal);

    font-size: 30px;
}


/* =========================================================
   VIDEO / SUCCESS
   ========================================================= */

.success-section {
    padding: 0 0 22px;
}

.success-card {
    position: relative;

    min-height: 205px;

    overflow: hidden;

    border-radius: 8px;

    background:
        url("../../assets/contact/video-bg.jpg") center/cover no-repeat;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
}

.success-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(3, 38, 53, .95) 0%,
            rgba(3, 38, 53, .78) 43%,
            rgba(3, 38, 53, .28) 100%);
}

.success-content {
    position: relative;

    z-index: 2;

    padding: 29px 40px;

    color: #fff;
}

.success-content h2 {
    margin: 0 0 10px;

    font-size: 28px;
    line-height: 1.22;
    font-weight: 900;
}

.success-content p {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, .9);

    font-family: var(--site-font);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.watch-button {
    border: 0;
    border-radius: 4px;

    padding: 11px 17px;

    background: var(--pk-teal);

    color: #fff;

    font-family: var(--site-font);
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.video-play {
    position: absolute;

    z-index: 3;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 66px;
    height: 66px;

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

    border: 0;
    border-radius: 50%;

    background: var(--pk-teal);

    color: #fff;

    font-size: 37px;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .25);

    transition: .2s ease;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.contact-final-cta {
    padding: 16px 0;

    background: var(--pk-teal);
}

.final-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.final-cta h2 {
    margin: 0 0 3px;

    color: #fff;

    font-size: 22px;
    font-weight: 900;
}

.final-cta p {
    margin: 0;

    color: rgba(255, 255, 255, .92);

    font-family: var(--site-font);
    font-size: 13px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;

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

    gap: 10px;

    padding: 12px 25px;

    border-radius: 4px;

    background: #fff;

    color: var(--pk-teal-dark);

    text-decoration: none;

    white-space: nowrap;

    font-family: var(--site-font);
    font-size: 12px;
    font-weight: 900;

    transition: .2s ease;
}

.cta-button:hover {
    color: var(--pk-teal-dark);
    transform: translateY(-2px);
}


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

@media(max-width:991px) {

    .contact-container {
        width: calc(100% - 40px);
    }

    .contact-hero-inner {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 35px 0;
    }

    .contact-form-wrap {
        width: min(450px, 100%);
        margin: 0 auto;
    }

    .trusted-brands {
        grid-template-columns: repeat(3, 1fr);
    }

    .map-wrapper {
        height: 320px;
    }
}


@media(max-width:767px) {

    .contact-form h2 {
        font-size: 20px;
    }

    .form-intro {
        margin-right: 2px;
        margin-left: 2px;
        font-size: 11px;
    }

    .form-assurance {
        font-size: 11px;
    }

    .trusted-section h2 {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .contact-container {
        width: calc(100% - 28px);
    }

    .contact-hero-inner {
        min-height: auto;

        padding: 28px 0;
    }

    .contact-copy h1 {
        font-size: 34px;
        letter-spacing: -.8px;
    }

    .contact-intro {
        font-size: 14px;
    }

    .contact-detail {
        font-size: 14px;
    }

    .contact-icon,
    .contact-social a {
        width: 42px;
        height: 42px;
    }

    .contact-icon {
        flex-basis: 42px;
        font-size: 17px;
    }

    .contact-social {
        gap: 10px;
    }

    .contact-social a {
        font-size: 17px;
    }

    .trusted-brands {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .brand-card {
        min-height: 88px;
    }

    .brand-google {
        font-size: 14px;
    }

    .brand-google span,
    .brand-card span {
        font-size: 12px;
    }

    .brand-meta {
        font-size: 21px;
    }

    .brand-meta b {
        font-size: 26px;
    }

    .brand-ms strong {
        font-size: 14px;
    }

    .brand-hubspot {
        font-size: 18px;
    }

    .brand-clutch {
        font-size: 1.7rem;
    }

    .brand-sortlist {
        font-size: 1.7rem;
    }

    .map-wrapper {
        height: 330px;
        border-radius: 16px;
    }

    .map-location-card {
        left: 50%;
        top: 18px;
        width: calc(100% - 32px);
        min-width: 0;
        padding: 14px 16px;
        transform: translateX(-50%);
        font-size: 12px;
    }

    .map-pin {
        top: 58%;
        font-size: 36px;
    }

    .direct-call {
        width: 100%;
        padding: 11px 14px;
        font-size: 13px;
    }

    .office-card {
        min-height: 110px;

        padding-left: 105px;
    }

    .usa-flag {
        left: 22px;

        width: 65px;
        height: 65px;
    }

    .office-details h3 {
        font-size: 19px;
    }

    .office-pin-icon {
        right: 18px;
        font-size: 25px;
    }

    .success-card {
        min-height: 220px;
    }

    .success-content {
        padding: 25px 20px;
    }

    .success-content h2 {
        font-size: 23px;
    }

    .video-play {
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    .final-cta {
        flex-direction: column;

        text-align: center;

        gap: 13px;
    }

    .cta-button {
        width: 100%;
    }
}


@media(max-width:380px) {

    .contact-copy h1 {
        font-size: 28px;
    }

    .contact-form {
        padding: 11px;
    }

    .contact-form h2 {
        font-size: 18px;
        padding: 13px 10px;
    }

    .contact-form .country-code {
        min-width: 96px;
    }

    .trusted-section,
    .find-us-section {
        padding-top: 46px;
    }

    .brand-card {
        min-height: 82px;
        padding: 10px 6px;
    }

    .brand-google {
        font-size: 13px;
    }

    .brand-meta {
        font-size: 19px;
    }

    .brand-meta b {
        font-size: 23px;
    }

    .brand-hubspot {
        font-size: 16px;
    }

    .brand-clutch {
        font-size: 1.7rem;
    }

    .brand-sortlist {
        font-size: 1.7rem;
    }

    .map-wrapper {
        height: 310px;
    }

    .map-location-card strong {
        font-size: 15px;
    }
}