/* =========================================================
   SPC CONTACT PAGE
   Complete Page-Specific UI
   ========================================================= */


/* =========================================================
   ROOT PAGE
   ========================================================= */

body.spc-contact-page {

    --contact-primary: #197da6;
    --contact-primary-dark: #125f7c;
    --contact-primary-soft: rgba(25, 125, 166, 0.09);

    --contact-dark: #17343d;
    --contact-text: #43565d;
    --contact-muted: #748188;

    --contact-accent: #d59a3a;

    --contact-bg: #f7f4ed;
    --contact-white: #ffffff;
    --contact-card: #fffdf8;
    --contact-soft: #faf8f3;

    --contact-border: rgba(23, 52, 61, 0.10);

    margin: 0;

    background: var(--contact-bg);

    color: var(--contact-dark);

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;
}


/* =========================================================
   BASIC RESET
   ========================================================= */

body.spc-contact-page *,
body.spc-contact-page *::before,
body.spc-contact-page *::after {

    box-sizing: border-box;
}


body.spc-contact-page img {

    max-width: 100%;

    height: auto;
}


body.spc-contact-page a {

    text-decoration: none;
}


body.spc-contact-page button,
body.spc-contact-page input,
body.spc-contact-page select,
body.spc-contact-page textarea {

    font: inherit;
}


body.spc-contact-page h1,
body.spc-contact-page h2,
body.spc-contact-page h3,
body.spc-contact-page h4 {

    font-family: "Manrope", sans-serif;
}


/* =========================================================
   CONTAINER SAFETY
   ========================================================= */

body.spc-contact-page .container {

    position: relative;

    z-index: 2;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

body.spc-contact-page [data-contact-reveal] {

    opacity: 0;

    transform: translate3d(0, 28px, 0);

    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}


body.spc-contact-page [data-contact-reveal].is-visible {

    opacity: 1;

    transform: translate3d(0, 0, 0);
}


/* =========================================================
   EYEBROW
   ========================================================= */

body.spc-contact-page .contact-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    color: var(--contact-primary);

    font-size: 0.78rem;

    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 0.085em;

    text-transform: uppercase;
}


body.spc-contact-page .contact-eyebrow i {

    font-size: 0.82rem;

    line-height: 1;
}


/* =========================================================
   HERO
   ========================================================= */

body.spc-contact-page .contact-hero {

    position: relative;

    isolation: isolate;

    padding: 95px 0 85px;

    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(25, 125, 166, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 75%,
            rgba(213, 154, 58, 0.08),
            transparent 30%
        ),
        var(--contact-bg);

    overflow: hidden;
}


/* Decorative circles */

body.spc-contact-page .contact-hero__shape {

    position: absolute;

    z-index: 0;

    display: block;

    border: 1px solid rgba(25, 125, 166, 0.10);

    border-radius: 50%;

    pointer-events: none;
}


body.spc-contact-page .contact-hero__shape--one {

    width: 380px;

    height: 380px;

    top: -175px;

    right: -150px;
}


body.spc-contact-page .contact-hero__shape--two {

    width: 230px;

    height: 230px;

    left: -120px;

    bottom: -125px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

body.spc-contact-page .contact-hero .row {

    position: relative;

    z-index: 2;
}


body.spc-contact-page .contact-hero__title {

    max-width: 760px;

    margin: 17px 0 20px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: clamp(2.6rem, 5vw, 4.55rem);

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -0.045em;
}


body.spc-contact-page .contact-hero__title span {

    display: block;

    color: var(--contact-primary);
}


body.spc-contact-page .contact-hero__text {

    max-width: 650px;

    margin: 0 0 30px;

    color: var(--contact-text);

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTON AREA
   ========================================================= */

body.spc-contact-page .contact-hero__actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   COMMON CONTACT BUTTON
   ========================================================= */

body.spc-contact-page .contact-btn {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 0 21px;

    border: 1px solid transparent;

    border-radius: 11px;

    font-size: 0.84rem;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


body.spc-contact-page .contact-btn:hover {

    transform: translateY(-3px);
}


body.spc-contact-page .contact-btn i {

    font-size: 0.88rem;
}


/* Primary */

body.spc-contact-page .contact-btn--primary {

    color: #ffffff;

    background: var(--contact-primary);

    box-shadow:
        0 10px 25px rgba(25, 125, 166, 0.18);
}


body.spc-contact-page .contact-btn--primary:hover {

    color: #ffffff;

    background: var(--contact-primary-dark);

    box-shadow:
        0 15px 30px rgba(25, 125, 166, 0.24);
}


/* Outline */

body.spc-contact-page .contact-btn--outline {

    color: var(--contact-dark);

    border-color: var(--contact-border);

    background: rgba(255, 253, 248, 0.85);
}


body.spc-contact-page .contact-btn--outline:hover {

    color: var(--contact-primary);

    border-color: rgba(25, 125, 166, 0.25);

    background: var(--contact-white);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

body.spc-contact-page .contact-hero-visual {

    position: relative;

    width: 100%;

    min-height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Main circle */

body.spc-contact-page .contact-hero-circle {

    position: relative;

    z-index: 1;

    width: 255px;

    height: 255px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(25, 125, 166, 0.09);

    border-radius: 50%;

    color: rgba(25, 125, 166, 0.72);

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.85),
            rgba(25, 125, 166, 0.07)
        );

    box-shadow:
        0 25px 60px rgba(23, 52, 61, 0.08),
        inset 0 0 0 18px rgba(25, 125, 166, 0.025);

    font-size: 6.5rem;

    animation: spcContactHeroFloat 5s ease-in-out infinite;
}


@keyframes spcContactHeroFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }
}


/* =========================================================
   HERO FLOATING CARDS
   ========================================================= */

body.spc-contact-page .contact-floating-card {

    position: absolute;

    z-index: 5;

    width: auto;

    max-width: 220px;

    min-width: 175px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 15px;

    border: 1px solid rgba(255, 255, 255, 0.90);

    border-radius: 14px;

    background: rgba(255, 253, 248, 0.95);

    box-shadow:
        0 18px 40px rgba(23, 52, 61, 0.11);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    animation: spcContactCardFloat 5s ease-in-out infinite;
}


body.spc-contact-page .contact-floating-card--top {

    top: 30px;

    right: 0;
}


body.spc-contact-page .contact-floating-card--bottom {

    left: 0;

    bottom: 28px;

    animation-delay: 1.1s;
}


body.spc-contact-page .contact-floating-card__icon {

    width: 39px;

    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: var(--contact-primary);

    background: var(--contact-primary-soft);

    font-size: 0.88rem;
}


body.spc-contact-page .contact-floating-card strong {

    display: block;

    margin: 0;

    color: var(--contact-dark);

    font-size: 0.77rem;

    font-weight: 800;

    line-height: 1.35;
}


body.spc-contact-page .contact-floating-card small {

    display: block;

    margin-top: 3px;

    color: var(--contact-muted);

    font-size: 0.64rem;

    font-weight: 500;

    line-height: 1.35;
}


@keyframes spcContactCardFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-6px);

    }
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

