/* =========================================
   PROSPERA CONTACT PAGE
   contact.css
========================================= */


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    position: relative;
    min-height: 760px;
    padding: 170px 0 90px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(93, 201, 142, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(195, 255, 164, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061d19 0%,
            #082b24 48%,
            #0b1f1b 100%
        );
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        transparent 90%
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}


/* Decorative shapes */

.contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.contact-hero-shape.shape-one {
    width: 440px;
    height: 440px;
    top: -150px;
    right: -100px;
    border: 1px solid rgba(134, 220, 164, 0.16);
    box-shadow:
        0 0 0 70px rgba(134, 220, 164, 0.025),
        0 0 0 140px rgba(134, 220, 164, 0.015);
}

.contact-hero-shape.shape-two {
    width: 320px;
    height: 320px;
    left: -140px;
    bottom: -100px;
    background: rgba(75, 175, 119, 0.08);
    filter: blur(50px);
}

.contact-grid-pattern {
    position: absolute;
    width: 600px;
    height: 600px;
    right: 4%;
    top: 12%;
    opacity: 0.16;
    pointer-events: none;
    background-image:
        radial-gradient(
            rgba(168, 255, 195, 0.7) 1px,
            transparent 1px
        );
    background-size: 24px 24px;
    mask-image: radial-gradient(
        circle,
        black 20%,
        transparent 72%
    );
}


/* =========================================
   BREADCRUMB
========================================= */

.contact-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-hero .breadcrumb a:hover {
    color: #b8f3c9;
}

.contact-hero .breadcrumb span:last-child {
    color: #b8f3c9;
}


/* =========================================
   HERO TEXT
========================================= */

.contact-hero-text {
    max-width: 780px;
}

.contact-hero-text h1 {
    max-width: 750px;
    margin: 22px 0 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.4rem, 7vw, 6.3rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.contact-hero-text h1 span {
    display: block;
    color: #a8e9bb;
}

.contact-hero-text > p {
    max-width: 680px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================
   HERO ACTIONS
========================================= */

.contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.contact-hero .btn-light {
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.2);
}

.contact-hero .text-btn {
    text-decoration: none;
}

.contact-hero .light-text-btn {
    color: rgba(255, 255, 255, 0.85);
}

.contact-hero .light-text-btn:hover {
    color: #b8f3c9;
}


/* =========================================
   HERO QUICK INFO
========================================= */

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin-top: 80px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 100px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(15px);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.quick-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(168, 233, 187, 0.28);
}

.quick-info-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #b8f3c9;
    background: rgba(157, 233, 182, 0.1);
}

.quick-info-icon i {
    font-size: 1rem;
}

.quick-info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.94rem;
    font-weight: 700;
    color: #ffffff;
}

.quick-info-item span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.56);
}


/* =========================================
   CONTACT INFORMATION SECTION
========================================= */

.contact-info-section {
    position: relative;
    background: #f8faf8;
}

.contact-info-section .section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =========================================
   CONTACT INFO CARD
========================================= */

.contact-info-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #e5ece7;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(11, 41, 31, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -85px;
    bottom: -85px;
    border-radius: 50%;
    background: rgba(83, 177, 113, 0.04);
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(66, 157, 96, 0.28);
    box-shadow: 0 24px 55px rgba(11, 41, 31, 0.1);
}

.contact-info-card:hover::after {
    transform: scale(1.3);
}

.contact-card-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 17px;
    color: #197344;
    background:
        linear-gradient(
            135deg,
            #e7f8ed,
            #d8f1e1
        );
}

.contact-card-icon i {
    font-size: 1.2rem;
}

.contact-card-content {
    position: relative;
    z-index: 2;
}

.contact-card-label {
    display: inline-block;
    margin-bottom: 11px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #469765;
}

.contact-info-card h3 {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    line-height: 1.2;
    color: #102c23;
}

.contact-info-card p {
    margin: 0 0 25px;
    font-size: 0.93rem;
    line-height: 1.75;
    color: #66756e;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #197344;
    text-decoration: none;
    word-break: break-word;
}

.contact-card-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.contact-card-link:hover i {
    transform: translate(3px, -3px);
}

.contact-card-link.text-link {
    cursor: default;
}


/* =========================================
   MAIN CONTACT SECTION
========================================= */

.main-contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(111, 194, 135, 0.06),
            transparent 30%
        ),
        #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    gap: 90px;
    align-items: start;
}


/* =========================================
   CONTACT CONTENT
========================================= */

.contact-main-content {
    position: sticky;
    top: 110px;
}

.contact-main-content h2 {
    margin: 20px 0 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #102c23;
}

