/* =========================================================
   LBS SOFTWARE
   CONTACT PAGE
   ========================================================= */

:root {
    --contact-navy: #071b33;
    --contact-navy-2: #0b2747;
    --contact-blue: #087cff;
    --contact-blue-dark: #0059d6;
    --contact-blue-light: #eaf4ff;
    --contact-text: #16263b;
    --contact-muted: #64748b;
    --contact-border: #e2e9f1;
    --contact-light: #f7faff;
    --contact-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-contact-page {
    width: 100%;

    overflow: hidden;

    color: var(--contact-text);

    background: #ffffff;
}


.lbs-contact-page .container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


.lbs-contact-page .section {
    padding: 90px 0;
}


.lbs-contact-page .section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--contact-blue);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .15em;

    text-transform: uppercase;
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    position: relative;

    min-height: 580px;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(8,124,255,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 55%,
            #edf6ff 100%
        );

    border-bottom: 1px solid var(--contact-border);
}


.contact-hero::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 48%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(8,124,255,.035)
        );

    pointer-events: none;
}


.contact-hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    align-items: center;

    gap: 70px;
}


.contact-hero-content {
    max-width: 650px;
}


.contact-hero-content h1 {
    margin: 0 0 24px;

    color: var(--contact-navy);

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 850;

    line-height: 1.03;

    letter-spacing: -.045em;
}


.contact-hero-content h1 span {
    display: block;

    color: var(--contact-blue);
}


.contact-hero-content > p {
    max-width: 600px;

    margin: 0 0 28px;

    color: var(--contact-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HERO POINTS
   ========================================================= */

.contact-hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}


.contact-hero-points > div {
    display: flex;

    align-items: center;

    gap: 8px;
}


.contact-hero-points strong {
    color: var(--contact-blue);

    font-size: 13px;
}


.contact-hero-points span {
    color: var(--contact-navy);

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   CONTACT INFO PANEL
   ========================================================= */

.contact-info-panel {
    padding: 34px;

    border: 1px solid rgba(8,124,255,.16);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1f7ff
        );

    box-shadow:
        0 22px 55px rgba(11,39,71,.12);
}


.contact-info-header {
    margin-bottom: 25px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--contact-border);
}


.contact-info-header span {
    color: var(--contact-blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .15em;
}


.contact-info-header h2 {
    margin: 8px 0 0;

    color: var(--contact-navy);

    font-size: 28px;

    line-height: 1.15;
}


/* =========================================================
   CONTACT INFO ITEMS
   ========================================================= */

.contact-info-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 16px 0;

    border-bottom: 1px solid #e8eef5;
}


.contact-info-item:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}


.contact-info-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: var(--contact-blue-light);

    color: var(--contact-blue);

    font-size: 15px;

    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease;
}


.contact-info-icon i {
    font-size: 17px;
    line-height: 1;
    display: inline-block;
}

.contact-info-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(11, 39, 71, 0.12);
}