body.spc-contact-page .contact-section-heading {

    width: 100%;

    max-width: 760px;

    margin-right: auto;

    margin-left: auto;

    text-align: center;
}


body.spc-contact-page .contact-section-heading h2 {

    margin: 13px 0 12px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.13;

    letter-spacing: -0.035em;
}


body.spc-contact-page .contact-section-heading h2 span {

    color: var(--contact-primary);
}


body.spc-contact-page .contact-section-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: var(--contact-text);

    font-size: 0.91rem;

    line-height: 1.75;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

body.spc-contact-page .contact-info-section {

    padding: 20px 0 90px;

    background: var(--contact-bg);
}


/* =========================================================
   INFO CARDS
   ========================================================= */

body.spc-contact-page .contact-info-card {

    position: relative;

    width: 100%;

    min-height: 205px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 23px;

    border: 1px solid var(--contact-border);

    border-radius: 17px;

    color: var(--contact-dark);

    background: var(--contact-card);

    box-shadow:
        0 8px 25px rgba(23, 52, 61, 0.04);

    overflow: hidden;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}


body.spc-contact-page .contact-info-card::after {

    content: "";

    position: absolute;

    width: 100px;

    height: 100px;

    right: -55px;

    bottom: -55px;

    border-radius: 50%;

    background: rgba(25, 125, 166, 0.045);

    pointer-events: none;
}


body.spc-contact-page .contact-info-card:hover {

    color: var(--contact-dark);

    border-color: rgba(25, 125, 166, 0.22);

    box-shadow:
        0 18px 38px rgba(23, 52, 61, 0.08);

    transform: translateY(-5px);
}


body.spc-contact-page .contact-info-card__icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    border-radius: 12px;

    color: var(--contact-primary);

    background: var(--contact-primary-soft);

    font-size: 1rem;
}


body.spc-contact-page .contact-info-card__label {

    display: block;

    margin-bottom: 4px;

    color: var(--contact-muted);

    font-size: 0.67rem;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.075em;

    text-transform: uppercase;
}


body.spc-contact-page .contact-info-card strong {

    display: block;

    width: 100%;

    margin: 0;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 0.89rem;

    font-weight: 800;

    line-height: 1.45;

    overflow-wrap: anywhere;
}


body.spc-contact-page .contact-info-card small {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: auto;

    padding-top: 15px;

    color: var(--contact-primary);

    font-size: 0.72rem;

    font-weight: 800;

    line-height: 1.3;
}


body.spc-contact-page .contact-info-card small i {

    font-size: 0.67rem;
}


body.spc-contact-page .contact-info-card .contact-email {

    font-size: 0.77rem;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

body.spc-contact-page .contact-form-section {

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            rgba(25, 125, 166, 0.045),
            rgba(213, 154, 58, 0.035)
        );
}


/* =========================================================
   FORM LEFT CONTENT
   ========================================================= */

body.spc-contact-page .contact-form-heading {

    max-width: 540px;

    margin: 14px 0 15px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.13;

    letter-spacing: -0.035em;
}


body.spc-contact-page .contact-form-heading span {

    display: block;

    color: var(--contact-primary);
}


body.spc-contact-page .contact-form-intro {

    max-width: 570px;

    margin: 0;

    color: var(--contact-text);

    font-size: 0.91rem;

    line-height: 1.8;
}


/* =========================================================
   BENEFITS
   ========================================================= */

body.spc-contact-page .contact-benefits {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 29px;
}


body.spc-contact-page .contact-benefit {

    display: flex;

    align-items: flex-start;

    gap: 11px;
}


body.spc-contact-page .contact-benefit > span {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 1px;

    border-radius: 9px;

    color: var(--contact-primary);

    background: var(--contact-primary-soft);

    font-size: 0.72rem;
}


body.spc-contact-page .contact-benefit strong {

    display: block;

    margin: 0 0 3px;

    color: var(--contact-dark);

    font-size: 0.84rem;

    font-weight: 800;

    line-height: 1.35;
}


body.spc-contact-page .contact-benefit p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 0.76rem;

    line-height: 1.55;
}


/* =========================================================
   DIRECT CONTACT CARD
   ========================================================= */

body.spc-contact-page .contact-direct-card {

    max-width: 390px;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding: 15px 17px;

    border: 1px solid var(--contact-border);

    border-radius: 14px;

    background: var(--contact-card);

    box-shadow:
        0 8px 22px rgba(23, 52, 61, 0.035);
}


