@charset "utf-8";
/* CSS Document */
/* ==============================================================
   THINK CANADIAN — CONTACT US
   ============================================================== */

.tc-contact-page {
    --tc-contact-red: #E31E24;
    --tc-contact-red-dark: #c8171c;
    --tc-contact-navy: #101827;
    --tc-contact-heading: #172033;
    --tc-contact-text: #5D6675;
    --tc-contact-light: #F7F8FA;
    --tc-contact-border: rgba(18, 30, 50, .09);

    color: var(--tc-contact-text);
    overflow: hidden;
}

.tc-contact-page *,
.tc-contact-page *::before,
.tc-contact-page *::after {
    box-sizing: border-box;
}

.tc-contact-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.tc-contact-page h1,
.tc-contact-page h2,
.tc-contact-page h3,
.tc-contact-page h4,
.tc-contact-page p {
    margin-top: 0;
}

.tc-contact-page a {
    text-decoration: none;
}


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

.tc-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--tc-contact-red);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.tc-contact-eyebrow > span {
    width: 25px;
    height: 2px;
    border-radius: 20px;
    background: var(--tc-contact-red);
}

.tc-contact-section-head {
    max-width: 680px;
    margin-bottom: 42px;
}

.tc-contact-section-head--center {
    margin-inline: auto;
    text-align: center;
}

.tc-contact-section-head--center .tc-contact-eyebrow {
    justify-content: center;
}

.tc-contact-section-head h2,
.tc-contact-office__content h2,
.tc-contact-faq__intro h2 {
    margin-bottom: 15px;
    color: var(--tc-contact-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.tc-contact-section-head p,
.tc-contact-office__lead,
.tc-contact-faq__intro > p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
}


/* ==============================================================
   BUTTONS
   ============================================================== */

.tc-contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.tc-contact-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 750;
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.tc-contact-btn:hover {
    transform: translateY(-2px);
}

.tc-contact-btn--primary {
    color: #fff;
    background: var(--tc-contact-red);
    box-shadow: 0 9px 24px rgba(227, 30, 36, .18);
}

.tc-contact-btn--primary:hover {
    color: #fff;
    background: var(--tc-contact-red-dark);
    box-shadow: 0 12px 28px rgba(227, 30, 36, .25);
}

.tc-contact-btn--secondary {
    color: var(--tc-contact-heading);
    border-color: rgba(18, 30, 50, .13);
    background: #fff;
}

.tc-contact-btn--secondary:hover {
    color: var(--tc-contact-red);
    border-color: rgba(227, 30, 36, .3);
}

.tc-contact-btn--dark-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .04);
}

.tc-contact-btn--dark-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .08);
}


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

.tc-contact-hero {
    position: relative;
    padding: 96px 0 82px;
    background:
        radial-gradient(
            circle at 86% 15%,
            rgba(227, 30, 36, .075),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #fff 0%,
            #fafbfc 57%,
            #f6f8fa 100%
        );
}

.tc-contact-hero::before {
    position: absolute;
    top: 0;
    right: 8%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(227, 30, 36, .055);
    border-radius: 50%;
    content: "";
    transform: translateY(-55%);
    pointer-events: none;
}

.tc-contact-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
    align-items: center;
    gap: clamp(50px, 7vw, 90px);
}

.tc-contact-hero__title {
    max-width: 680px;
    margin-bottom: 22px;
    color: var(--tc-contact-heading);
    font-size: clamp(44px, 5.3vw, 68px);
    line-height: 1.01;
    letter-spacing: -.05em;
}

.tc-contact-hero__title span {
    display: block;
    color: var(--tc-contact-red);
}

.tc-contact-hero__text {
    max-width: 610px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.75;
}

.tc-contact-hero__services {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 27px;
}

.tc-contact-hero__services span {
    position: relative;
    padding-left: 15px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.tc-contact-hero__services span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tc-contact-red);
    content: "";
    transform: translateY(-50%);
}


/* Hero Panel */

.tc-contact-hero__panel {
    position: relative;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--tc-contact-border);
    border-radius: 25px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 25px 70px rgba(18, 30, 50, .09);
}