.contact-main-content h2 span {
    display: block;
    color: #267b49;
}

.contact-main-content > p {
    max-width: 550px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.85;
    color: #66756e;
}


/* =========================================
   CONTACT TOPICS
========================================= */

.contact-topics {
    margin-top: 42px;
}

.contact-topics h4 {
    margin: 0 0 20px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #18392e;
}

.topic-list {
    display: grid;
    gap: 13px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #52645d;
}

.topic-item i {
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: #ffffff;
    background: #2e8b52;
}


/* =========================================
   CONTACT ASSURANCE
========================================= */

.contact-assurance-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-top: 45px;
    padding: 23px;
    border: 1px solid #dcebe1;
    border-radius: 18px;
    background: #f3faf5;
}

.assurance-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: #267b49;
    background: #dff2e5;
}

.contact-assurance-card h4 {
    margin: 2px 0 7px;
    font-size: 0.95rem;
    color: #18392e;
}

.contact-assurance-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.65;
    color: #64746d;
}


/* =========================================
   FORM WRAPPER
========================================= */

.contact-form-wrapper {
    position: relative;
    padding: 42px;
    border: 1px solid #dfe9e2;
    border-radius: 30px;
    background: #ffffff;
    box-shadow:
        0 25px 70px rgba(10, 41, 30, 0.09);
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background:
        linear-gradient(
            90deg,
            #2e8b52,
            #7fcf98,
            #c0efcc
        );
}


/* =========================================
   FORM HEADER
========================================= */

.form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 32px;
    border-bottom: 1px solid #edf1ee;
}

.form-top span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #489565;
}

.form-top h3 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1.2;
    color: #102c23;
}

.form-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #257848,
            #3da466
        );
    box-shadow:
        0 12px 25px rgba(38, 123, 73, 0.2);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 20px;
}

.form-group {
    min-width: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 9px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #294438;
}

.form-group label > span {
    color: #d14d4d;
}

.form-group label small {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 500;
    color: #9aa7a1;
}


/* =========================================
   INPUTS
========================================= */

.input-wrapper {
    position: relative;
}

.input-wrapper > i:first-child {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #8aa098;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    height: 54px;
    padding: 0 18px 0 46px;
    border: 1px solid #dfe7e2;
    border-radius: 13px;
    outline: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    color: #203a30;
    background: #fbfcfb;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.input-wrapper input::placeholder {
    color: #a5afa9;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: #4da873;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(77, 168, 115, 0.1);
}


/* =========================================
   SELECT
========================================= */

.select-wrapper select {
    appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #708077;
    pointer-events: none;
}


/* =========================================
   TEXTAREA
========================================= */

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper textarea {
    width: 100%;
    min-height: 160px;
    resize: vertical;
    padding: 16px 18px 34px;
    border: 1px solid #dfe7e2;
    border-radius: 13px;
    outline: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #203a30;
    background: #fbfcfb;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.textarea-wrapper textarea::placeholder {
    color: #a5afa9;
}

.textarea-wrapper textarea:focus {
    border-color: #4da873;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(77, 168, 115, 0.1);
}

.character-count {
    position: absolute;
    right: 15px;
    bottom: 13px;
    font-size: 0.7rem;
    color: #9ba8a1;
}


/* =========================================
   PRIVACY CHECKBOX
========================================= */

.form-check {
    display: flex;
    align-items: flex-start;
    grid-column: 1 / -1;
    gap: 11px;
    margin-top: 2px;
}

.form-check input {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #2d8750;
    cursor: pointer;
}

.form-check label {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #718078;
    cursor: pointer;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.form-submit-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 56px;
    justify-content: center;
    margin-top: 2px;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
}

.form-submit-btn i {
    transition: transform 0.25s ease;
}

.form-submit-btn:hover i {
    transform: translateX(4px) translateY(-2px);
}

.form-submit-btn.loading {
    pointer-events: none;
    opacity: 0.75;
}


/* =========================================
   FORM STATUS
========================================= */

.form-status {
    display: none;
    grid-column: 1 / -1;
    padding: 14px 17px;
    border-radius: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
}

.form-status.show {
    display: block;
}

.form-status.success {
    border: 1px solid #bfe4ca;
    color: #267044;
    background: #edf9f0;
}

.form-status.error {
    border: 1px solid #f0caca;
    color: #b34444;
    background: #fff4f4;
}


/* =========================================
   CONTACT PROCESS SECTION
========================================= */

.contact-process-section {
    position: relative;
    overflow: hidden;
    background: #f7faf8;
}

