/* =========================================================
   HIREPROO — CONTACT PAGE
   contact.css
========================================================= */


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

.contact-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(37, 99, 235, 0.24),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #06111f 0%,
            #0a1d32 55%,
            #04101d 100%
        );
}

.contact-hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(83, 184, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(37, 99, 235, 0.10),
            transparent 32%
        );
}

.contact-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.055) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        black 0%,
        black 45%,
        transparent 92%
    );
}

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

    width: 1200px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(350px, 0.95fr);

    gap: 70px;
    align-items: center;

    padding-top: 85px;
    padding-bottom: 85px;
}

.contact-hero-content {
    max-width: 720px;
}

.contact-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 24px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: rgba(255,255,255,0.72);
}

.contact-hero-eyebrow span {
    width: 38px;
    height: 1px;
    flex-shrink: 0;

    background: currentColor;
}

.contact-hero h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 700;
}

.contact-hero h1 span {
    display: block;
    color: #53b8ff;
}

.contact-hero-content > p {
    max-width: 650px;

    margin: 30px 0 0;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255,255,255,0.70);
}

.contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 38px;
}

.contact-hero-buttons .btn {
    text-decoration: none;
}


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

.contact-hero-visual {
    position: relative;

    min-height: 430px;

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

.contact-hero-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: rgba(0,132,255,0.20);

    filter: blur(90px);

    z-index: 0;
}

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

    width: min(100%, 440px);
    min-height: 430px;

    padding: 42px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(16px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35),
        0 0 70px rgba(30,140,255,0.10);
}

.contact-hero-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -90px;
    right: -70px;

    border-radius: 50%;

    background: rgba(83,184,255,0.12);

    filter: blur(5px);
}

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

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(0,110,255,0.12),
            transparent 45%,
            rgba(0,0,0,0.20)
        );
}

.contact-card-line {
    position: absolute;

    top: 0;
    left: 42px;

    width: 70px;
    height: 3px;

    background: #53b8ff;

    border-radius: 0 0 5px 5px;
}

.contact-card-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(83,184,255,0.12);
    border: 1px solid rgba(83,184,255,0.18);

    color: #53b8ff;

    font-size: 24px;
}

.contact-hero-card > span {
    position: relative;
    z-index: 2;

    margin-top: 25px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.55);
}

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

    margin-top: 15px;

    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.03;
    letter-spacing: -2px;

    font-weight: 600;
}

.contact-card-footer {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-card-footer span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;

    color: rgba(255,255,255,0.42);
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro {
    background: #ffffff;
}

.contact-intro-layout {
    display: grid;

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

    gap: 60px;

    align-items: start;
}

.contact-side-label {
    display: flex;
    align-items: center;
    gap: 12px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #64748b;
}

.contact-side-label span {
    width: 1px;
    height: 42px;

    background: #2563eb;
}

.contact-intro-content {
    max-width: 850px;
}

.contact-intro-content h2 {
    margin: 0 0 25px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;

    color: #071525;
}

.contact-intro-content h2 span {
    display: block;
    color: #2563eb;
}

.contact-intro-content p {
    max-width: 760px;

    margin: 0 0 18px;

    line-height: 1.8;

    color: #64748b;
}

.contact-intro-content .large-text {
    font-size: 20px;
    line-height: 1.7;

    color: #334155;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    padding: 0 0 100px;

    background: #ffffff;
}

.contact-details-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.contact-detail-card {
    position: relative;

    min-height: 285px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid #e1e8f0;
    border-radius: 16px;

    background: #ffffff;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.contact-detail-card:hover {
    transform: translateY(-7px);

    border-color: rgba(37,99,235,0.30);

    box-shadow:
        0 25px 55px rgba(15,23,42,0.09);
}

.contact-detail-number {
    position: absolute;

    top: 23px;
    right: 27px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #94a3b8;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: 12px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 20px;
}

.contact-detail-content {
    max-width: 300px;
}

.contact-detail-label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: #2563eb;
}

.contact-detail-content h3 {
    margin: 0 0 12px;

    font-size: 21px;

    color: #0f172a;
}

.contact-detail-content p {
    margin: 0 0 20px;

    font-size: 14px;
    line-height: 1.7;

    color: #64748b;
}

.contact-detail-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    color: #2563eb;

    transition: gap 0.25s ease;
}

.contact-detail-content a span {
    font-size: 17px;
}

.contact-detail-content a:hover {
    gap: 13px;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    position: relative;

    background: #f5f8fc;
}

.contact-form-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(420px, 1.18fr);

    gap: 80px;

    align-items: start;
}

.contact-form-content {
    max-width: 620px;
}

.contact-form-content h2 {
    margin: 15px 0 22px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;

    color: #071525;
}

.contact-form-content h2 span {
    display: block;

    color: #2563eb;
}

.contact-form-content > p {
    color: #64748b;
    line-height: 1.8;
}

