/* =========================================================
   CNCTASPHR CONTACT PAGE
   Uses the shared brand-only header and shared site footer.
========================================================= */

body.cnctasphr-contact-body {
    min-height: 100vh;
    color: #0f172a;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(41, 169, 235, 0.13),
            transparent 25rem
        ),
        radial-gradient(
            circle at 88% 42%,
            rgba(37, 99, 235, 0.09),
            transparent 28rem
        ),
        #eef4fb;
}

body.cnctasphr-contact-body
> main.site-content.cnctasphr-contact-content {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* =========================================================
   PAGE LAYOUT
========================================================= */

.cnctasphr-contact-page {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
    padding: 42px 18px 54px;
    box-sizing: border-box;
}

/* =========================================================
   CONTACT CARD
========================================================= */

.cnctasphr-contact-card {
    width: min(100%, 720px);
    padding: 44px;
    color: #e5e7eb;
    background:
        radial-gradient(
            circle at 14% 12%,
            rgba(56, 189, 248, 0.13),
            transparent 19rem
        ),
        linear-gradient(
            145deg,
            #020617,
            #0f172a
        );
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 24px;
    box-shadow:
        0 22px 58px rgba(15, 23, 42, 0.28);
    box-sizing: border-box;
}

.cnctasphr-contact-heading {
    margin-bottom: 28px;
}

.cnctasphr-contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #7dd3fc;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.cnctasphr-contact-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.cnctasphr-contact-heading p {
    max-width: 590px;
    margin: 15px 0 0;
    color: #cbd5e1;
    font-size: 0.96rem;
    line-height: 1.65;
}

/* =========================================================
   FORM
========================================================= */

.cnctasphr-contact-form {
    display: grid;
    gap: 18px;
}

.cnctasphr-contact-field {
    display: grid;
    gap: 7px;
}

.cnctasphr-contact-field label {
    color: #e5e7eb;
    font-size: 0.84rem;
    font-weight: 800;
}

.cnctasphr-contact-input {
    position: relative;
}

.cnctasphr-contact-input > i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    color: #7dd3fc;
    transform: translateY(-50%);
    pointer-events: none;
}

.cnctasphr-contact-input input,
.cnctasphr-contact-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    font: inherit;
    transition:
        border-color 0.16s ease,
        box-shadow 0.16s ease,
        background 0.16s ease;
}

.cnctasphr-contact-input input {
    min-height: 50px;
    padding: 12px 14px 12px 42px;
}

.cnctasphr-contact-field textarea {
    min-height: 160px;
    padding: 13px 14px;
    resize: vertical;
}

.cnctasphr-contact-input input::placeholder,
.cnctasphr-contact-field textarea::placeholder {
    color: #64748b;
}

.cnctasphr-contact-input input:focus,
.cnctasphr-contact-field textarea:focus {
    background: #0f172a;
    border-color: #38bdf8;
    box-shadow:
        0 0 0 4px rgba(56, 189, 248, 0.14);
}

/* =========================================================
   SUBMIT
========================================================= */

.cnctasphr-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    min-height: 46px;
    margin-top: 2px;
    padding: 11px 20px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #0284c7,
            #2563eb
        );
    border: 0;
    border-radius: 999px;
    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.25);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease;
}

.cnctasphr-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.32);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
    .cnctasphr-contact-page {
        width: calc(100% - 16px);
        padding: 24px 0 40px;
    }

    .cnctasphr-contact-card {
        padding: 32px 22px;
        border-radius: 20px;
    }

    .cnctasphr-contact-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cnctasphr-contact-card {
        padding: 28px 18px;
    }

    .cnctasphr-contact-heading h1 {
        font-size: 2.2rem;
    }
}