.contact-info-icon.phone-icon {
    background: linear-gradient(135deg, #eaf5ff, #dfeeff);
    color: #0d7df2;
}

.contact-info-icon.whatsapp-icon {
    background: linear-gradient(135deg, #eafaf3, #dff8ea);
    color: #1db954;
}

.contact-info-icon.email-icon {
    background: linear-gradient(135deg, #fff2ea, #ffe8d9);
    color: #ff7a1a;
}

.contact-info-icon.location-icon {
    background: linear-gradient(135deg, #ebfff4, #dff9ea);
    color: #16a34a;
}

.contact-info-icon.website-icon {
    background: linear-gradient(135deg, #f5f0ff, #ede4ff);
    color: #7c3aed;
}


.contact-info-item small {
    display: block;

    margin-bottom: 4px;

    color: #8493a5;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;
}


.contact-info-item a,
.contact-info-item strong {
    display: block;

    color: var(--contact-navy);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    line-height: 1.45;
}


.contact-info-item a:hover {
    color: var(--contact-blue);
}


/* =========================================================
   CONTACT MAIN
   ========================================================= */

.contact-main {
    background: #ffffff;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap: 60px;

    align-items: start;
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.contact-section-heading {
    margin-bottom: 30px;
}


.contact-section-heading h2 {
    margin: 0 0 12px;

    color: var(--contact-navy);

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.15;

    letter-spacing: -.03em;
}


.contact-section-heading p {
    max-width: 600px;

    margin: 0;

    color: var(--contact-muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FORM
   ========================================================= */

.lbs-contact-form {
    padding: 34px;

    border: 1px solid var(--contact-border);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(11,39,71,.065);
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--contact-navy);

    font-size: 11px;

    font-weight: 750;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d8e2ec;

    border-radius: 8px;

    background: #fbfdff;

    color: var(--contact-text);

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.form-group input,
.form-group select {
    height: 46px;

    padding: 0 13px;
}


.form-group textarea {
    min-height: 140px;

    padding: 13px;

    resize: vertical;

    line-height: 1.6;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa9ba;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--contact-blue);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(8,124,255,.10);
}


/* =========================================================
   FORM ERROR
   ========================================================= */

.form-error {
    display: block;

    min-height: 14px;

    margin-top: 4px;

    color: #dc2626;

    font-size: 10px;

    line-height: 1.3;
}


.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc2626;
}


.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
    border-color: #16a34a;
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.form-honeypot {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.form-submit-row {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 5px;
}


.contact-submit {
    min-height: 48px !important;

    padding: 12px 24px !important;

    border: 0;

    border-radius: 8px;

    cursor: pointer;

    font-family: inherit;
}


.form-status {
    color: var(--contact-muted);

    font-size: 11px;

    line-height: 1.4;
}


.form-status.success {
    color: #15803d;
}


.form-status.error {
    color: #dc2626;
}


/* =========================================================
   SERVICES SIDEBAR
   ========================================================= */

.contact-services {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.contact-services-box {
    padding: 30px;

    border: 1px solid var(--contact-border);

    border-radius: 18px;

    background: var(--contact-light);
}


.contact-services-box h2 {
    margin: 0 0 22px;

    color: var(--contact-navy);

    font-size: 27px;

    line-height: 1.2;
}


/* =========================================================
   SERVICE LINKS
   ========================================================= */

.contact-service-link {
    display: grid;

    grid-template-columns:
        43px
        1fr
        20px;

    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #e3ebf3;

    color: inherit;

    text-decoration: none;
}


.contact-service-link:last-child {
    border-bottom: 0;
}


.service-link-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background: #ffffff;

    color: var(--contact-blue);

    font-size: 12px;

    font-weight: 850;

    border: 1px solid #dce8f3;
}


.contact-service-link strong {
    display: block;

    margin-bottom: 3px;

    color: var(--contact-navy);

    font-size: 12px;
}


.contact-service-link small {
    display: block;

    color: var(--contact-muted);

    font-size: 10px;
}


.contact-service-link > b {
    color: var(--contact-blue);

    font-size: 15px;

    transition:
        transform .2s ease;
}


.contact-service-link:hover > b {
    transform: translateX(4px);
}


.contact-service-link:hover strong {
    color: var(--contact-blue);
}


/* =========================================================
   PARTNER CARD
   ========================================================= */

.contact-partner-card {
    padding: 27px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            var(--contact-navy),
            #0d3765
        );

    box-shadow:
        0 14px 35px rgba(7,27,51,.16);
}


.contact-partner-card > span {
    color: #58adff;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .14em;
}


.contact-partner-card h3 {
    margin: 9px 0 10px;

    color: #ffffff;

    font-size: 22px;

    line-height: 1.2;
}


.contact-partner-card p {
    margin: 0 0 18px;

    color: #c5d6e8;

    font-size: 12px;

    line-height: 1.65;
}


.contact-partner-card a {
    color: #ffffff;

    font-size: 12px;

    font-weight: 750;

    text-decoration: none;
}


.contact-partner-card a:hover {
    color: #58adff;
}


/* =========================================================
   AI PRODUCTS
   ========================================================= */

.contact-products {
    background: var(--contact-light);

    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}


.contact-products .section-heading {
    margin-bottom: 45px;
}


.contact-product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.contact-product-card {
    position: relative;

    min-height: 245px;

    padding: 27px;

    display: flex;

    flex-direction: column;

    border: 1px solid var(--contact-border);

    border-radius: 15px;

    background: #ffffff;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(11,39,71,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.contact-product-card:hover {
    transform: translateY(-6px);

    border-color: #bddbfa;

    box-shadow:
        0 18px 38px rgba(11,39,71,.10);
}


.product-label {
    margin-bottom: 18px;

    color: var(--contact-blue);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .14em;
}


.contact-product-card h3 {
    margin: 0 0 11px;

    color: var(--contact-navy);

    font-size: 18px;

    line-height: 1.25;
}


.contact-product-card p {
    margin: 0 0 20px;

    color: var(--contact-muted);

    font-size: 12px;

    line-height: 1.7;
}


.contact-product-card strong {
    margin-top: auto;

    color: var(--contact-blue);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.contact-final-cta {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(8,124,255,.12),
            transparent 35%
        ),
        #ffffff;

    text-align: center;
}


.contact-final-inner {
    max-width: 780px;

    margin: auto;
}


.contact-final-inner > span {
    color: var(--contact-blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .15em;
}


.contact-final-inner h2 {
    margin: 13px 0 15px;

    color: var(--contact-navy);

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.08;

    letter-spacing: -.04em;
}


.contact-final-inner h2 strong {
    color: var(--contact-blue);
}


.contact-final-inner p {
    max-width: 600px;

    margin: 0 auto 28px;

    color: var(--contact-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .contact-hero-inner {
        gap: 40px;
    }


    .contact-grid {
        gap: 35px;
    }


    .contact-product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-contact-page .container {
        width: min(100% - 30px, 620px);
    }


    .lbs-contact-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .contact-hero {
        min-height: auto;

        padding: 65px 0;
    }


    .contact-hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .contact-hero-content {
        text-align: center;

        margin: auto;
    }


    .contact-hero-content h1 {
        font-size: clamp(40px, 11vw, 55px);
    }


    .contact-hero-content > p {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    .contact-hero-points {
        justify-content: center;

        gap: 12px 18px;
    }


    .contact-info-panel {
        max-width: 550px;

        width: 100%;

        box-sizing: border-box;

        margin: auto;
    }


    /* Main */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-section-heading {
        text-align: center;
    }


    .contact-section-heading p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Form */

    .lbs-contact-form {
        padding: 25px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Services */

    .contact-services {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }


    /* Products */

    .contact-product-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* Final */

    .contact-final-cta {
        padding: 75px 0;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-contact-page .container {
        width: calc(100% - 28px);
    }


    .lbs-contact-page .section {
        padding: 55px 0;
    }


    .contact-hero {
        padding: 50px 0;
    }


    .contact-hero-content h1 {
        font-size: 39px;
    }


    .contact-hero-points {
        flex-direction: column;

        align-items: flex-start;

        width: max-content;

        max-width: 100%;

        margin: auto;
    }


    .contact-info-panel {
        padding: 23px;
    }


    .contact-info-header h2 {
        font-size: 24px;
    }


    .lbs-contact-form {
        padding: 20px;
    }


    .contact-services-box {
        padding: 22px;
    }


    .contact-services-box h2 {
        font-size: 24px;
    }


    .contact-product-grid {
        grid-template-columns: 1fr;
    }


    .contact-product-card {
        min-height: 210px;
    }


    .form-submit-row {
        flex-direction: column;

        align-items: stretch;
    }


    .contact-submit {
        width: 100%;
    }


    .form-status {
        text-align: center;
    }


    .contact-final-inner h2 {
        font-size: 34px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-contact-page a:focus-visible,
.lbs-contact-page button:focus-visible,
.lbs-contact-page input:focus-visible,
.lbs-contact-page select:focus-visible,
.lbs-contact-page textarea:focus-visible {
    outline: 3px solid rgba(8,124,255,.22);

    outline-offset: 2px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-product-card,
    .contact-service-link,
    .contact-partner-card,
    .contact-submit {
        transition: none !important;
    }

}