
/* =========================================================
   Soil To Bowl - Contact Page
========================================================= */

   .stb-contact-page.stb-contact-v2 {
            --stb-v2-green: #4e7d24;
            --stb-v2-deep: #173f13;
            --stb-v2-deep-2: #285d1b;
            --stb-v2-cream: #fffdf5;
            --stb-v2-pale: #f4faec;
            --stb-v2-gold: #f4c846;
            --stb-v2-gold-deep: #bf8619;
            --stb-v2-ink: #183f16;
            --stb-v2-muted: #6c7568;
            isolation: isolate;
            width: 100%;
            max-width: none;
            overflow: hidden;
            background: var(--stb-v2-cream);
            color: var(--stb-v2-ink);
        }

        .stb-contact-v2,
        .stb-contact-v2 * {
            box-sizing: border-box;
        }

        .stb-contact-v2 a {
            color: inherit;
            text-decoration: none;
        }

        .stb-contact-v2 button,
        .stb-contact-v2 input,
        .stb-contact-v2 textarea {
            font: inherit;
        }

        .stb-v2-container {
            width: min(1180px, calc(100% - 48px));
            margin-inline: auto;
        }

        .stb-v2-hero {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            color: #fffdf5;
            background:
                radial-gradient(circle at 80% 12%, rgba(125, 177, 62, .34), transparent 34%),
                linear-gradient(115deg, var(--stb-v2-deep) 0%, var(--stb-v2-green) 100%);
            border-radius: 0 0 44px 44px;
        }

        .stb-v2-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            opacity: .16;
            background:
                radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .22) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
                radial-gradient(circle at 75% 68%, rgba(255, 255, 255, .16) 0 1px, transparent 1.5px) 0 0 / 24px 24px;
            mask-image: linear-gradient(to bottom, #000, transparent 92%);
        }

        .stb-v2-hero::after {
            content: "";
            position: absolute;
            inset: auto -10% -80px;
            height: 150px;
            z-index: -1;
            border-radius: 50% 50% 0 0;
            background: rgba(255, 253, 245, .08);
            filter: blur(24px);
        }

        .stb-v2-hero-content {
            position: relative;
            z-index: 1;
            padding: clamp(58px, 7vw, 86px) 0 clamp(122px, 11vw, 148px);
            text-align: center;
        }

        .stb-v2-hero-leaf {
            position: absolute;
            z-index: -1;
            width: clamp(120px, 16vw, 220px);
            color: rgba(244, 200, 70, .42);
            pointer-events: none;
        }

        .stb-v2-hero-leaf svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .stb-v2-hero-leaf-left {
            top: -8px;
            left: -18px;
            transform: rotate(-10deg);
        }

        .stb-v2-hero-leaf-right {
            top: -6px;
            right: -18px;
            transform: scaleX(-1) rotate(-10deg);
        }

        .stb-v2-eyebrow,
        .stb-v2-form-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            border: 1px solid rgba(244, 200, 70, .55);
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .18em;
            line-height: 1;
            text-transform: uppercase;
        }

        .stb-v2-eyebrow {
            padding: 11px 17px;
            color: var(--stb-v2-gold);
            background: rgba(23, 63, 19, .24);
        }

        .stb-v2-eyebrow svg,
        .stb-v2-form-badge svg {
            width: 15px;
            height: 15px;
            flex: 0 0 auto;
        }

        .stb-v2-hero h1 {
            max-width: 1080px;
            margin: 24px auto 0;
            color: #fffdf5;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(2.55rem, 5.2vw, 4.8rem);
            font-weight: 700;
            letter-spacing: -.045em;
            line-height: .98;
        }

        .stb-v2-hero h1 span {
            color: var(--stb-v2-gold);
        }

        .stb-v2-title-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            width: min(350px, 70%);
            margin: 24px auto 20px;
            color: var(--stb-v2-gold);
        }

        .stb-v2-title-line span {
            display: block;
            flex: 1;
            height: 1px;
            background: currentColor;
            opacity: .72;
        }

        .stb-v2-title-line svg {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
        }

        .stb-v2-hero p {
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 253, 245, .9);
            font-size: clamp(.92rem, 1.5vw, 1.08rem);
            line-height: 1.65;
        }

        .stb-v2-contact-section {
            position: relative;
            z-index: 2;
            padding: 0 0 72px;
            background:
                radial-gradient(circle at 5% 18%, rgba(111, 174, 62, .12), transparent 24%),
                radial-gradient(circle at 96% 68%, rgba(244, 200, 70, .12), transparent 25%),
                var(--stb-v2-cream);
        }

        .stb-contact-page.stb-contact-v2 .stb-v2-contact-shell {
            position: relative;
            z-index: 2;
            /*
             * Pull the complete contact block over the hero so the cards
             * visibly sit on top of the hero boundary like the mockup.
             */
            margin-top: 0 !important;
            margin-bottom: -62px !important;
            transform: translateY(-62px);
        }

        .stb-v2-contact-grid {
            display: grid;
            grid-template-columns: minmax(270px, .84fr) minmax(0, 1.36fr);
            gap: 24px;
            align-items: stretch;
        }

        .stb-v2-info-card,
        .stb-v2-form-card,
        .stb-v2-support-strip {
            border: 1px solid rgba(213, 157, 40, .38);
            background:
                radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .92), transparent 33%),
                linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 253, 245, .98));
            box-shadow:
                0 26px 65px rgba(33, 66, 20, .12),
                0 4px 14px rgba(33, 66, 20, .05);
        }

        .stb-v2-info-card,
        .stb-v2-form-card {
            position: relative;
            overflow: hidden;
            min-width: 0;
            border-radius: 24px;
        }

        .stb-v2-info-card {
            display: flex;
            flex-direction: column;
            padding: clamp(26px, 3vw, 38px);
        }

        .stb-v2-info-card::after,
        .stb-v2-form-card::after {
            content: "";
            position: absolute;
            width: 170px;
            height: 170px;
            right: -85px;
            bottom: -92px;
            border: 1px solid rgba(78, 125, 36, .12);
            border-radius: 50%;
            pointer-events: none;
        }

        .stb-v2-card-leaf {
            position: absolute;
            top: 16px;
            right: 15px;
            width: 116px;
            color: rgba(78, 125, 36, .16);
            transform: rotate(10deg);
            pointer-events: none;
        }

        .stb-v2-card-leaf svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .stb-v2-card-icon {
            display: grid;
            place-items: center;
            width: 78px;
            height: 78px;
            margin-bottom: 20px;
            color: #fff;
            border: 7px solid rgba(78, 125, 36, .12);
            border-radius: 50%;
            background: linear-gradient(145deg, #70ad3d, var(--stb-v2-green));
            box-shadow: 0 12px 24px rgba(78, 125, 36, .22);
        }

        .stb-v2-card-icon svg {
            width: 40px;
            height: 40px;
        }

        .stb-v2-info-card h2,
        .stb-v2-form-card h2 {
            margin: 0;
            color: var(--stb-v2-ink);
            font-family: Georgia, "Times New Roman", serif;
            font-weight: 700;
            letter-spacing: -.035em;
            line-height: 1.06;
        }

        .stb-v2-info-card h2 {
            max-width: 330px;
            font-size: clamp(1.8rem, 3vw, 2.55rem);
        }

        .stb-v2-info-head p,
        .stb-v2-form-head p {
            margin: 12px 0 0;
            color: var(--stb-v2-muted);
            font-size: .92rem;
            line-height: 1.6;
        }

        .stb-v2-info-list {
            display: grid;
            gap: 11px;
            margin-top: 28px;
        }

        .stb-v2-contact-item {
            display: flex;
            align-items: center;
            gap: 13px;
            min-width: 0;
            padding: 12px 13px;
            border: 1px solid rgba(213, 157, 40, .32);
            border-radius: 15px;
            background: rgba(255, 253, 245, .7);
            transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
        }

        .stb-v2-contact-item:hover,
        .stb-v2-contact-item:focus-visible {
            border-color: rgba(78, 125, 36, .48);
            box-shadow: 0 10px 22px rgba(78, 125, 36, .10);
            transform: translateY(-2px);
        }

        .stb-v2-contact-item > span {
            display: grid;
            place-items: center;
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            color: #fff;
            border-radius: 50%;
            background: linear-gradient(145deg, #72b23f, var(--stb-v2-green));
        }

        .stb-v2-contact-item > span svg {
            width: 21px;
            height: 21px;
        }

        .stb-v2-contact-item > div {
            min-width: 0;
        }

        .stb-v2-contact-item strong {
            display: block;
            color: var(--stb-v2-ink);
            font-size: .86rem;
            font-weight: 800;
            line-height: 1.25;
        }

        .stb-v2-contact-item p {
            margin: 4px 0 0;
            overflow-wrap: anywhere;
            color: var(--stb-v2-muted);
            font-size: .78rem;
            line-height: 1.25;
        }

        .stb-v2-contact-item::after {
            content: "›";
            margin-left: auto;
            color: var(--stb-v2-green);
            font-size: 1.55rem;
            line-height: 1;
        }

        .stb-v2-note {
            position: relative;
            z-index: 1;
            margin-top: auto;
            padding: 14px 15px;
            border: 1px solid rgba(78, 125, 36, .28);
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(244, 250, 236, .94), rgba(255, 253, 245, .8));
        }

        .stb-v2-note strong {
            display: block;
            color: var(--stb-v2-ink);
            font-size: .78rem;
            font-weight: 800;
        }

        .stb-v2-note p {
            margin: 5px 0 0;
            color: var(--stb-v2-muted);
            font-size: .72rem;
            line-height: 1.45;
        }

        .stb-v2-form-card {
            padding: clamp(26px, 3.2vw, 42px);
        }

        .stb-v2-form-badge {
            gap: 7px;
            padding: 9px 13px;
            color: #815d0d;
            border-color: rgba(213, 157, 40, .38);
            background: linear-gradient(135deg, #fff7d7, #fff0bd);
            letter-spacing: .08em;
        }

        .stb-v2-form-badge svg {
            width: 14px;
            height: 14px;
        }

        .stb-v2-form-card h2 {
            margin-top: 18px;
            font-size: clamp(1.9rem, 3.4vw, 2.9rem);
        }

        .stb-v2-form {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px 20px;
            margin-top: 27px;
        }

        .stb-contact-v2 .stb-v2-form .stb-form-group {
            min-width: 0;
            margin: 0;
        }

        .stb-v2-field-half {
            grid-column: span 1;
        }

        .stb-v2-field-full {
            grid-column: 1 / -1;
        }

        .stb-contact-v2 .stb-v2-form label {
            display: block;
            margin: 0 0 8px;
            color: var(--stb-v2-ink);
            font-size: .77rem;
            font-weight: 800;
            letter-spacing: .01em;
        }

        .stb-contact-v2 .stb-v2-form .stb-input-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            min-height: 50px;
            padding: 0 14px;
            border: 1px solid rgba(78, 125, 36, .25);
            border-radius: 13px;
            background: rgba(255, 255, 255, .66);
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .stb-contact-v2 .stb-v2-form .stb-input-wrap:focus-within {
            border-color: var(--stb-v2-green);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(78, 125, 36, .11);
        }

        .stb-contact-v2 .stb-v2-form .stb-input-wrap.has-error {
            border-color: #c94336;
            box-shadow: 0 0 0 3px rgba(201, 67, 54, .10);
        }

        .stb-v2-input-icon {
            display: grid;
            place-items: center;
            width: 20px;
            height: 20px;
            flex: 0 0 20px;
            color: var(--stb-v2-green);
        }

        .stb-v2-input-icon svg {
            width: 19px;
            height: 19px;
        }

        .stb-contact-v2 .stb-v2-form input,
        .stb-contact-v2 .stb-v2-form textarea {
            width: 100%;
            min-width: 0;
            padding: 0;
            color: var(--stb-v2-ink);
            border: 0;
            outline: 0;
            background: transparent;
            font-size: .87rem;
        }

        .stb-contact-v2 .stb-v2-form input::placeholder,
        .stb-contact-v2 .stb-v2-form textarea::placeholder {
            color: #8b9388;
            opacity: 1;
        }

        .stb-contact-v2 .stb-v2-form .stb-textarea-wrap {
            align-items: flex-start;
            min-height: 118px;
            padding-top: 14px;
        }

        .stb-contact-v2 .stb-v2-form textarea {
            min-height: 88px;
            resize: vertical;
            line-height: 1.5;
        }

        .stb-contact-v2 .stb-form-error {
            margin-top: 7px;
            color: #b52f25;
            font-size: .73rem;
            line-height: 1.35;
        }

        .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            grid-column: 1 / -1;
            width: 100%;
            min-height: 54px;
            margin-top: 2px;
            padding: 8px 16px 8px 24px;
            color: #fff;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(100deg, var(--stb-v2-deep), var(--stb-v2-green));
            box-shadow: 0 12px 24px rgba(23, 63, 19, .22);
            cursor: pointer;
            font-size: .81rem;
            font-weight: 900;
            letter-spacing: .1em;
            text-transform: uppercase;
            transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
        }

        .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn:hover:not(:disabled),
        .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn:focus-visible {
            filter: brightness(1.08);
            box-shadow: 0 16px 30px rgba(23, 63, 19, .28);
            transform: translateY(-2px);
        }

        .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn:disabled {
            cursor: wait;
            opacity: .78;
        }

        .stb-v2-submit-icon {
            display: grid;
            place-items: center;
            width: 36px;
            height: 36px;
            flex: 0 0 36px;
            color: var(--stb-v2-green);
            border-radius: 50%;
            background: #fff;
        }

        .stb-v2-submit-icon svg {
            width: 18px;
            height: 18px;
        }

        .stb-v2-support-strip {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, 1.12fr);
            gap: 0;
            margin-top: 24px;
            padding: 14px;
            border-radius: 20px;
        }

        .stb-v2-support-item {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            padding: 10px 16px;
            border-right: 1px solid rgba(78, 125, 36, .14);
        }

        .stb-v2-support-icon {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            color: var(--stb-v2-green);
            border-radius: 50%;
            background: var(--stb-v2-pale);
        }

        .stb-v2-support-icon svg {
            width: 23px;
            height: 23px;
        }

        .stb-v2-support-item strong {
            display: block;
            color: var(--stb-v2-ink);
            font-size: .8rem;
            font-weight: 800;
            line-height: 1.25;
        }

        .stb-v2-support-item p {
            margin: 4px 0 0;
            color: var(--stb-v2-muted);
            font-size: .7rem;
            line-height: 1.35;
        }

        .stb-v2-request {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-width: 0;
            margin: 0 4px 0 14px;
            padding: 11px 14px;
            color: var(--stb-v2-ink);
            border: 1px solid rgba(78, 125, 36, .48);
            border-radius: 14px;
            background: rgba(244, 250, 236, .68);
            transition: background .2s ease, transform .2s ease;
        }

        .stb-v2-request:hover,
        .stb-v2-request:focus-visible {
            background: var(--stb-v2-pale);
            transform: translateY(-2px);
        }

        .stb-v2-request-copy {
            min-width: 0;
        }

        .stb-v2-request-copy small,
        .stb-v2-request-copy strong {
            display: block;
        }

        .stb-v2-request-copy small {
            color: var(--stb-v2-muted);
            font-size: .68rem;
        }

        .stb-v2-request-copy strong {
            margin-top: 3px;
            color: var(--stb-v2-ink);
            font-size: .79rem;
        }

        .stb-v2-request-arrow {
            display: grid;
            place-items: center;
            width: 30px;
            height: 30px;
            flex: 0 0 30px;
            color: #fff;
            border-radius: 50%;
            background: var(--stb-v2-green);
            font-size: 1.1rem;
            line-height: 1;
        }

        .stb-v2-popup {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: grid;
            place-items: center;
            padding: 20px;
            visibility: hidden;
            opacity: 0;
            background: rgba(23, 63, 19, .46);
            backdrop-filter: blur(7px);
            transition: opacity .22s ease, visibility .22s ease;
        }

        .stb-v2-popup.is-show {
            visibility: visible;
            opacity: 1;
        }

        .stb-v2-popup-box {
            position: relative;
            width: min(420px, 100%);
            padding: 34px 28px 30px;
            text-align: center;
            border: 1px solid rgba(213, 157, 40, .42);
            border-radius: 24px;
            background: var(--stb-v2-cream);
            box-shadow: 0 26px 70px rgba(23, 63, 19, .28);
            transform: translateY(12px) scale(.98);
            transition: transform .22s ease;
        }

        .stb-v2-popup.is-show .stb-v2-popup-box {
            transform: translateY(0) scale(1);
        }

        .stb-v2-popup-close {
            position: absolute;
            top: 10px;
            right: 13px;
            width: 34px;
            height: 34px;
            color: var(--stb-v2-muted);
            border: 0;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            font-size: 1.7rem;
            line-height: 1;
        }

        .stb-v2-popup-icon {
            display: grid;
            place-items: center;
            width: 62px;
            height: 62px;
            margin: 0 auto 16px;
            color: #fff;
            border-radius: 50%;
            background: var(--stb-v2-green);
            font-size: 1.8rem;
            font-weight: 900;
        }

        .stb-v2-popup.is-error .stb-v2-popup-icon {
            background: #b52f25;
        }

        .stb-v2-popup h3 {
            margin: 0;
            color: var(--stb-v2-ink);
            font-family: Georgia, "Times New Roman", serif;
            font-size: 1.7rem;
        }

        .stb-v2-popup p {
            margin: 10px 0 0;
            color: var(--stb-v2-muted);
            font-size: .92rem;
            line-height: 1.55;
        }

        .stb-contact-v2 :focus-visible {
            outline: 3px solid rgba(244, 200, 70, .8);
            outline-offset: 3px;
        }

        @media (max-width: 980px) {
            .stb-v2-container {
                width: min(100% - 40px, 920px);
            }

            .stb-v2-contact-grid {
                grid-template-columns: minmax(235px, .82fr) minmax(0, 1.18fr);
                gap: 18px;
            }

            .stb-v2-info-card,
            .stb-v2-form-card {
                border-radius: 20px;
            }

            .stb-v2-info-card {
                padding: 25px 20px;
            }

            .stb-v2-form-card {
                padding: 27px 22px;
            }

            .stb-v2-contact-item {
                gap: 9px;
                padding-inline: 9px;
            }

            .stb-v2-contact-item > span {
                width: 38px;
                height: 38px;
                flex-basis: 38px;
            }

            .stb-v2-contact-item strong {
                font-size: .77rem;
            }

            .stb-v2-contact-item p {
                font-size: .69rem;
            }

            .stb-v2-support-strip {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                padding: 12px;
            }

            .stb-v2-support-item {
                border-right: 0;
                border-bottom: 1px solid rgba(78, 125, 36, .14);
            }

            .stb-v2-support-item:nth-child(odd) {
                border-right: 1px solid rgba(78, 125, 36, .14);
            }

            .stb-v2-support-item:nth-child(3) {
                border-bottom: 0;
            }

            .stb-v2-request {
                margin: 10px 4px 4px;
            }
        }

        @media (max-width: 767px) {
            .stb-v2-container {
                width: min(100% - 32px, 560px);
            }

            .stb-v2-hero {
                border-radius: 0 0 28px 28px;
            }

            .stb-v2-hero-content {
                padding: 48px 0 104px;
            }

            .stb-v2-hero-leaf {
                width: 130px;
                opacity: .78;
            }

            .stb-v2-hero-leaf-left {
                top: 5px;
                left: -48px;
            }

            .stb-v2-hero-leaf-right {
                top: 7px;
                right: -48px;
            }

            .stb-v2-eyebrow {
                padding: 9px 12px;
                font-size: 9px;
                letter-spacing: .12em;
            }

            .stb-v2-hero h1 {
                margin-top: 19px;
                font-size: clamp(2.25rem, 11vw, 3.15rem);
                line-height: 1.02;
            }

            .stb-v2-title-line {
                margin: 19px auto 15px;
            }

            .stb-v2-hero p {
                max-width: 340px;
                font-size: .82rem;
                line-height: 1.55;
            }

            .stb-contact-page.stb-contact-v2 .stb-v2-contact-shell {
                margin-top: 0 !important;
                margin-bottom: -48px !important;
                transform: translateY(-48px);
            }

            .stb-v2-contact-grid {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .stb-v2-form-card {
                order: -1;
                padding: 24px 17px 20px;
                border-radius: 19px;
            }

            .stb-v2-info-card {
                padding: 24px 17px 18px;
                border-radius: 19px;
            }

            .stb-v2-form-badge {
                padding: 8px 11px;
                font-size: 9px;
            }

            .stb-v2-form-card h2 {
                margin-top: 15px;
                font-size: 2rem;
            }

            .stb-v2-form-head p {
                margin-top: 9px;
                font-size: .8rem;
            }

            .stb-v2-form {
                grid-template-columns: minmax(0, 1fr);
                gap: 14px;
                margin-top: 21px;
            }

            .stb-v2-field-half,
            .stb-v2-field-full,
            .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn {
                grid-column: 1 / -1;
            }

            .stb-contact-v2 .stb-v2-form label {
                margin-bottom: 6px;
                font-size: .72rem;
            }

            .stb-contact-v2 .stb-v2-form .stb-input-wrap {
                min-height: 48px;
                padding-inline: 12px;
                border-radius: 11px;
            }

            .stb-contact-v2 .stb-v2-form input,
            .stb-contact-v2 .stb-v2-form textarea {
                font-size: .83rem;
            }

            .stb-contact-v2 .stb-v2-form .stb-textarea-wrap {
                min-height: 105px;
            }

            .stb-contact-v2 .stb-v2-form textarea {
                min-height: 76px;
            }

            .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn {
                min-height: 51px;
                margin-top: 1px;
                font-size: .74rem;
            }

            .stb-v2-card-icon {
                width: 62px;
                height: 62px;
                margin-bottom: 15px;
                border-width: 5px;
            }

            .stb-v2-card-icon svg {
                width: 32px;
                height: 32px;
            }

            .stb-v2-info-card h2 {
                font-size: 2rem;
            }

            .stb-v2-info-head p {
                margin-top: 9px;
                font-size: .8rem;
            }

            .stb-v2-info-list {
                gap: 9px;
                margin-top: 20px;
            }

            .stb-v2-contact-item {
                padding: 10px;
            }

            .stb-v2-contact-item > span {
                width: 38px;
                height: 38px;
                flex-basis: 38px;
            }

            .stb-v2-note {
                margin-top: 18px;
            }

            .stb-v2-support-strip {
                grid-template-columns: 1fr;
                gap: 0;
                margin-top: 16px;
                padding: 9px;
                border-radius: 17px;
            }

            .stb-v2-support-item,
            .stb-v2-support-item:nth-child(odd) {
                min-height: 58px;
                padding: 9px 8px;
                border-right: 0;
                border-bottom: 1px solid rgba(78, 125, 36, .14);
            }

            .stb-v2-support-item:nth-child(3) {
                border-bottom: 1px solid rgba(78, 125, 36, .14);
            }

            .stb-v2-request {
                margin: 9px 0 0;
                padding: 11px 12px;
            }

            .stb-contact-v2 .stb-v2-popup {
                padding: 16px;
            }

            .stb-v2-popup-box {
                padding: 31px 20px 25px;
                border-radius: 20px;
            }
        }

        @media (max-width: 380px) {
            .stb-v2-container {
                width: min(100% - 24px, 560px);
            }

            .stb-v2-hero h1 {
                font-size: 2.05rem;
            }

            .stb-v2-form-card,
            .stb-v2-info-card {
                padding-inline: 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .stb-contact-v2 *,
            .stb-contact-v2 *::before,
            .stb-contact-v2 *::after {
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
            }
        }
        /* Restore Send Message glowing animation */
.stb-contact-v2 .stb-v2-form .stb-contact-submit-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    animation: stb-contact-submit-glow 2.8s ease-in-out infinite;
}

.stb-contact-v2 .stb-v2-form .stb-contact-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255, 255, 255, .12) 42%,
        rgba(255, 255, 255, .38) 50%,
        rgba(255, 255, 255, .12) 58%,
        transparent 75%
    );
    transform: translateX(-130%);
    animation: stb-contact-submit-shine 6.5s ease-in-out infinite;
}

.stb-contact-v2 .stb-v2-form .stb-contact-submit-btn > span {
    position: relative;
    z-index: 1;
}

@keyframes stb-contact-submit-glow {
    0%, 100% {
        box-shadow:
            0 12px 24px rgba(23, 63, 19, .22),
            0 0 0 rgba(111, 174, 62, 0);
    }

    50% {
        box-shadow:
            0 15px 30px rgba(23, 63, 19, .30),
            0 0 22px rgba(111, 174, 62, .40),
            0 0 0 7px rgba(111, 174, 62, .10);
    }
}

@keyframes stb-contact-submit-shine {
    0%, 25% {
        transform: translateX(-130%);
    }

    65%, 100% {
        transform: translateX(130%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn,
    .stb-contact-v2 .stb-v2-form .stb-contact-submit-btn::before {
        animation: none;
    }
}
 .stb-au-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    justify-content: center;
    font-weight: 700;
}

.stb-au-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.stb-au-breadcrumb strong {
    color: #ffffff;
}

@media (max-width: 1024px) {
.stb-au-breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 767px) {
 .stb-au-breadcrumb {
        margin-bottom: 25px;
        font-size: 11px;
    }
}