/* ROOT VARIABLES */
:root {
    --red: #F0473E;
    --red-dark: #E23A34;
    --navy: #1B2036;
    --gray-text: #5B6272;
    --card-bg: #EFF3FC;
    --purple-bg: #EDEBFB;
    --purple-icon: #5B4FE0;
    --border: #E4E6F0;
    --white: #FFFFFF;
}
/* GLOBAL BOX SIZING */
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* COMMON CONTACT CONTAINER */
.contact-container {
    width: 100%;
    max-width: 1160px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* POPPINS FONT */
.hero,
.hero *,
.card-row,
.card-row *,
.connect-wrap,
.connect-wrap *,
.connect-wrap *::before,
.connect-wrap *::after {
    font-family: 'Poppins', sans-serif !important;
}
#name,
#phnNo,
#email,
#requirement {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 0px !important;
    border: none !important;
    border-radius: 6px;
    font-size: 14px;
}
/* HERO */
.hero {
    background-image: url("");
    background-size: cover;
    background-position: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 64px 24px 40px;
    text-align: center;
    color: var(--navy);
}
.hero h1 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 22px;
}
.hero h1 .accent {
    color: var(--red);
}
.hero p.lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 600;
}
.tagline {
    margin-top: 36px;
    margin-bottom: 40px;
    font-size: 1.3rem;
    font-weight: 700;
}
.tagline .accent {
    color: var(--red);
}
/* FEATURE CARDS */
.card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}
.feature-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 36px 28px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: scale(1.02);
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.feature-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy);
}
.feature-card p {
    color: var(--gray-text);
    font-size: 0.92rem;
    line-height: 1.6;
}
/* CONTACT SECTION WRAPPER */
.connect-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 50px auto 0;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 50px;
}
/* MAIN CONTACT PANEL */
.connect-panel {
    width: 100%;
    background-image: url("../../assets/images/contact/bg_one.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    padding: 28px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    overflow: hidden;
    position: relative;
    min-height: 650px;
}
/* LEFT SECTION */
.connect-left {
    background-image: url("../../assets/images/contact/bg_two.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 52px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    min-width: 0;
}
/* RIGHT FORM SECTION */
.connect-right {
    background: transparent;
    padding: 30px 42px 28px;
    position: relative;
    z-index: 2;
    min-width: 0;
}
/* CONNECT ICON */
.arrow-badge {
    width: 105px;
    height: 105px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(60, 50, 120, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    overflow: hidden;
}
.arrow-badge img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
/* LEFT HEADING */
.connect-left h2 {
    font-size: 2.05rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}
.connect-left h2 .accent {
    color: var(--red);
}
/* LEFT DESCRIPTION */
.connect-left > p {
    color: var(--gray-text);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 360px;
    margin-bottom: 32px;
}
/* PERKS */
.perk {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.perk:last-child {
    margin-bottom: 0;
}
/* PERK ICON */
.perk-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.perk-icon img {
    width: 75% !important;
    height: 75% !important;
    object-fit: contain;
}
/* PERK TEXT */
.perk h4 {
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.perk p {
    color: var(--gray-text);
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0;
}
/* OFFICE */
.office {
    margin-top: 30px;
}
.office h3 {
    color: var(--red);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 10px;
}
.office address {
    font-style: normal;
    color: var(--navy);
    font-size: 0.88rem;
    line-height: 1.6;
}
/* FORM HEADING */
.connect-right h2 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}
.connect-right > p.sub {
    color: var(--gray-text);
    margin-bottom: 26px;
    font-size: 0.95rem;
    line-height: 1.45;
}
/* FIELD */
.field {
    margin-bottom: 14px;
}
.field label {
    display: block;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.84rem;
    line-height: 1.3;
    margin-bottom: 5px;
}
.field label .req {
    color: var(--red);
}
/* INPUT WRAPPER */
.input-wrap {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 7px 14px;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-wrap:focus-within {
    border-color: var(--purple-icon);
    box-shadow: 0 0 0 2px rgba(91, 79, 224, 0.08);
}
/* INPUT ICON */
.input-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--purple-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.input-icon img {
    width: 70% !important;
    height: 70% !important;
    object-fit: contain;
}
/* INPUT TEXT */
.input-wrap input,
.field textarea {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--navy);
    background: var(--white);
}
.input-wrap input::placeholder,
.field textarea::placeholder {
    color: #9BA0AE;
    opacity: 1;
}
/* PURPOSE ROW */
.purpose-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}
/* PURPOSE BUTTONS */
.pill {
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border) !important;
    background: var(--white);
    border-radius: 20px !important;
    padding: 0 18px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.81rem;
    font-weight: 600;
    line-height: 1;
    color: var(--navy);
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
    letter-spacing: 0 !important;
}
/* PURPOSE BUTTON HOVER */
.pill:hover {
    color: var(--white) !important;
    border-color: var(--border);
    background: var(--white);
}
/* PURPOSE BUTTON ACTIVE */
.pill.active {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
}
/* MESSAGE */
.field textarea {
    width: 100%;
    height: 105px;
    min-height: 105px;
    max-height: 120px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 15px;
    resize: vertical;
    line-height: 1.45;
    display: block;
}
.field textarea:focus {
    border-color: var(--purple-icon);
    outline: none;
    box-shadow: 0 0 0 2px rgba(91, 79, 224, 0.08);
}
/* CHARACTER COUNT */
.char-count {
    text-align: right;
    color: #9BA0AE;
    font-size: 0.70rem;
    line-height: 1;
    margin-top: 3px;
}
/* AGREEMENT */
.agree {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 12px 0 0;
    font-size: 0.76rem;
    line-height: 1.4;
    color: var(--navy);
    width: 100%;
}
.agree input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 2px 0 0;
    accent-color: var(--red);
    cursor: pointer;
}
.agree a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}
input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 0;
    accent-color: var(--red);
    cursor: pointer;
}
/* SUBMIT ROW ALWAYS VERTICAL CAPTCHA  FIRST ROW SUBMIT  NEW ROW */
.submit-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}
/* CAPTCHA WRAPPER */
.captcha-wrap {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    margin-top: 10px !important;
}
.captcha-wrap .error-msg {
    margin-top: 5px !important;
}
/* CAPTCHA */
.captcha {
    width: 100% !important;
    min-width: 0 !important;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 9px 14px;
    background: var(--white);
}
.captcha .rc-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.76rem;
    color: var(--navy);
    line-height: 1.2;
    flex: 1;
}
.captcha .rc-badge {
    text-align: center;
    font-size: 0.55rem;
    line-height: 1.2;
    color: #70757A;
}
.captcha .rc-logo img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
/* SUBMIT BUTTON ALWAYS NEW LINE FULL WIDTH VERTICALLY CENTERED */
.submit-btn {
    display: flex !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 52px;
    flex: none !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    background: var(--red) !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 0 32px;
    border-radius: 9px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
    letter-spacing: 0 !important;
}
/* SUBMIT BUTTON HOVER */
.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active,
.submit-btn:focus-visible {
    background: var(--red-dark) !important;
    color: #FFFFFF !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    outline: none !important;
    text-shadow: none !important;
}
.submit-btn:hover {
    transform: translateY(-1px);
}
/* BACKGROUND BLOB */
.blob {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 230px;
    height: 230px;
    background: rgba(190, 182, 245, 0.25);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
/* ERROR MESSAGE */
.error-msg {
    display: block !important;
    width: 100% !important;
    color: #F0473E !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
}
.field .error-msg {
    clear: both !important;
}
.input-wrap.input-error {
    border: 1px solid #F0473E !important;
}
.input-wrap.input-error:focus-within {
    border-color: #F0473E !important;
}
textarea.input-error {
    border: 1px solid #F0473E !important;
    outline: none !important;
}
.agreement-wrap {
    width: 100% !important;
}
.agreement-wrap .error-msg {
    margin-top: 5px !important;
}
/* POPUP RECAPTCHA */
.popupRecaptcha {
    margin-top: 10px !important;
}
/* CHROME AUTOFILL */
#contactForm input:-webkit-autofill,
#contactForm input:-webkit-autofill:hover,
#contactForm input:-webkit-autofill:focus,
#contactForm input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #1B2036 !important;
    caret-color: #1B2036 !important;
    transition: background-color 5000s ease-in-out 0s;
}
/* FIREFOX AUTOFILL */
#contactForm input:autofill {
    background-color: #ffffff !important;
    color: #1B2036 !important;
}
/* LARGE DESKTOP 1401PX+ */
@media (min-width: 1401px) {
    .connect-wrap {
        max-width: 1340px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .connect-panel {
        grid-template-columns: 45% 55%;
        padding: 30px;
        min-height: 700px;
        border-radius: 30px;
    }
    .connect-left {
        justify-content: center;
        padding: 65px 0px;
        padding-left:30px;
        padding-right:60px;
        border-radius: 26px;
    }
    .arrow-badge {
        width: 120px;
        height: 120px;
        margin-bottom: 32px;
    }
    .connect-left h2 {
        font-size: 2.2rem;
        margin-bottom: 17px;
    }
    .connect-left > p {
        font-size: 1rem;
        line-height: 1.65;
        max-width: 390px;
        margin-bottom: 36px;
    }
    .perk {
        gap: 18px;
        margin-bottom: 23px;
    }
    .perk-icon {
        width: 66px;
        height: 66px;
        min-width: 66px;
    }
    .perk-icon img {
        width: 38px;
        height: 38px;
    }
    .perk h4 {
        font-size: 1.02rem;
    }
    .perk p {
        font-size: 0.84rem;
    }
    .office {
        margin-top: 34px;
    }
    .office h3 {
        font-size: 1.3rem;
    }
    .office address {
        font-size: 0.9rem;
    }
    .connect-right {
        padding: 34px 48px 30px;
    }
    .connect-right h2 {
        font-size: 2.1rem;
    }
    .connect-right > p.sub {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }
    .input-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    .input-icon img {
        width: 70% !important;
        height: 70% !important;
    }
    .input-wrap {
        height: 58px;
        padding: 7px 15px;
    }
    .input-wrap input,
    .field textarea {
        font-size: 0.9rem;
    }
    .field label {
        font-size: 0.86rem;
    }
    /* Submit button remains new line */
    .submit-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .submit-btn {
        width: 100% !important;
        min-width: 100% !important;
        height: 52px;
    }
}
/* DESKTOP 1201PX - 1400PX */
@media (min-width: 1201px) and (max-width: 1400px) {
    .connect-wrap {
        max-width: 1280px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .connect-panel {
        grid-template-columns: 45% 55%;
        padding: 28px;
        gap: 0;
        min-height: 680px;
    }
    .connect-left {
        justify-content: center;
        padding: 55px 0px;
        padding-left:30px;
        padding-right:48;
    }
    .arrow-badge {
        width: 110px;
        height: 110px;
        margin-bottom: 30px;
    }
    .connect-left h2 {
        font-size: 2.1rem;
    }
    .connect-left > p {
        font-size: 0.96rem;
        max-width: 350px;
        margin-bottom: 34px;
    }
    .perk {
        gap: 17px;
        margin-bottom: 21px;
    }
    .perk-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }
    .perk-icon img {
        width: 35px;
        height: 35px;
    }
    .perk h4 {
        font-size: 0.98rem;
    }
    .perk p {
        font-size: 0.81rem;
    }
    .office {
        margin-top: 32px;
    }
    .connect-right {
        padding: 32px 44px 28px;
    }
    .connect-right h2 {
        font-size: 2rem;
    }
    .connect-right > p.sub {
        font-size: 0.95rem;
    }
    .input-wrap {
        height: 56px;
        padding: 7px 14px;
    }
    .input-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    .input-icon img {
        width: 70% !important;
        height: 70% !important;
    }
    /* Submit button remains new line */
    .submit-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .submit-btn {
        width: 100% !important;
        min-width: 100% !important;
        height: 52px;
    }
}
/* TABLET 901PX - 1200PX */
@media (max-width: 1200px) {
    .contact-container {
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .connect-wrap {
        max-width: 1100px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .connect-panel {
        padding: 20px;
        gap: 20px;
        grid-template-columns: 450px minmax(0, 1fr);
        min-height: auto;
    }
    .connect-left {
        padding: 40px 0px;
        padding-left: 32px;
        padding-right: 32px;
        border-radius: 22px;
    }
    .connect-right {
        padding: 30px 32px 25px;
    }
    .input-wrap {
        height: 48px;
        padding: 6px 12px;
    }
    .input-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
    }
    .input-icon img {
        width: 70% !important;
        height: 70% !important;
    }
    .pill {
        height: 34px;
        padding: 0 15px;
        font-size: 0.76rem;
    }
    .field textarea {
        height: 82px;
        min-height: 82px;
        max-height: 100px;
    }
    .submit-btn {
        height: 48px;
        min-width: 100% !important;
        width: 100% !important;
        padding: 0 28px;
        font-size: 0.82rem !important;
        letter-spacing: 0 !important;
    }
    /* Keep vertical layout */
    .submit-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .captcha-wrap {
        width: 100% !important;
        min-width: 0 !important;
    }
}
/* BELOW 900PX */
@media (max-width: 900px) {
    .card-row {
        grid-template-columns: 1fr;
    }
    .connect-panel {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 18px;
        min-height: auto;
    }
    .connect-left {
        background-image: none !important;
        background: transparent !important;
        background-color: transparent !important;
        background-blend-mode: normal !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 35px 28px !important;
        border-radius: 20px;
        width: 100% !important;
    }
    .arrow-badge {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 24px !important;
    }
    .connect-left h2 {
        width: 100% !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .connect-left > p {
        width: 100% !important;
        max-width: 500px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .perk {
        width: 100% !important;
        max-width: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 22px !important;
    }
    .perk-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        flex: 0 0 42px !important;
        border-radius: 50% !important;
        background: var(--white) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }
    .perk-icon img {
        width: 55% !important;
        height: 55% !important;
        max-width: 55% !important;
        max-height: 55% !important;
        object-fit: contain !important;
        display: block !important;
    }
    .perk > div:not(.perk-icon) {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    .perk h4 {
        width: 100% !important;
        text-align: center !important;
        margin: 0 0 3px !important;
        font-size: 0.92rem !important;
        line-height: 1.3 !important;
    }
    .perk p {
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
    }
    .office {
        width: 100% !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .office h3 {
        text-align: center !important;
    }
    .office address {
        text-align: center !important;
    }
    .connect-right {
        padding: 30px 28px;
    }
    .purpose-row {
        flex-wrap: wrap;
    }
    /* Submit always vertical */
    .submit-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }
    .captcha {
        width: 100% !important;
        min-width: 0 !important;
    }
    .captcha-wrap {
        width: 100% !important;
        min-width: 0 !important;
    }
    .submit-btn {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
        height: 48px;
    }
    .agree {
        width: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 7px !important;
        font-size: 0.74rem !important;
        line-height: 1.45 !important;
        white-space: normal !important;
    }
    .agree input[type="checkbox"] {
        flex: 0 0 16px !important;
        width: 16px !important;
        height: 16px !important;
        margin-top: 1px !important;
    }
    .agree span,
    .agree label {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }
    .agree a {
        white-space: normal !important;
        display: inline !important;
    }
    .perk-icon {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        max-width: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        flex: 0 0 70px !important;
        border-radius: 50% !important;
        background: var(--white) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        /* Professional subtle definition */
        box-shadow: 0 4px 14px rgba(60, 50, 120, 0.08) !important;
    }
    /* Icon image */
    .perk-icon img {
        width: 32px !important;
        height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        object-fit: contain !important;
        display: block !important;
        /* Prevent image from visually filling the circle */
        background: transparent !important;
    }
    .perk h4 {
        font-size: 1.08rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        color: var(--navy) !important;
        margin-bottom: 5px !important;
    }
    .perk p {
        color: var(--gray-text) !important;
        font-size: 0.90rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
}
/* MOBILE 576PX AND BELOW */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    .contact-container {
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .connect-wrap {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 30px;
    }
    .connect-panel {
        padding: 12px;
        gap: 12px;
        border-radius: 20px;
        min-height: auto;
    }
    .connect-left {
        background-image: none !important;
        background: transparent !important;
        background-color: transparent !important;
        padding: 28px 22px !important;
        border-radius: 18px;
    }
    .arrow-badge {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
        margin-bottom: 24px !important;
    }
    .connect-left h2 {
        font-size: 1.7rem;
        text-align: center !important;
    }
    .connect-left > p {
        text-align: center !important;
        max-width: 100% !important;
    }
    .perk {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    .perk-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        flex: 0 0 40px !important;
        border-radius: 50% !important;
        margin: 0 auto !important;
    }
    .perk-icon img {
        width: 55% !important;
        height: 55% !important;
        max-width: 55% !important;
        max-height: 55% !important;
    }
    .perk > div:not(.perk-icon) {
        width: 100% !important;
        text-align: center !important;
    }
    .perk h4 {
        text-align: center !important;
        font-size: 0.88rem !important;
        margin-bottom: 3px !important;
    }
    .perk p {
        text-align: center !important;
        font-size: 0.74rem !important;
    }
    .office {
        text-align: center !important;
    }
    .office h3,
    .office address {
        text-align: center !important;
    }
    .connect-right {
        padding: 24px 16px;
    }
    .connect-right h2 {
        font-size: 1.5rem;
    }
    .input-wrap {
        height: 46px;
        padding: 5px 10px;
    }
    .input-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 50%;
    }
    .input-icon img {
        width: 100% !important;
        height: 100% !important;
    }
    .field {
        margin-bottom: 13px;
    }
    .field textarea {
        height: 80px;
        min-height: 80px;
        max-height: 100px;
    }
    .purpose-row {
        gap: 7px;
        flex-wrap: wrap;
    }
    .pill {
        height: 34px;
        padding: 0 12px;
        font-size: 0.72rem;
    }
    .agree {
        width: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        margin: 10px 0 14px !important;
        font-size: 0.70rem !important;
        line-height: 1.45 !important;
        white-space: normal !important;
    }
    .agree input[type="checkbox"] {
        flex: 0 0 15px !important;
        width: 15px !important;
        height: 15px !important;
        margin-top: 1px !important;
    }
    .agree span,
    .agree label {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }
    .agree a {
        white-space: normal !important;
        display: inline !important;
    }
    /* MOBILE SUBMIT SECTION CAPTCHA TOP BUTTON NEW LINE */
    .submit-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
    .captcha-wrap {
        width: 100% !important;
        min-width: 0 !important;
        height: 90px !important;
        margin-top: 10px !important;
        padding-bottom:0px !important;
    }
    .captcha {
        width: 100% !important;
        min-width: 0 !important;
    }
    .submit-btn {
        display: flex !important;
        width: 100% !important;
        min-width: 100% !important;
        height: 48px !important;
        flex: none !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 30px !important;
    }
    #popupRecaptcha {
        transform: scale(0.78);
        transform-origin: left top;
    }
    .submit-row {
        gap: 5px !important;
    }
}
/* SMALL MOBILE 445PX AND BELOW */
@media (max-width: 445px) {
    .connect-right {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .agree {
        gap: 5px !important;
        font-size: 0.66rem !important;
        line-height: 1.5 !important;
        align-items: flex-start !important;
        margin-top: 9px !important;
        margin-bottom: 13px !important;
    }
    .agree input[type="checkbox"] {
        flex: 0 0 14px !important;
        width: 14px !important;
        height: 14px !important;
        margin-top: 1px !important;
    }
    .agree span,
    .agree label {
        font-size: 0.66rem !important;
        line-height: 1.5 !important;
    }
    .agree a {
        font-size: 0.66rem !important;
    }
    /* Keep submit button on separate line */
    .submit-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 5px !important;
    }
    .captcha-wrap {
        width: 100% !important;
        min-width: 0 !important;
    }
    .submit-btn {
        width: 100% !important;
        min-width: 100% !important;
    }
}
/* EXTRA SMALL MOBILE 410PX AND BELOW */
@media (max-width: 410px) {
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .connect-right {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .agree {
        display: block !important;
        position: relative !important;
        padding-left: 18px !important;
        margin: 10px 0 15px !important;
        font-size: 0.62rem !important;
        line-height: 1.5 !important;
        width: 100% !important;
    }
    .agree input[type="checkbox"] {
        position: absolute !important;
        left: 0 !important;
        top: 2px !important;
        width: 13px !important;
        height: 13px !important;
        min-width: 13px !important;
        margin: 0 !important;
    }
    .agree a {
        font-size: 0.62rem !important;
        line-height: 1.5 !important;
        white-space: nowrap !important;
    }
    /* EXTRA SMALL SUBMIT */
    .submit-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 5px !important;
    }
    .captcha-wrap {
        width: 100% !important;
        min-width: 0 !important;
    }
    .submit-btn {
        width: 100% !important;
        min-width: 100% !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