.tc-contact-hero__panel::before {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(227, 30, 36, .05);
    content: "";
}

.tc-contact-panel__header {
    margin-bottom: 20px;
}

.tc-contact-panel__small {
    display: block;
    margin-bottom: 8px;
    color: var(--tc-contact-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.tc-contact-panel__header h2 {
    margin-bottom: 7px;
    color: var(--tc-contact-heading);
    font-size: 27px;
    line-height: 1.15;
}

.tc-contact-panel__header p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.65;
}

.tc-contact-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--tc-contact-border);
    color: inherit;
}

.tc-contact-info-row__icon {
    display: flex;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--tc-contact-red);
    background: rgba(227, 30, 36, .07);
}

.tc-contact-info-row__icon svg {
    width: 20px;
    height: 20px;
}

.tc-contact-info-row__content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.tc-contact-info-row__content small {
    color: #8b93a0;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.tc-contact-info-row__content strong {
    color: var(--tc-contact-heading);
    font-size: 13px;
    line-height: 1.45;
}

.tc-contact-info-row__arrow {
    color: var(--tc-contact-red);
    transition: transform .2s ease;
}

.tc-contact-info-row:hover .tc-contact-info-row__arrow {
    transform: translateX(3px);
}

.tc-contact-panel__directions {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    border-radius: 10px;
    color: #fff;
    background: var(--tc-contact-navy);
    font-size: 13px;
    font-weight: 750;
}

.tc-contact-panel__directions:hover {
    color: #fff;
    background: var(--tc-contact-red);
}


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

.tc-contact-consult {
    padding: 92px 0;
    background: #fff;
}

.tc-contact-consult__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, .9fr);
    align-items: stretch;
    gap: 24px;
}

.tc-contact-form-card {
    padding: 34px;
    border: 1px solid rgba(18, 30, 50, .07);
    border-radius: 24px;
    background: var(--tc-contact-light);
}

.tc-contact-form-card__intro h3 {
    margin-bottom: 7px;
    color: var(--tc-contact-heading);
    font-size: 25px;
}

.tc-contact-form-card__intro p {
    margin-bottom: 25px;
    font-size: 14px;
}

.tc-contact-form-placeholder {
    padding: 45px 25px;
    border: 1px dashed rgba(227, 30, 36, .3);
    border-radius: 15px;
    text-align: center;
    background: #fff;
}

.tc-contact-form-placeholder p {
    margin-bottom: 7px;
}

.tc-contact-form-placeholder code {
    color: var(--tc-contact-red);
}


/* Generic form styling */

.tc-contact-form-card input:not([type="submit"]),
.tc-contact-form-card select,
.tc-contact-form-card textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(18, 30, 50, .12);
    outline: none;
    border-radius: 11px;
    color: var(--tc-contact-heading);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tc-contact-form-card textarea {
    min-height: 135px;
    padding-top: 14px;
    resize: vertical;
}

.tc-contact-form-card input:focus,
.tc-contact-form-card select:focus,
.tc-contact-form-card textarea:focus {
    border-color: var(--tc-contact-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .055);
}


/* Help Panel */

.tc-contact-help {
    padding: 34px;
    border-radius: 24px;
    color: rgba(255, 255, 255, .72);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(227, 30, 36, .21),
            transparent 33%
        ),
        var(--tc-contact-navy);
}

.tc-contact-help__badge {
    display: inline-block;
    margin-bottom: 14px;
    color: #ff7074;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.tc-contact-help h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 29px;
    line-height: 1.15;
}

.tc-contact-help__intro {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.7;
}

.tc-contact-help__item {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.tc-contact-help__number {
    color: #ff686d;
    font-size: 11px;
    font-weight: 800;
}

.tc-contact-help__item h4 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 15px;
}

.tc-contact-help__item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.6;
}


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

.tc-contact-office {
    padding: 92px 0;
    background: var(--tc-contact-light);
}

.tc-contact-office__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(45px, 7vw, 80px);
}

.tc-contact-office__visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(18, 30, 50, .09);
}