body.spc-contact-page .contact-direct-card__icon {

    width: 40px;

    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: var(--contact-primary);

    background: var(--contact-primary-soft);

    font-size: 0.84rem;
}


body.spc-contact-page .contact-direct-card span {

    display: block;

    margin-bottom: 2px;

    color: var(--contact-muted);

    font-size: 0.66rem;

    line-height: 1.3;
}


body.spc-contact-page .contact-direct-card a {

    display: block;

    color: var(--contact-dark);

    font-size: 0.84rem;

    font-weight: 800;

    line-height: 1.4;
}


body.spc-contact-page .contact-direct-card a:hover {

    color: var(--contact-primary);
}


/* =========================================================
   FORM CARD
   ========================================================= */

body.spc-contact-page .contact-form-card {

    width: 100%;

    padding: 30px;

    border: 1px solid var(--contact-border);

    border-radius: 20px;

    background: var(--contact-card);

    box-shadow:
        0 18px 45px rgba(23, 52, 61, 0.07);
}


/* =========================================================
   FORM CARD HEADER
   ========================================================= */

body.spc-contact-page .contact-form-card__header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--contact-border);
}


body.spc-contact-page .contact-form-card__eyebrow {

    display: block;

    margin-bottom: 5px;

    color: var(--contact-primary);

    font-size: 0.63rem;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.10em;
}


body.spc-contact-page .contact-form-card h3 {

    margin: 0;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 1.35rem;

    font-weight: 800;

    line-height: 1.25;
}


body.spc-contact-page .contact-form-card__icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: var(--contact-primary);

    background: var(--contact-primary-soft);

    font-size: 0.98rem;
}


/* =========================================================
   FORM LABEL
   ========================================================= */

body.spc-contact-page .contact-form-label {

    display: block;

    margin: 0 0 7px;

    color: var(--contact-dark);

    font-size: 0.75rem;

    font-weight: 800;

    line-height: 1.4;
}


/* =========================================================
   INPUT WRAPPER
   ========================================================= */

body.spc-contact-page .contact-input-wrap {

    position: relative;

    width: 100%;
}


body.spc-contact-page .contact-input-wrap > i {

    position: absolute;

    z-index: 3;

    top: 50%;

    left: 15px;

    color: var(--contact-muted);

    font-size: 0.80rem;

    line-height: 1;

    transform: translateY(-50%);

    pointer-events: none;

    transition: color 0.2s ease;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
   ========================================================= */

body.spc-contact-page .contact-input {

    width: 100%;

    min-width: 0;

    min-height: 49px;

    display: block;

    padding: 0 14px 0 42px;

    border: 1px solid rgba(23, 52, 61, 0.13);

    border-radius: 10px;

    outline: none;

    color: var(--contact-dark);

    background: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 0.81rem;

    font-weight: 500;

    line-height: 1.4;

    box-shadow: none;

    appearance: none;

    -webkit-appearance: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


body.spc-contact-page .contact-input::placeholder {

    color: #9ba5a9;

    opacity: 1;
}


body.spc-contact-page .contact-input:hover {

    border-color: rgba(23, 52, 61, 0.19);
}


body.spc-contact-page .contact-input:focus {

    border-color: rgba(25, 125, 166, 0.48);

    outline: none;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(25, 125, 166, 0.075);
}


body.spc-contact-page .contact-input-wrap:focus-within > i {

    color: var(--contact-primary);
}


/* =========================================================
   SELECT
   ========================================================= */

body.spc-contact-page select.contact-input {

    cursor: pointer;

    padding-right: 42px;

    background-color: #ffffff;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #7c888d 50%
        ),
        linear-gradient(
            135deg,
            #7c888d 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 17px) 21px,
        calc(100% - 12px) 21px;

    background-repeat: no-repeat;

    background-size:
        5px 5px,
        5px 5px;
}


/* =========================================================
   TEXTAREA
   ========================================================= */

body.spc-contact-page .contact-textarea-wrap {

    display: block;
}


body.spc-contact-page .contact-textarea-wrap > i {

    top: 17px;

    transform: none;
}


body.spc-contact-page textarea.contact-input {

    min-height: 125px;

    padding-top: 13px;

    padding-bottom: 13px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   FORM ERRORS
   ========================================================= */

body.spc-contact-page .contact-error {

    min-height: 17px;

    margin: 4px 0 0;

    color: #b64c4c;

    font-size: 0.66rem;

    font-weight: 500;

    line-height: 1.4;
}


body.spc-contact-page .contact-input.input-error {

    border-color: rgba(182, 76, 76, 0.50);

    box-shadow:
        0 0 0 3px rgba(182, 76, 76, 0.055);
}


/* =========================================================
   MESSAGE META
   ========================================================= */

body.spc-contact-page .contact-message-meta {

    width: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;
}


body.spc-contact-page .contact-message-meta .contact-error {

    flex: 1;

    min-width: 0;
}


body.spc-contact-page #messageCount {

    flex: 0 0 auto;

    padding-top: 4px;

    color: var(--contact-muted);

    font-size: 0.64rem;

    line-height: 1.3;

    white-space: nowrap;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

body.spc-contact-page .contact-submit-btn {

    width: 100%;

    min-height: 51px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    border: 0;

    border-radius: 10px;

    outline: none;

    color: #ffffff;

    background: var(--contact-primary);

    font-family: "DM Sans", sans-serif;

    font-size: 0.82rem;

    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(25, 125, 166, 0.16);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}


body.spc-contact-page .contact-submit-btn:hover {

    transform: translateY(-2px);

    background: var(--contact-primary-dark);

    box-shadow:
        0 14px 28px rgba(25, 125, 166, 0.21);
}


body.spc-contact-page .contact-submit-btn:focus-visible {

    outline: 3px solid rgba(25, 125, 166, 0.18);

    outline-offset: 2px;
}


body.spc-contact-page .contact-submit-btn:disabled {

    opacity: 0.70;

    cursor: not-allowed;

    transform: none;
}


body.spc-contact-page .contact-submit-text,
body.spc-contact-page .contact-submit-loading {

    align-items: center;

    justify-content: center;

    gap: 8px;
}


body.spc-contact-page .contact-submit-text {

    display: inline-flex;
}


body.spc-contact-page .contact-submit-loading {

    display: none;
}


body.spc-contact-page .contact-submit-btn.is-loading .contact-submit-text {

    display: none;
}


body.spc-contact-page .contact-submit-btn.is-loading .contact-submit-loading {

    display: inline-flex;
}


/* =========================================================
   FORM STATUS
   ========================================================= */

body.spc-contact-page .contact-form-status {

    display: none;

    width: 100%;

    margin-top: 14px;

    padding: 11px 13px;

    border-radius: 9px;

    font-size: 0.72rem;

    line-height: 1.55;
}


body.spc-contact-page .contact-form-status.is-success {

    display: block;

    color: #286449;

    border: 1px solid rgba(40, 100, 73, 0.14);

    background: rgba(40, 100, 73, 0.065);
}


body.spc-contact-page .contact-form-status.is-error {

    display: block;

    color: #984747;

    border: 1px solid rgba(152, 71, 71, 0.13);

    background: rgba(152, 71, 71, 0.06);
}


/* =========================================================
   LOCATION SECTION
   ========================================================= */

body.spc-contact-page .contact-location-section {

    padding: 90px 0 95px;

    background: var(--contact-bg);
}


/* =========================================================
   ADDRESS CARD
   ========================================================= */

body.spc-contact-page .contact-address-card {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 390px;

    display: flex;

    flex-direction: column;

    padding: 27px;

    border-radius: 19px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.10),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #17343d,
            #215d70
        );

    box-shadow:
        0 20px 42px rgba(23, 52, 61, 0.13);

    overflow: hidden;
}


body.spc-contact-page .contact-address-card::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -95px;

    bottom: -100px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


body.spc-contact-page .contact-address-card__top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 24px;
}


