* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0b5cff;
    --primary-dark: #0647c9;
    --dark: #0b1220;
    --text: #172033;
    --muted: #687386;
    --border: #e4e8ef;
    --white: #ffffff;
    --light: #f6f9fc;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #f4f7fb;
}

.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 90px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(11, 92, 255, .12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 180, 255, .10),
            transparent 30%
        ),
        #f6f9fc;
}

.background-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.orb-one {
    width: 280px;
    height: 280px;
    background: rgba(11, 92, 255, .07);
    top: -100px;
    left: -80px;
    animation: floatOne 8s ease-in-out infinite;
}

.orb-two {
    width: 350px;
    height: 350px;
    background: rgba(0, 196, 255, .06);
    right: -130px;
    bottom: -150px;
    animation: floatTwo 10s ease-in-out infinite;
}

@keyframes floatOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 25px);
    }
}

@keyframes floatTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -25px);
    }
}

.contact-wrapper {
    position: relative;
    z-index: 2;

    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.contact-content {
    animation: fadeUp .8s ease both;
}

.eyebrow {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 100px;

    background: rgba(11, 92, 255, .08);

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 22px;
}

.contact-content h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 800;
    color: var(--dark);
}

.contact-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #0b5cff,
            #00a7ff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro {
    max-width: 570px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.feature-list {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e9f1ff;

    color: var(--primary);

    font-weight: 800;
}

.feature strong {
    color: var(--dark);
    font-size: 15px;
}

.feature p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}

.form-card {
    position: relative;

    padding: 40px;

    background: rgba(255, 255, 255, .92);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(21, 42, 74, .12),
        0 5px 20px rgba(21, 42, 74, .04);

    backdrop-filter: blur(20px);

    animation: fadeUp .8s .15s ease both;
}

.form-header {
    margin-bottom: 28px;
}

.form-header span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    color: var(--primary);
}

.form-header h2 {
    margin-top: 9px;

    color: var(--dark);

    font-size: 29px;
    letter-spacing: -.8px;
}

.form-header p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 14px;
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 19px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full {
    grid-column: 1 / -1;
}

.input-group label {
    margin-bottom: 8px;

    color: #293448;

    font-size: 13px;
    font-weight: 700;
}

.input-group input,
.input-group select,
.input-group textarea,
.captcha-row input {
    width: 100%;

    border: 1px solid var(--border);

    background: #fbfcfe;

    border-radius: 12px;

    padding: 14px 15px;

    font-family: inherit;

    color: var(--text);

    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.input-group textarea {
    resize: vertical;
    min-height: 110px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus,
.captcha-row input:focus {
    border-color: var(--primary);

    background: white;

    box-shadow:
        0 0 0 4px rgba(11, 92, 255, .08);

    transform: translateY(-1px);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #a0a8b6;
}

.captcha-box {
    margin-top: 3px;

    padding: 17px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #f5f8ff,
            #f9fbff
        );

    border: 1px solid #e2eaff;
}

.captcha-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);

    margin-bottom: 10px;
}

.captcha-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 10px;
}

.captcha-question {
    display: flex;
    align-items: center;

    padding: 12px 15px;

    border-radius: 10px;

    background: white;

    border: 1px dashed #cbd6eb;

    font-size: 16px;
    font-weight: 800;

    color: var(--primary);
}