.tc-contact-office__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.tc-contact-office__image-label {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    color: #fff;
    background: rgba(16, 24, 39, .88);
    backdrop-filter: blur(10px);
}

.tc-contact-office__image-label strong {
    font-size: 14px;
}

.tc-contact-office__image-label span {
    font-size: 11px;
}

.tc-contact-office__lead {
    max-width: 530px;
    margin-bottom: 27px;
}

.tc-contact-office__details {
    margin-bottom: 24px;
    border-top: 1px solid var(--tc-contact-border);
}

.tc-contact-office__detail {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--tc-contact-border);
}

.tc-contact-office__detail > span {
    padding-top: 2px;
    color: var(--tc-contact-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
}

.tc-contact-office__detail strong,
.tc-contact-office__detail a {
    color: var(--tc-contact-heading);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.tc-contact-office__detail a:hover {
    color: var(--tc-contact-red);
}

.tc-contact-office__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 27px;
    padding: 13px 15px;
    border-radius: 10px;
    color: #4f5968;
    background: rgba(227, 30, 36, .055);
    font-size: 12px;
    line-height: 1.55;
}

.tc-contact-office__note span {
    color: var(--tc-contact-red);
    font-weight: 900;
}


/* ==============================================================
   MAP
   ============================================================== */

.tc-contact-map {
    padding: 82px 0 92px;
    background: #fff;
}

.tc-contact-map__wrap {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--tc-contact-border);
    border-radius: 25px;
    background: #eee;
}

.tc-contact-map__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.tc-contact-map__card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: min(330px, calc(100% - 48px));
    padding: 21px;
    border: 1px solid rgba(18, 30, 50, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 15px 40px rgba(18, 30, 50, .12);
    backdrop-filter: blur(10px);
}

.tc-contact-map__card > span {
    display: block;
    margin-bottom: 7px;
    color: var(--tc-contact-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
}

.tc-contact-map__card h3 {
    margin-bottom: 7px;
    color: var(--tc-contact-heading);
    font-size: 18px;
}

.tc-contact-map__card p {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.55;
}

.tc-contact-map__card a {
    color: var(--tc-contact-red);
    font-size: 12px;
    font-weight: 800;
}


/* ==============================================================
   FAQ
   ============================================================== */

.tc-contact-faq {
    padding: 92px 0;
    background: var(--tc-contact-light);
}

.tc-contact-faq__grid {
    display: grid;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: clamp(50px, 7vw, 90px);
}

.tc-contact-faq__intro {
    position: sticky;
    top: 110px;
}

.tc-contact-faq__intro > p {
    margin-bottom: 25px;
}

.tc-contact-faq__item {
    border-bottom: 1px solid rgba(18, 30, 50, .11);
}

.tc-contact-faq__item:first-child {
    border-top: 1px solid rgba(18, 30, 50, .11);
}

.tc-contact-faq__item summary {
    display: flex;
    min-height: 77px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;
    color: var(--tc-contact-heading);
    font-size: 15px;
    font-weight: 750;
}

.tc-contact-faq__item summary::-webkit-details-marker {
    display: none;
}

.tc-contact-faq__toggle {
    position: relative;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(227, 30, 36, .07);
}

.tc-contact-faq__toggle::before,
.tc-contact-faq__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background: var(--tc-contact-red);
    content: "";
    transform: translate(-50%, -50%);
}

.tc-contact-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.tc-contact-faq__item[open] .tc-contact-faq__toggle {
    background: var(--tc-contact-red);
}

.tc-contact-faq__item[open] .tc-contact-faq__toggle::before,
.tc-contact-faq__item[open] .tc-contact-faq__toggle::after {
    background: #fff;
}

.tc-contact-faq__item[open] .tc-contact-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(0);
}

.tc-contact-faq__answer {
    padding: 0 55px 20px 0;
}

.tc-contact-faq__answer p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.75;
}


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

.tc-contact-final {
    padding: 0 0 92px;
    background: #fff;
}