body.spc-contact-page .contact-address-icon {

    width: 46px;

    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);

    font-size: 20px;
}


body.spc-contact-page .contact-address-card__top span {

    display: flex;
    justify-content: center;

    margin: 0;

    color: rgba(255, 255, 255, 0.53);

    font-size: 2rem;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


body.spc-contact-page .contact-address-card h3 {

    margin: 4px 0 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 1.35rem;

    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   ADDRESS
   ========================================================= */

body.spc-contact-page .contact-address {

    position: relative;

    z-index: 2;

    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


body.spc-contact-page .contact-address p {

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 0.81rem;

    line-height: 1.8;
}


/* =========================================================
   ADDRESS ACTIONS
   ========================================================= */

body.spc-contact-page .contact-address-actions {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 19px;
}


body.spc-contact-page .contact-map-btn {

    min-height: 40px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 13px;

    border: 1px solid rgba(255, 255, 255, 0.17);

    border-radius: 9px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.09);

    font-size: 0.70rem;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


body.spc-contact-page .contact-map-btn:hover {

    color: #ffffff;

    background: rgba(255, 255, 255, 0.17);

    transform: translateY(-2px);
}


body.spc-contact-page .contact-map-btn--soft {

    background: transparent;
}


/* =========================================================
   ADDRESS NOTE
   ========================================================= */

body.spc-contact-page .contact-address-note {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-top: auto;

    padding-top: 20px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.66rem;

    line-height: 1.6;
}


body.spc-contact-page .contact-address-note i {

    flex: 0 0 auto;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   MAP
   ========================================================= */

body.spc-contact-page .contact-map-wrapper {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 390px;

    border: 1px solid var(--contact-border);

    border-radius: 19px;

    background: #e6e3dc;

    overflow: hidden;

    box-shadow:
        0 18px 40px rgba(23, 52, 61, 0.08);
}


body.spc-contact-page .contact-map-wrapper iframe {

    width: 100%;

    height: 100%;

    min-height: 390px;

    display: block;

    margin: 0;

    padding: 0;

    border: 0;

    outline: 0;
}


body.spc-contact-page .contact-map-badge {

    position: absolute;

    z-index: 4;

    top: 16px;

    left: 16px;

    max-width: calc(100% - 32px);

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 12px;

    border: 1px solid rgba(23, 52, 61, 0.06);

    border-radius: 9px;

    color: var(--contact-dark);

    background: rgba(255, 253, 248, 0.94);

    box-shadow:
        0 8px 20px rgba(23, 52, 61, 0.10);

    backdrop-filter: blur(9px);

    -webkit-backdrop-filter: blur(9px);

    font-size: 0.68rem;

    font-weight: 800;

    line-height: 1.3;
}


body.spc-contact-page .contact-map-badge i {

    flex: 0 0 auto;

    color: var(--contact-primary);
}


/* =========================================================
   HELP / FAQ SECTION
   ========================================================= */

body.spc-contact-page .contact-help-section {

    padding: 0 0 85px;

    background: var(--contact-bg);
}


body.spc-contact-page .contact-help-card {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 27px 29px;

    border: 1px solid var(--contact-border);

    border-radius: 18px;

    background: var(--contact-card);

    box-shadow:
        0 10px 28px rgba(23, 52, 61, 0.045);
}


body.spc-contact-page .contact-help-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    color: var(--contact-primary);

    background: var(--contact-primary-soft);

    font-size: 1.15rem;
}


body.spc-contact-page .contact-help-content {

    flex: 1 1 auto;

    min-width: 0;
}


body.spc-contact-page .contact-help-content > span {

    display: block;

    margin-bottom: 4px;

    color: var(--contact-primary);

    font-size: 0.61rem;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.09em;
}


body.spc-contact-page .contact-help-content h2 {

    margin: 0 0 4px;

    color: var(--contact-dark);

    font-family: "Manrope", sans-serif;

    font-size: 1.18rem;

    font-weight: 800;

    line-height: 1.35;
}


body.spc-contact-page .contact-help-content p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 0.74rem;

    line-height: 1.5;
}


body.spc-contact-page .contact-help-btn {

    flex: 0 0 auto;

    min-height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 16px;

    border-radius: 9px;

    color: #ffffff;

    background: var(--contact-primary);

    font-size: 0.72rem;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


body.spc-contact-page .contact-help-btn:hover {

    color: #ffffff;

    background: var(--contact-primary-dark);

    transform: translateY(-2px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

body.spc-contact-page .contact-cta {

    padding: 0 0 95px;

    background: var(--contact-bg);
}


body.spc-contact-page .contact-cta__inner {

    position: relative;

    isolation: isolate;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 46px 48px;

    border-radius: 22px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(255, 255, 255, 0.11),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #17343d,
            #215d70
        );

    box-shadow:
        0 24px 52px rgba(23, 52, 61, 0.14);

    overflow: hidden;
}


body.spc-contact-page .contact-cta__inner::before {

    content: "";

    position: absolute;

    z-index: -1;

    width: 270px;

    height: 270px;

    right: -125px;

    bottom: -160px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 50%;
}


body.spc-contact-page .contact-cta__content {

    position: relative;

    z-index: 2;

    min-width: 0;
}


body.spc-contact-page .contact-cta__actions {

    position: relative;

    z-index: 2;

    flex: 0 0 auto;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}


body.spc-contact-page .contact-cta .contact-eyebrow {

    color: rgba(255, 255, 255, 0.70);
}


body.spc-contact-page .contact-cta h2 {

    margin: 13px 0 9px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(2rem, 4vw, 2.9rem);

    font-weight: 800;

    line-height: 1.13;

    letter-spacing: -0.035em;
}


body.spc-contact-page .contact-cta h2 span {

    color: #ffffff;
}


body.spc-contact-page .contact-cta p {

    max-width: 570px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.84rem;

    line-height: 1.7;
}


/* Light CTA */

body.spc-contact-page .contact-btn--light {

    color: var(--contact-dark);

    background: #ffffff;
}


body.spc-contact-page .contact-btn--light:hover {

    color: var(--contact-dark);

    background: #ffffff;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.13);
}


/* Glass CTA */

body.spc-contact-page .contact-btn--glass {

    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.20);

    background: rgba(255, 255, 255, 0.07);
}


body.spc-contact-page .contact-btn--glass:hover {

    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.30);

    background: rgba(255, 255, 255, 0.13);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    body.spc-contact-page .contact-hero__title {

        font-size: clamp(2.5rem, 5vw, 4rem);
    }


    body.spc-contact-page .contact-floating-card {

        min-width: 165px;

        max-width: 195px;
    }


    body.spc-contact-page .contact-floating-card--top {

        right: -5px;
    }


    body.spc-contact-page .contact-floating-card--bottom {

        left: -5px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    /* Hero */

    body.spc-contact-page .contact-hero {

        padding: 78px 0 70px;
    }


    body.spc-contact-page .contact-hero__title {

        max-width: 700px;

        font-size: clamp(2.45rem, 7vw, 3.8rem);
    }


    body.spc-contact-page .contact-hero__text {

        max-width: 680px;
    }


    body.spc-contact-page .contact-hero-visual {

        min-height: 330px;

        margin-top: 10px;
    }


    /* Form */

    body.spc-contact-page .contact-form-section {

        padding: 80px 0;
    }


    /* Location */

    body.spc-contact-page .contact-location-section {

        padding: 80px 0 85px;
    }


    body.spc-contact-page .contact-address-card {

        min-height: 350px;
    }


    body.spc-contact-page .contact-map-wrapper {

        min-height: 350px;
    }


    body.spc-contact-page .contact-map-wrapper iframe {

        min-height: 350px;
    }


    /* CTA */

    body.spc-contact-page .contact-cta__inner {

        align-items: flex-start;

        flex-direction: column;

        padding: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    /* General */

    body.spc-contact-page .contact-eyebrow {

        font-size: 0.71rem;
    }


    /* Hero */

    body.spc-contact-page .contact-hero {

        padding: 65px 0 58px;
    }


    body.spc-contact-page .contact-hero__title {

        margin-top: 14px;

        margin-bottom: 17px;

        font-size: clamp(2.25rem, 10vw, 3.25rem);

        letter-spacing: -0.04em;
    }


    body.spc-contact-page .contact-hero__text {

        margin-bottom: 25px;

        font-size: 0.89rem;

        line-height: 1.75;
    }


    body.spc-contact-page .contact-hero__actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    body.spc-contact-page .contact-hero__actions .contact-btn {

        width: 100%;
    }


    /* Hero visual */

    body.spc-contact-page .contact-hero-visual {

        min-height: 285px;

        margin-top: 10px;
    }


    body.spc-contact-page .contact-hero-circle {

        width: 190px;

        height: 190px;

        font-size: 4.8rem;
    }


    body.spc-contact-page .contact-floating-card {

        min-width: 0;

        max-width: 165px;

        padding: 10px 11px;

        gap: 8px;

        border-radius: 11px;
    }


    body.spc-contact-page .contact-floating-card--top {

        top: 8px;

        right: 0;
    }


    body.spc-contact-page .contact-floating-card--bottom {

        left: 0;

        bottom: 7px;
    }


    body.spc-contact-page .contact-floating-card__icon {

        width: 33px;

        height: 33px;

        flex-basis: 33px;

        border-radius: 9px;

        font-size: 0.72rem;
    }


    body.spc-contact-page .contact-floating-card strong {

        font-size: 0.65rem;
    }


    body.spc-contact-page .contact-floating-card small {

        font-size: 0.56rem;
    }


    /* Info */

    body.spc-contact-page .contact-info-section {

        padding: 10px 0 70px;
    }


    body.spc-contact-page .contact-section-heading h2 {

        margin-top: 11px;

        font-size: 2rem;
    }


    body.spc-contact-page .contact-section-heading p {

        font-size: 0.84rem;
    }


    body.spc-contact-page .contact-info-card {

        min-height: 185px;

        padding: 21px;
    }


    /* Form */

    body.spc-contact-page .contact-form-section {

        padding: 70px 0;
    }


    body.spc-contact-page .contact-form-heading {

        margin-top: 12px;

        font-size: 2rem;
    }


    body.spc-contact-page .contact-form-intro {

        font-size: 0.84rem;
    }


    body.spc-contact-page .contact-benefits {

        margin-top: 25px;

        gap: 16px;
    }


    body.spc-contact-page .contact-direct-card {

        margin-top: 26px;
    }


    body.spc-contact-page .contact-form-card {

        margin-top: 4px;

        padding: 22px;

        border-radius: 17px;
    }


    body.spc-contact-page .contact-form-card__header {

        margin-bottom: 21px;
    }


    body.spc-contact-page .contact-form-card h3 {

        font-size: 1.18rem;
    }


    /* Location */

    body.spc-contact-page .contact-location-section {

        padding: 70px 0 75px;
    }


    body.spc-contact-page .contact-address-card {

        min-height: 340px;

        padding: 23px;

        border-radius: 17px;
    }


    body.spc-contact-page .contact-map-wrapper {

        min-height: 300px;

        border-radius: 17px;
    }


    body.spc-contact-page .contact-map-wrapper iframe {

        min-height: 300px;
    }


    body.spc-contact-page .contact-map-badge {

        top: 11px;

        left: 11px;

        max-width: calc(100% - 22px);

        padding: 8px 10px;

        font-size: 0.61rem;
    }


    /* Help */

    body.spc-contact-page .contact-help-section {

        padding-bottom: 65px;
    }


    body.spc-contact-page .contact-help-card {

        display: grid;

        grid-template-columns: 52px minmax(0, 1fr);

        gap: 15px;

        padding: 22px;

        border-radius: 17px;
    }


    body.spc-contact-page .contact-help-icon {

        width: 48px;

        height: 48px;

        flex-basis: 48px;
    }


    body.spc-contact-page .contact-help-content h2 {

        font-size: 1.02rem;
    }


    body.spc-contact-page .contact-help-content p {

        font-size: 0.70rem;
    }


    body.spc-contact-page .contact-help-btn {

        grid-column: 1 / -1;

        width: 100%;
    }


    /* CTA */

    body.spc-contact-page .contact-cta {

        padding-bottom: 70px;
    }


    body.spc-contact-page .contact-cta__inner {

        gap: 25px;

        padding: 32px 23px;

        border-radius: 18px;
    }


    body.spc-contact-page .contact-cta h2 {

        font-size: 2rem;
    }


    body.spc-contact-page .contact-cta p {

        font-size: 0.78rem;
    }


    body.spc-contact-page .contact-cta__actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    body.spc-contact-page .contact-cta__actions .contact-btn {

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    body.spc-contact-page .contact-hero {

        padding-top: 55px;
    }


    body.spc-contact-page .contact-hero__title {

        font-size: 2.25rem;
    }


    body.spc-contact-page .contact-hero-visual {

        min-height: 250px;
    }


    body.spc-contact-page .contact-hero-circle {

        width: 165px;

        height: 165px;

        font-size: 4rem;
    }


    body.spc-contact-page .contact-floating-card {

        max-width: 145px;

        padding: 8px 9px;
    }


    body.spc-contact-page .contact-floating-card--top {

        right: -2px;
    }


    body.spc-contact-page .contact-floating-card--bottom {

        left: -2px;
    }


    body.spc-contact-page .contact-floating-card strong {

        font-size: 0.61rem;
    }


    body.spc-contact-page .contact-floating-card small {

        font-size: 0.52rem;
    }


    body.spc-contact-page .contact-info-card {

        min-height: 175px;

        padding: 19px;
    }


    body.spc-contact-page .contact-form-card {

        padding: 18px;

        border-radius: 15px;
    }


    body.spc-contact-page .contact-form-card__header {

        gap: 10px;
    }


    body.spc-contact-page .contact-form-card__icon {

        width: 40px;

        height: 40px;

        flex-basis: 40px;
    }


    body.spc-contact-page .contact-input {

        min-height: 47px;

        font-size: 0.78rem;
    }


    body.spc-contact-page .contact-address-card {

        min-height: 325px;

        padding: 20px;
    }


    body.spc-contact-page .contact-map-wrapper {

        min-height: 270px;
    }


    body.spc-contact-page .contact-map-wrapper iframe {

        min-height: 270px;
    }


    body.spc-contact-page .contact-help-card {

        padding: 19px;
    }


    body.spc-contact-page .contact-cta__inner {

        padding: 29px 19px;
    }


    body.spc-contact-page .contact-cta h2 {

        font-size: 1.85rem;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    body.spc-contact-page .contact-hero__title {

        font-size: 2.05rem;
    }


    body.spc-contact-page .contact-floating-card {

        max-width: 132px;
    }


    body.spc-contact-page .contact-floating-card__icon {

        width: 29px;

        height: 29px;

        flex-basis: 29px;
    }


    body.spc-contact-page .contact-floating-card strong {

        font-size: 0.57rem;
    }


    body.spc-contact-page .contact-floating-card small {

        font-size: 0.48rem;
    }


    body.spc-contact-page .contact-form-card {

        padding: 16px;
    }


    body.spc-contact-page .contact-address-actions {

        flex-direction: column;

        align-items: stretch;
    }


    body.spc-contact-page .contact-map-btn {

        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    body.spc-contact-page [data-contact-reveal] {

        opacity: 1;

        transform: none;

        transition: none;
    }


    body.spc-contact-page .contact-hero-circle,
    body.spc-contact-page .contact-floating-card {

        animation: none;
    }


    body.spc-contact-page .contact-btn,
    body.spc-contact-page .contact-info-card,
    body.spc-contact-page .contact-submit-btn,
    body.spc-contact-page .contact-help-btn,
    body.spc-contact-page .contact-map-btn {

        transition: none;
    }

}

/* =========================================================
   SPC CONTACT — FINAL DESIGN SYSTEM / RESPONSIVE LAYER
   Appended compatibility layer for the unified SPC UI.
   ========================================================= */

body.spc-contact-page {
    --contact-primary: #197da6;
    --contact-primary-dark: #125f7c;
    --contact-primary-soft: rgba(25, 125, 166, 0.09);
    --contact-dark: #17343d;
    --contact-text: #43565d;
    --contact-muted: #748188;
    --contact-accent: #d59a3a;
    --contact-bg: #f7f4ed;
    --contact-white: #ffffff;
    --contact-card: #fffdf8;
    --contact-soft: #faf8f3;
    --contact-border: rgba(23, 52, 61, 0.10);
    max-width: 100%;
    overflow-x: clip;
}

body.spc-contact-page .container,
body.spc-contact-page .container-fluid,
body.spc-contact-page .row {
    min-width: 0;
}

body.spc-contact-page .row > * {
    min-width: 0;
}

body.spc-contact-page img,
body.spc-contact-page svg,
body.spc-contact-page video,
body.spc-contact-page iframe {
    max-width: 100%;
}

body.spc-contact-page h1,
body.spc-contact-page h2,
body.spc-contact-page h3,
body.spc-contact-page h4,
body.spc-contact-page p,
body.spc-contact-page strong,
body.spc-contact-page small,
body.spc-contact-page a {
    overflow-wrap: anywhere;
}

/* Keep the page visually connected to the global warm SPC background. */
body.spc-contact-page .contact-info-section,
body.spc-contact-page .contact-location-section,
body.spc-contact-page .contact-help-section,
body.spc-contact-page .contact-cta {
    background: #f7f4ed;
}

/* Stronger, cleaner section rhythm on desktop. */
body.spc-contact-page .contact-info-section {
    padding-top: 28px;
}

body.spc-contact-page .contact-location-section {
    padding-top: 78px;
}

body.spc-contact-page .contact-address-card,
body.spc-contact-page .contact-map-wrapper {
    min-height: 0;
    height: 390px;
}

body.spc-contact-page .contact-map-wrapper iframe {
    min-height: 0;
    height: 100%;
}

/* Address card should use content naturally instead of creating a large
   empty area merely to match the map height. */
body.spc-contact-page .contact-address-card {
    justify-content: flex-start;
}

body.spc-contact-page .contact-address-note {
    margin-top: 24px;
}

/* More visible location icon. */
body.spc-contact-page .contact-address-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 1.25rem;
    border-radius: 13px;
}

body.spc-contact-page .contact-address-card__top {
    gap: 14px;
}

body.spc-contact-page .contact-address-card__top span {
    justify-content: flex-start;
    font-size: .72rem;
}

body.spc-contact-page .contact-address-card h3 {
    font-size: 1.38rem;
}

body.spc-contact-page .contact-address p {
    max-width: 46ch;
}

/* Cleaner focus treatment across interactive elements. */
body.spc-contact-page a:focus-visible,
body.spc-contact-page button:focus-visible,
body.spc-contact-page input:focus-visible,
body.spc-contact-page select:focus-visible,
body.spc-contact-page textarea:focus-visible {
    outline: 3px solid rgba(25, 125, 166, .20);
    outline-offset: 3px;
}

/* Prevent decorative elements from ever becoming horizontal overflow. */
body.spc-contact-page .contact-hero,
body.spc-contact-page .contact-location-section,
body.spc-contact-page .contact-cta {
    isolation: isolate;
    overflow: clip;
}

body.spc-contact-page .contact-hero__shape,
body.spc-contact-page .contact-cta__inner::before,
body.spc-contact-page .contact-info-card::after,
body.spc-contact-page .contact-address-card::after {
    pointer-events: none;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    body.spc-contact-page .contact-hero {
        padding-top: 68px;
        padding-bottom: 62px;
    }

    body.spc-contact-page .contact-hero__title {
        max-width: 680px;
        font-size: clamp(2.45rem, 7vw, 3.65rem);
    }

    body.spc-contact-page .contact-hero-visual {
        min-height: 315px;
    }

    body.spc-contact-page .contact-info-section {
        padding-top: 20px;
        padding-bottom: 76px;
    }

    body.spc-contact-page .contact-form-section {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    body.spc-contact-page .contact-location-section {
        padding-top: 72px;
        padding-bottom: 78px;
    }

    body.spc-contact-page .contact-address-card,
    body.spc-contact-page .contact-map-wrapper {
        height: 350px;
        min-height: 350px;
    }

    body.spc-contact-page .contact-address-card {
        padding: 24px;
    }

    body.spc-contact-page .contact-help-section {
        padding-bottom: 70px;
    }

    body.spc-contact-page .contact-cta {
        padding-bottom: 78px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    body.spc-contact-page .contact-hero {
        padding: 54px 0 48px;
    }

    body.spc-contact-page .contact-hero__title {
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 1.07;
    }

    body.spc-contact-page .contact-hero__text {
        font-size: .9rem;
        line-height: 1.72;
    }

    body.spc-contact-page .contact-hero-visual {
        min-height: 260px;
        margin-top: 8px;
    }

    body.spc-contact-page .contact-hero-circle {
        width: 180px;
        height: 180px;
        font-size: 4.4rem;
    }

    body.spc-contact-page .contact-floating-card {
        max-width: 158px;
    }

    body.spc-contact-page .contact-info-section {
        padding: 8px 0 62px;
    }

    body.spc-contact-page .contact-section-heading h2,
    body.spc-contact-page .contact-form-heading {
        font-size: clamp(1.85rem, 8vw, 2.25rem);
    }

    body.spc-contact-page .contact-info-card {
        min-height: 0;
        padding: 20px;
    }

    body.spc-contact-page .contact-form-section {
        padding: 62px 0;
    }

    body.spc-contact-page .contact-form-card {
        padding: 20px;
        border-radius: 16px;
    }

    /* Location is intentionally stacked and compact on small screens. */
    body.spc-contact-page .contact-location-section {
        padding: 62px 0 66px;
    }

    body.spc-contact-page .contact-address-card,
    body.spc-contact-page .contact-map-wrapper {
        height: auto;
        min-height: 0;
    }

    body.spc-contact-page .contact-address-card {
        padding: 22px;
    }

    body.spc-contact-page .contact-address-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 1.22rem;
    }

    body.spc-contact-page .contact-address {
        padding: 16px 0;
    }

    body.spc-contact-page .contact-address p {
        font-size: .8rem;
        line-height: 1.7;
    }

    body.spc-contact-page .contact-address-note {
        margin-top: 20px;
        padding-top: 0;
    }

    body.spc-contact-page .contact-map-wrapper {
        min-height: 290px;
        height: 290px;
        margin-top: 16px;
        border-radius: 16px;
    }

    body.spc-contact-page .contact-map-wrapper iframe {
        height: 290px;
        min-height: 290px;
    }

    body.spc-contact-page .contact-map-badge {
        max-width: calc(100% - 22px);
    }

    body.spc-contact-page .contact-help-section {
        padding-bottom: 58px;
    }

    body.spc-contact-page .contact-help-card {
        padding: 19px;
    }

    body.spc-contact-page .contact-cta {
        padding-bottom: 62px;
    }

    body.spc-contact-page .contact-cta__inner {
        padding: 30px 21px;
        border-radius: 17px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
    body.spc-contact-page .contact-hero {
        padding-top: 48px;
        padding-bottom: 42px;
    }

    body.spc-contact-page .contact-hero__title {
        font-size: 2.12rem;
    }

    body.spc-contact-page .contact-hero__actions .contact-btn {
        min-height: 48px;
    }

    body.spc-contact-page .contact-hero-visual {
        min-height: 225px;
    }

    body.spc-contact-page .contact-hero-circle {
        width: 155px;
        height: 155px;
        font-size: 3.7rem;
    }

    body.spc-contact-page .contact-floating-card {
        max-width: 142px;
        padding: 8px 9px;
    }

    body.spc-contact-page .contact-floating-card--top {
        right: -1px;
    }

    body.spc-contact-page .contact-floating-card--bottom {
        left: -1px;
    }

    body.spc-contact-page .contact-floating-card strong {
        font-size: .60rem;
    }

    body.spc-contact-page .contact-floating-card small {
        font-size: .51rem;
    }

    body.spc-contact-page .contact-form-card {
        padding: 17px;
    }

    body.spc-contact-page .contact-form-card__header {
        align-items: flex-start;
    }

    body.spc-contact-page .contact-form-card__icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    body.spc-contact-page .contact-input {
        min-height: 47px;
        font-size: .79rem;
    }

    body.spc-contact-page .contact-address-card {
        padding: 19px;
        border-radius: 15px;
    }

    body.spc-contact-page .contact-address-card__top {
        align-items: flex-start;
    }

    body.spc-contact-page .contact-address-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 1.1rem;
    }

    body.spc-contact-page .contact-address-card h3 {
        font-size: 1.2rem;
    }

    body.spc-contact-page .contact-address p {
        font-size: .76rem;
    }

    body.spc-contact-page .contact-map-wrapper {
        min-height: 255px;
        height: 255px;
    }

    body.spc-contact-page .contact-map-wrapper iframe {
        min-height: 255px;
        height: 255px;
    }

    body.spc-contact-page .contact-help-card {
        padding: 17px;
    }

    body.spc-contact-page .contact-cta__inner {
        padding: 27px 18px;
    }

    body.spc-contact-page .contact-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    body.spc-contact-page .contact-hero__title {
        font-size: 1.95rem;
    }

    body.spc-contact-page .contact-floating-card {
        max-width: 128px;
    }

    body.spc-contact-page .contact-floating-card strong {
        font-size: .56rem;
    }

    body.spc-contact-page .contact-floating-card small {
        font-size: .48rem;
    }

    body.spc-contact-page .contact-form-card {
        padding: 15px;
    }

    body.spc-contact-page .contact-address-card {
        padding: 17px;
    }

    body.spc-contact-page .contact-map-wrapper,
    body.spc-contact-page .contact-map-wrapper iframe {
        height: 235px;
        min-height: 235px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    body.spc-contact-page .contact-hero-circle,
    body.spc-contact-page .contact-floating-card {
        animation: none !important;
    }

    body.spc-contact-page [data-contact-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    body.spc-contact-page .contact-btn,
    body.spc-contact-page .contact-info-card,
    body.spc-contact-page .contact-submit-btn,
    body.spc-contact-page .contact-help-btn,
    body.spc-contact-page .contact-map-btn {
        transition: none !important;
    }
}