.submit-btn {
    width: 100%;

    margin-top: 24px;

    padding: 16px 25px;

    border: none;

    border-radius: 13px;

    background:
        linear-gradient(
            100deg,
            #0758f7,
            #008fff
        );

    color: white;

    font-family: inherit;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 12px 25px rgba(11, 92, 255, .25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(11, 92, 255, .3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    opacity: .7;
    pointer-events: none;
}

.btn-loader {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: inline;
}

.form-message {
    display: none;

    margin-top: 16px;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 600;
}

.form-message.success {
    display: block;

    color: #087443;

    background: #eafaf2;

    border: 1px solid #b9eed5;
}

.form-message.error {
    display: block;

    color: #b42318;

    background: #fff1f0;

    border: 1px solid #ffc9c5;
}

.privacy-note {
    margin-top: 14px;

    text-align: center;

    color: #9aa3b2;

    font-size: 11px;
}

.hidden-field {
    position: absolute !important;

    left: -9999px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1000px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 750px;
    }

    .contact-content {
        text-align: center;
    }

    .intro {
        margin-left: auto;
        margin-right: auto;
    }

    .feature {
        text-align: left;
    }

}

@media (max-width: 600px) {

    .contact-section {
        padding: 55px 15px;
    }

    .contact-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .form-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .input-group.full {
        grid-column: auto;
    }

    .captcha-row {
        grid-template-columns: 1fr;
    }

    .captcha-question {
        min-height: 45px;
    }

}

/* =========================================================
   LABTURNKEY PREMIUM CONTACT SECTION
   Brand:
   Blue  #3B98C2
   Navy  #10233F
   Orange #FF8F00
   Aqua #E7F7F7
========================================================= */

.lt-contact-section {
    --lt-blue: #3B98C2;
    --lt-blue-dark: #2E82A9;
    --lt-navy: #10233F;
    --lt-orange: #FF8F00;
    --lt-aqua: #E7F7F7;
    --lt-border: #DCE6EC;
    --lt-text: #536273;
    --lt-white: #FFFFFF;

    position: relative;
    overflow: hidden;

    width: 100%;

    padding: 110px 5% 120px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(59, 152, 194, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 143, 0, 0.06),
            transparent 25%
        ),
        #ffffff;
}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.lt-contact-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);

    opacity: .65;
}

.lt-contact-orb-one {
    width: 280px;
    height: 280px;

    left: -130px;
    top: 120px;

    background:
        radial-gradient(
            circle,
            rgba(59, 152, 194, .12),
            rgba(59, 152, 194, 0)
        );

    animation: ltOrbFloatOne 8s ease-in-out infinite;
}

.lt-contact-orb-two {
    width: 350px;
    height: 350px;

    right: -180px;
    bottom: 40px;

    background:
        radial-gradient(
            circle,
            rgba(255, 143, 0, .10),
            rgba(255, 143, 0, 0)
        );

    animation: ltOrbFloatTwo 10s ease-in-out infinite;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.lt-contact-wrapper {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(500px, 1.12fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.lt-contact-content {
    position: relative;

    padding: 20px 0;
}


.lt-contact-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--lt-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.lt-contact-eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--lt-orange),
            var(--lt-blue)
        );

    border-radius: 10px;
}


.lt-contact-title {
    max-width: 650px;

    margin: 0 0 25px;

    color: var(--lt-navy);

    font-size: clamp(44px, 5vw, 70px);

    line-height: 1.03;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.lt-contact-title span {
    position: relative;

    display: inline-block;

    color: var(--lt-blue);
}


.lt-contact-title span::after {
    content: "";

    position: absolute;

    left: 3px;
    bottom: -5px;

    width: 58%;

    height: 4px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--lt-orange),
            transparent
        );

    opacity: .7;
}


.lt-contact-intro {
    max-width: 560px;

    margin: 0 0 42px;

    color: var(--lt-text);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.lt-contact-feature-list {
    display: flex;

    flex-direction: column;

    gap: 23px;
}


.lt-contact-feature {
    display: flex;

    align-items: center;

    gap: 17px;

    transition:
        transform .3s ease;
}


.lt-contact-feature:hover {
    transform: translateX(7px);
}


.lt-contact-feature-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--lt-aqua),
            #ffffff
        );

    border: 1px solid rgba(59, 152, 194, .15);

    color: var(--lt-blue);

    font-size: 19px;

    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(16, 35, 63, .06);

    transition:
        .3s ease;
}


.lt-contact-feature:hover
.lt-contact-feature-icon {
    background: var(--lt-blue);

    color: #fff;

    transform: rotate(-5deg) scale(1.05);

    box-shadow:
        0 10px 30px rgba(59, 152, 194, .25);
}