.tc-contact-final__box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) auto;
    align-items: center;
    gap: 40px;
    padding: 51px 54px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 87% 25%,
            rgba(227, 30, 36, .27),
            transparent 30%
        ),
        linear-gradient(135deg, #101827 0%, #171f31 100%);
}

.tc-contact-final__box::after {
    position: absolute;
    top: -95px;
    right: 16%;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
}

.tc-contact-final__content {
    position: relative;
    z-index: 2;
}

.tc-contact-final__badge {
    display: inline-block;
    margin-bottom: 13px;
    color: #ff777b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.tc-contact-final__content h2 {
    max-width: 680px;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.tc-contact-final__content h2 span {
    color: #ff666b;
}

.tc-contact-final__content p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .67);
    font-size: 14px;
    line-height: 1.7;
}

.tc-contact-final__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


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

@media (max-width: 991px) {

    .tc-contact-hero__grid,
    .tc-contact-consult__grid,
    .tc-contact-office__grid,
    .tc-contact-faq__grid {
        grid-template-columns: 1fr;
    }

    .tc-contact-hero__content {
        max-width: 700px;
    }

    .tc-contact-hero__panel {
        max-width: 650px;
    }

    .tc-contact-consult__grid {
        gap: 20px;
    }

    .tc-contact-office__visual {
        min-height: 450px;
    }

    .tc-contact-office__visual img {
        min-height: 450px;
    }

    .tc-contact-faq__intro {
        position: static;
        max-width: 600px;
    }

    .tc-contact-final__box {
        grid-template-columns: 1fr;
    }

    .tc-contact-final__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


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

@media (max-width: 767px) {

    .tc-contact-container {
        width: min(100% - 30px, 1180px);
    }

    .tc-contact-hero {
        padding: 62px 0 55px;
    }

    .tc-contact-hero__grid {
        gap: 38px;
    }

    .tc-contact-hero__title {
        font-size: clamp(39px, 12vw, 52px);
    }

    .tc-contact-hero__text {
        font-size: 15px;
    }

    .tc-contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tc-contact-btn {
        width: 100%;
    }

    .tc-contact-hero__services {
        gap: 7px 12px;
    }

    .tc-contact-hero__panel,
    .tc-contact-form-card,
    .tc-contact-help {
        padding: 23px 20px;
        border-radius: 20px;
    }

    .tc-contact-consult,
    .tc-contact-office,
    .tc-contact-faq {
        padding: 65px 0;
    }

    .tc-contact-map {
        padding: 65px 0;
    }

    .tc-contact-section-head {
        margin-bottom: 30px;
    }

    .tc-contact-office__grid {
        gap: 38px;
    }

    .tc-contact-office__visual,
    .tc-contact-office__visual img {
        min-height: 390px;
    }

    .tc-contact-office__detail {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tc-contact-map__wrap {
        height: auto;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .tc-contact-map__iframe {
        height: 350px;
        overflow: hidden;
        border: 1px solid var(--tc-contact-border);
        border-radius: 19px;
    }

    .tc-contact-map__card {
        position: static;
        width: 100%;
        margin-top: 12px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(18, 30, 50, .07);
    }

    .tc-contact-faq__grid {
        gap: 35px;
    }

    .tc-contact-faq__item summary {
        min-height: 70px;
        font-size: 14px;
    }

    .tc-contact-faq__answer {
        padding-right: 0;
    }

    .tc-contact-final {
        padding-bottom: 65px;
    }

    .tc-contact-final__box {
        gap: 28px;
        padding: 34px 22px;
        border-radius: 22px;
    }

    .tc-contact-final__actions {
        flex-direction: column;
    }
}

/* ==============================================================
   CONTACT FORM 7
   ============================================================== */

.tc-contact-form-card .wpcf7 {
    width: 100%;
}

.tc-contact-form-card .wpcf7-form {
    display: grid;
    gap: 18px;
}

.tc-contact-form-card .tc-cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
}

.tc-contact-form-card .tc-cf7-field {
    min-width: 0;
}

.tc-contact-form-card .tc-cf7-field--full {
    grid-column: 1 / -1;
}

.tc-contact-form-card .wpcf7-form p {
    margin: 0;
}

.tc-contact-form-card .wpcf7-form label {
    display: block;
    margin-bottom: 0;
    color: var(--tc-contact-heading);
    font-size: 13px;
    font-weight: 700;
}

.tc-contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.tc-contact-form-card .wpcf7-form-control {
    width: 100%;
}

.tc-contact-form-card input[type="text"],
.tc-contact-form-card input[type="email"],
.tc-contact-form-card input[type="tel"],
.tc-contact-form-card input[type="url"],
.tc-contact-form-card input[type="number"],
.tc-contact-form-card select,
.tc-contact-form-card textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(18, 30, 50, .12);
    outline: none;
    border-radius: 11px;
    color: var(--tc-contact-heading);
    background: #fff;
    font: inherit;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.tc-contact-form-card textarea {
    height: 150px;
    min-height: 140px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.tc-contact-form-card input:focus,
.tc-contact-form-card select:focus,
.tc-contact-form-card textarea:focus {
    border-color: var(--tc-contact-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .055);
}

.tc-contact-form-card input[type="submit"] {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--tc-contact-red);
    box-shadow: 0 9px 24px rgba(227, 30, 36, .18);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.tc-contact-form-card input[type="submit"]:hover {
    transform: translateY(-2px);
    background: var(--tc-contact-red-dark);
    box-shadow: 0 12px 28px rgba(227, 30, 36, .24);
}

.tc-contact-form-card .wpcf7-spinner {
    margin: 0 0 0 10px;
    vertical-align: middle;
}

.tc-contact-form-card .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #d92d20;
    font-size: 12px;
    line-height: 1.45;
}

.tc-contact-form-card .tc-cf7-field > p > br {
    display: none;
}

.tc-contact-form-card .wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 12px 14px !important;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.tc-contact-form-card form.sent .wpcf7-response-output {
    border-color: #16a34a;
    background: rgba(22, 163, 74, .06);
}

.tc-contact-form-card form.invalid .wpcf7-response-output,
.tc-contact-form-card form.failed .wpcf7-response-output,
.tc-contact-form-card form.unaccepted .wpcf7-response-output {
    border-color: #E31E24;
    background: rgba(227, 30, 36, .05);
}

/* ==============================================================
   CF7 MATH CAPTCHA
   ============================================================== */

.tc-math-captcha {
    padding: 18px 20px;
    border: 1px solid rgba(18, 30, 50, .09);
    border-radius: 14px;
    background: #fff;
}

.tc-math-captcha > label {
    display: block;
    margin-bottom: 11px;
    color: var(--tc-contact-heading);
    font-size: 13px;
    font-weight: 700;
}

.tc-math-captcha > label span {
    color: var(--tc-contact-red);
}

.tc-math-captcha__row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.tc-math-captcha__question {
    display: flex;
    min-height: 50px;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(18, 30, 50, .07);
    border-radius: 10px;
    color: var(--tc-contact-heading);
    background: var(--tc-contact-light);
    font-size: 18px;
    font-weight: 800;
}

.tc-math-captcha__operator {
    color: var(--tc-contact-red);
}

.tc-math-captcha__answer {
    width: 145px;
}

.tc-contact-form-card input.tc-math-captcha__input {
    width: 100%;
    min-height: 50px;
    margin: 0;
    text-align: center;
}

.tc-math-captcha__help {
    margin: 8px 0 0 !important;
    color: #818a98;
    font-size: 11px;
    line-height: 1.5;
}

.tc-math-captcha__error {
    display: none;
}


/* Mobile */

@media (max-width: 480px) {

    .tc-contact-form-card .tc-cf7-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .tc-contact-form-card .tc-cf7-field--full {
        grid-column: auto;
    }

    .tc-math-captcha {
        padding: 16px;
    }

    .tc-math-captcha__row {
        align-items: stretch;
        flex-direction: column;
    }

    .tc-math-captcha__question {
        width: fit-content;
    }

    .tc-math-captcha__answer {
        width: 100%;
    }
}