.contact-form-content .large-text {
    font-size: 19px;
    color: #334155;
    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM POINTS
========================================================= */

.contact-form-points {
    display: grid;

    gap: 14px;

    margin-top: 32px;
}

.contact-form-points div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-points span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #eff6ff;

    color: #2563eb;

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

.contact-form-points strong {
    font-size: 13px;
    font-weight: 600;

    color: #334155;
}


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

.contact-form-wrapper {
    padding: 38px;

    border: 1px solid #e0e7ef;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 25px 60px rgba(15,23,42,0.08);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header > span {
    display: block;

    margin-bottom: 9px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: #2563eb;
}

.contact-form-header h3 {
    margin: 0 0 8px;

    font-size: 26px;

    color: #0f172a;
}

.contact-form-header p {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;

    color: #64748b;
}


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

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.contact-form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group label {
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;

    color: #334155;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d8e1eb;
    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: #0f172a;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-form-group input,
.contact-form-group select {
    min-height: 48px;

    padding: 13px 15px;
}

.contact-form-group textarea {
    min-height: 145px;

    padding: 13px 15px;

    resize: vertical;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #94a3b8;
}

.contact-form-group select {
    cursor: pointer;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37,99,235,0.08);
}


/* =========================================================
   CHECKBOX
========================================================= */

.contact-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 2px;
}

.contact-form-checkbox input {
    width: 16px;
    height: 16px;

    margin-top: 2px;

    flex-shrink: 0;

    accent-color: #2563eb;

    cursor: pointer;
}

.contact-form-checkbox label {
    font-size: 11px;
    line-height: 1.6;

    color: #64748b;

    cursor: pointer;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit-btn {
    width: 100%;

    min-height: 52px;

    justify-content: center;

    border: 0;

    cursor: pointer;
}

.contact-submit-btn span {
    transition: transform 0.25s ease;
}

.contact-submit-btn:hover span {
    transform: translateX(4px);
}

.contact-form-message {
    min-height: 18px;

    margin-top: 2px;

    font-size: 12px;

    text-align: center;

    color: #2563eb;
}


/* =========================================================
   CONTACT CONNECT / CTA
========================================================= */

.contact-connect {
    position: relative;

    overflow: hidden;

    padding: 95px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(37,99,235,0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.contact-connect::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.12;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
}

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

    position: absolute;

    width: 400px;
    height: 400px;

    right: -100px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(37,99,235,0.12);

    filter: blur(80px);

    pointer-events: none;
}

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

    display: flex;

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

    gap: 60px;
}

.contact-connect-content {
    max-width: 760px;
}

.contact-connect-content h2 {
    margin: 15px 0 20px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2.5px;
}

.contact-connect-content h2 span {
    display: block;

    color: #53b8ff;
}

.contact-connect-content p {
    max-width: 650px;

    margin: 0;

    font-size: 17px;
    line-height: 1.75;

    color: rgba(255,255,255,0.65);
}

.contact-connect-action {
    flex-shrink: 0;
}

.contact-connect-action .btn {
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .contact-hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 0.85fr);

        gap: 45px;
    }

    .contact-intro-layout {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 35px;
    }

    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-layout {
        gap: 50px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

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

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

        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-hero-content {
        max-width: 760px;
    }

    .contact-hero-visual {
        min-height: 420px;

        margin-top: 10px;
    }

    .contact-hero-card {
        width: min(100%, 520px);
    }

    .contact-intro-layout {
        grid-template-columns: 1fr;
    }

    .contact-side-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-form-content {
        max-width: 750px;
    }

    .contact-connect-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


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

@media (max-width: 767px) {

    .contact-hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .contact-hero h1 {
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .contact-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-hero-visual {
        min-height: 390px;
    }

    .contact-hero-card {
        min-height: 390px;

        padding: 30px;
    }

    .contact-card-line {
        left: 30px;
    }

    .contact-hero-card strong {
        font-size: 38px;
    }


    /* INTRO */

    .contact-intro-content h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .contact-intro-content .large-text {
        font-size: 17px;
    }


    /* DETAILS */

    .contact-details {
        padding-bottom: 70px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .contact-detail-card {
        min-height: auto;

        padding: 28px;
    }


    /* FORM */

    .contact-form-content h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .contact-form-content .large-text {
        font-size: 17px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* CTA */

    .contact-connect {
        padding: 75px 0;
    }

    .contact-connect-content h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .contact-connect-content p {
        font-size: 15px;
    }

    .contact-connect-action {
        width: 100%;
    }

    .contact-connect-action .btn {
        width: 100%;
        justify-content: center;
    }

}


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

@media (max-width: 480px) {

    .contact-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .contact-hero h1 {
        font-size: 39px;
    }

    .contact-hero-visual {
        min-height: 350px;
    }

    .contact-hero-card {
        min-height: 350px;

        padding: 25px;
    }

    .contact-card-line {
        left: 25px;
    }

    .contact-hero-card strong {
        font-size: 33px;
    }

    .contact-card-footer {
        flex-direction: column;
        gap: 7px;
    }

    .contact-intro-content h2 {
        font-size: 34px;
    }

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

    .contact-form-wrapper {
        padding: 22px 16px;
    }

    .contact-connect-content h2 {
        font-size: 36px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-detail-card,
    .contact-detail-content a,
    .contact-submit-btn span {
        transition: none;
    }

}