.lt-contact-feature strong {
    display: block;

    margin-bottom: 5px;

    color: var(--lt-navy);

    font-size: 15px;

    font-weight: 700;
}


.lt-contact-feature p {
    margin: 0;

    color: #7A8794;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   FORM CARD
========================================================= */

.lt-contact-form-card {
    position: relative;

    padding: 42px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(247,250,252,.96)
        );

    border: 1px solid rgba(59, 152, 194, .16);

    box-shadow:
        0 35px 80px rgba(16, 35, 63, .10),
        0 8px 25px rgba(16, 35, 63, .04);

    backdrop-filter: blur(12px);

    overflow: hidden;
}


/* top blue line */

.lt-contact-form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--lt-orange) 0%,
            var(--lt-orange) 18%,
            var(--lt-blue) 45%,
            var(--lt-blue) 100%
        );
}


/* soft decoration */

.lt-contact-form-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(59,152,194,.10),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   FORM HEADER
========================================================= */

.lt-contact-form-header {
    position: relative;

    z-index: 2;

    margin-bottom: 30px;
}


.lt-contact-form-header span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--lt-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.lt-contact-form-header h2 {
    margin: 0 0 8px;

    color: var(--lt-navy);

    font-size: 29px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.7px;
}


.lt-contact-form-header p {
    margin: 0;

    color: #7A8794;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   FORM GRID
========================================================= */

.lt-contact-form-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px 18px;
}


.lt-contact-full {
    grid-column: 1 / -1;
}


/* =========================================================
   INPUT GROUP
========================================================= */

.lt-contact-input-group {
    position: relative;
}


.lt-contact-input-group label {
    display: block;

    margin: 0 0 8px;

    color: var(--lt-navy);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .1px;
}


.lt-contact-input-group input,
.lt-contact-input-group select,
.lt-contact-input-group textarea {

    width: 100%;

    border: 1px solid var(--lt-border);

    outline: none;

    border-radius: 10px;

    background: rgba(255,255,255,.92);

    color: var(--lt-navy);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        background .25s ease;
}


.lt-contact-input-group input,
.lt-contact-input-group select {
    height: 50px;

    padding: 0 15px;
}


.lt-contact-input-group textarea {
    min-height: 92px;

    padding: 14px 15px;

    resize: vertical;

    line-height: 1.6;
}


.lt-contact-input-group input::placeholder,
.lt-contact-input-group textarea::placeholder {
    color: #AAB6C2;
}


.lt-contact-input-group select {
    cursor: pointer;

    appearance: auto;
}


/* focus */

.lt-contact-input-group input:focus,
.lt-contact-input-group select:focus,
.lt-contact-input-group textarea:focus {

    border-color: var(--lt-blue);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(59,152,194,.09),
        0 8px 22px rgba(16,35,63,.04);

    transform: translateY(-1px);
}


/* =========================================================
   CAPTCHA
========================================================= */

.lt-contact-captcha {
    margin-top: 2px;

    padding: 17px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #F4FBFB,
            #FFFFFF
        );

    border: 1px solid rgba(59,152,194,.14);
}


.lt-contact-captcha-title {
    margin-bottom: 10px;

    color: var(--lt-navy);

    font-size: 12px;

    font-weight: 800;
}


.lt-contact-captcha-row {
    display: grid;

    grid-template-columns:
        1fr 130px;

    gap: 12px;

    align-items: center;
}


.lt-contact-captcha-question {
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff;

    border: 1px dashed rgba(59,152,194,.35);

    color: var(--lt-blue);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 2px;
}


.lt-contact-captcha-row input {
    width: 100%;

    height: 48px;

    padding: 0 13px;

    border: 1px solid var(--lt-border);

    border-radius: 9px;

    outline: none;

    color: var(--lt-navy);

    background: #fff;

    transition: .25s ease;
}