.contact-process-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -350px;
    top: -350px;
    border-radius: 50%;
    background: rgba(76, 164, 105, 0.04);
}

.contact-process-section .section-heading {
    position: relative;
    max-width: 760px;
    margin: 0 auto 65px;
}

.contact-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-process-grid::before {
    content: "";
    position: absolute;
    top: 85px;
    left: 18%;
    right: 18%;
    height: 1px;
    border-top: 1px dashed #c9d8cf;
}


/* =========================================
   PROCESS CARD
========================================= */

.process-card {
    position: relative;
    z-index: 2;
    padding: 40px 32px 35px;
    border: 1px solid #e3ebe6;
    border-radius: 22px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 50px rgba(13, 43, 33, 0.08);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 23px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #b0bdb6;
}

.process-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 26px;
    border-radius: 18px;
    color: #2d8550;
    background: #ecf7ef;
}

.process-icon i {
    font-size: 1.15rem;
}

.process-card h3 {
    margin: 0 0 13px;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #15382c;
}

.process-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #708078;
}


/* =========================================
   SUPPORT STRIP
========================================= */

.support-strip {
    padding: 35px 0;
    background:
        linear-gradient(
            135deg,
            #0b3025,
            #104633
        );
}

.support-strip-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.support-strip-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-strip-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 17px;
    color: #b9f0c9;
    background: rgba(255, 255, 255, 0.08);
}

.support-strip-content > div:last-child > span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.58);
}

.support-strip h3 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    color: #ffffff;
}

.support-strip h3 span {
    color: #b7eec8;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(111, 205, 143, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(186, 255, 204, 0.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #09271f,
            #0b382a
        );
}

.final-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.final-cta h2 {
    max-width: 800px;
    margin: 22px auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.final-cta h2 span {
    display: block;
    color: #a8e9bb;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.67);
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.final-cta .cta-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.56);
}

.final-cta .cta-note i {
    color: #a8e9bb;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-one {
    width: 430px;
    height: 430px;
    left: -200px;
    top: -180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.02),
        0 0 0 140px rgba(255, 255, 255, 0.01);
}

.cta-shape-two {
    width: 350px;
    height: 350px;
    right: -160px;
    bottom: -180px;
    background: rgba(133, 225, 162, 0.06);
    filter: blur(35px);
}


/* =========================================
   SCROLL ANIMATION SUPPORT
========================================= */

.contact-info-card,
.process-card,
.contact-form-wrapper {
    animation: contactFadeUp 0.7s ease both;
}

.contact-info-card:nth-child(2),
.process-card:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(3),
.process-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes contactFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-main-content {
        position: static;
        max-width: 750px;
    }

    .contact-quick-info {
        max-width: 100%;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-hero {
        min-height: auto;
        padding: 145px 0 75px;
    }

    .contact-quick-info {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

    .contact-info-card {
        min-height: auto;
    }

    .contact-process-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-process-grid::before {
        display: none;
    }

    .support-strip-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .contact-hero {
        padding: 125px 0 65px;
    }

    .contact-hero-text h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
        letter-spacing: -0.045em;
    }

    .contact-hero-text > p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .contact-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .contact-quick-info {
        margin-top: 55px;
    }

    .quick-info-item {
        min-height: 85px;
        padding: 16px;
    }

    .contact-info-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .contact-main-content h2 {
        font-size: 2.6rem;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .contact-form-wrapper::before {
        left: 25px;
        right: 25px;
    }

    .form-top {
        align-items: flex-start;
    }

    .form-top h3 {
        font-size: 1.65rem;
    }

    .form-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-check,
    .form-submit-btn,
    .form-status {
        grid-column: auto;
    }

    .support-strip {
        padding: 30px 0;
    }

    .support-strip-content {
        align-items: flex-start;
    }

    .support-strip h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .btn-outline-light {
        width: 100%;
    }

    .final-cta {
        padding: 90px 0;
    }

    .final-cta h2 {
        font-size: 2.8rem;
    }

    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .contact-hero .breadcrumb {
        margin-bottom: 30px;
        font-size: 0.8rem;
    }

    .contact-hero-text h1 {
        font-size: 2.65rem;
    }

    .quick-info-item {
        gap: 12px;
    }

    .quick-info-icon {
        width: 42px;
        height: 42px;
    }

    .contact-main-content h2 {
        font-size: 2.3rem;
    }

    .contact-assurance-card {
        padding: 18px;
    }

    .form-top h3 {
        font-size: 1.45rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .input-wrapper input,
    .input-wrapper select {
        height: 52px;
    }

    .process-card {
        padding: 32px 24px;
    }

    .final-cta h2 {
        font-size: 2.45rem;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}