.lt-contact-captcha-row input:focus {
    border-color: var(--lt-blue);

    box-shadow:
        0 0 0 4px rgba(59,152,194,.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.lt-contact-submit {
    position: relative;

    z-index: 3;

    width: 100%;

    min-height: 60px;

    margin-top: 25px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    border-radius: 11px;

    background:
        linear-gradient(
            100deg,
            var(--lt-blue-dark),
            var(--lt-blue)
        );

    color: #fff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 12px 28px rgba(59,152,194,.25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.lt-contact-submit::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.22),
            transparent
        );

    transform: skewX(-20deg);

    transition: left .7s ease;
}


.lt-contact-submit:hover::before {
    left: 140%;
}


.lt-contact-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(59,152,194,.32);
}


.lt-contact-submit:active {
    transform: translateY(0);
}


.lt-contact-submit:disabled {
    opacity: .7;

    cursor: not-allowed;

    transform: none;
}


.lt-contact-btn-text,
.lt-contact-btn-loader,
.lt-contact-btn-arrow {
    position: relative;

    z-index: 2;
}


.lt-contact-btn-arrow {
    font-size: 22px;

    transition:
        transform .3s ease;
}


.lt-contact-submit:hover
.lt-contact-btn-arrow {
    transform: translateX(5px);
}


/* loader hidden by default */

.lt-contact-btn-loader {
    display: none;
}


/* =========================================================
   FORM MESSAGE
========================================================= */

.lt-contact-form-message {
    display: none;

    margin-top: 15px;

    padding: 12px 14px;

    border-radius: 9px;

    font-size: 13px;

    line-height: 1.5;
}


.lt-contact-form-message.success {
    display: block;

    background: #EAF8F0;

    color: #167443;

    border: 1px solid #BDE7CF;
}


.lt-contact-form-message.error {
    display: block;

    background: #FFF2F2;

    color: #B42318;

    border: 1px solid #F3C4C0;
}


/* =========================================================
   PRIVACY
========================================================= */

.lt-contact-privacy {
    position: relative;

    z-index: 2;

    margin: 17px 0 0;

    text-align: center;

    color: #9AA6B2;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   HONEYPOT
========================================================= */

.lt-hidden-field {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;

    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes ltOrbFloatOne {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(25px, -20px, 0)
            scale(1.08);
    }
}


@keyframes ltOrbFloatTwo {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(-25px, 20px, 0)
            scale(1.08);
    }
}


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

@media (max-width: 1100px) {

    .lt-contact-section {
        padding: 85px 4%;
    }

    .lt-contact-wrapper {

        grid-template-columns:
            1fr;

        max-width: 850px;

        gap: 55px;
    }

    .lt-contact-content {
        text-align: center;
    }

    .lt-contact-title {
        margin-left: auto;
        margin-right: auto;
    }

    .lt-contact-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .lt-contact-feature-list {
        max-width: 600px;

        margin: 0 auto;

        text-align: left;
    }

}


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

@media (max-width: 650px) {

    .lt-contact-section {
        padding: 65px 18px 75px;
    }


    .lt-contact-title {
        font-size: 42px;

        line-height: 1.06;

        letter-spacing: -1.8px;
    }


    .lt-contact-intro {
        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 32px;
    }


    .lt-contact-form-card {
        padding: 28px 20px;

        border-radius: 21px;
    }


    .lt-contact-form-header h2 {
        font-size: 24px;
    }


    .lt-contact-form-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .lt-contact-full {
        grid-column: auto;
    }


    .lt-contact-captcha-row {
        grid-template-columns: 1fr;
    }


    .lt-contact-feature-list {
        gap: 18px;
    }


    .lt-contact-feature-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }


    .lt-contact-submit {
        min-height: 56px;
    }

}


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

@media (max-width: 400px) {

    .lt-contact-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .lt-contact-title {
        font-size: 36px;
    }


    .lt-contact-form-card {
        padding: 24px 16px;
    }


    .lt-contact-form-header h2 {
        font-size: 22px;
    }

}