/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-consultation,
.contact-locations,
.contact-final-cta {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.contact-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #0d6efd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-section-label span {

    width: 35px;

    height: 3px;

    border-radius: 20px;

    background: currentColor;

}


.contact-title {

    max-width: 650px;

    margin: 15px 0 20px;

    color: #151a22;

    font-size: clamp(38px, 4.2vw, 56px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;

}


.contact-title span {

    color: #0d6efd;

}


.contact-description {

    max-width: 600px;

    color: #6c7784;

    font-size: 18px;

    line-height: 1.75;

}


/* =========================================================
   CONSULTATION
========================================================= */

.contact-consultation {

    background: #fff;

}


.contact-content {

    padding-right: 20px;

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.contact-highlights {

    margin-top: 35px;

}


.contact-highlight-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 24px;

}


.contact-highlight-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    background: #edf4ff;

    color: #0d6efd;

    font-size: 20px;

    transition: all .35s ease;

}


.contact-highlight-item:hover
.contact-highlight-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    transform: translateY(-5px) rotate(-5deg);

    box-shadow:
        0 12px 25px rgba(13,110,253,.18);

}


.contact-highlight-item h4 {

    margin: 0 0 5px;

    color: #202833;

    font-size: 19px;

    font-weight: 700;

}


.contact-highlight-item p {

    max-width: 430px;

    margin: 0;

    color: #78838f;

    font-size: 15px;

    line-height: 1.55;

}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {

    position: relative;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e1e7ee;

    border-radius: 24px;

    box-shadow:
        0 25px 65px rgba(20,45,80,.10);

}


.contact-form-header {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    color: #fff;

}


.contact-form-header-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    background: rgba(255,255,255,.14);

    border: 1px solid rgba(255,255,255,.18);

    font-size: 20px;

}


.contact-form-header span {

    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.65);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-form-header h3 {

    margin: 0;

    font-size: 23px;

    font-weight: 700;

}


/* =========================================================
   FORM
========================================================= */

#businessEnquiryForm {

    padding: 30px;

}


.contact-form-group {

    margin-bottom: 2px;

}


.contact-form-group label {

    display: block;

    margin-bottom: 7px;

    color: #394451;

    font-size: 14px;

    font-weight: 700;

}


.contact-form-group label span {

    color: #dc3545;

}


.contact-input-wrap {

    position: relative;

}


.contact-input-wrap > i {

    position: absolute;

    top: 50%;

    left: 15px;

    transform: translateY(-50%);

    z-index: 2;

    color: #8a96a3;

    font-size: 14px;

    pointer-events: none;

    transition: color .25s ease;

}


.contact-input-wrap .form-control {

    min-height: 48px;

    padding-left: 43px;

    border: 1px solid #dce3eb;

    border-radius: 9px;

    color: #34404d;

    font-size: 15px;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;

}


.contact-input-wrap .form-control::placeholder {

    color: #a0a9b4;

}


.contact-input-wrap .form-control:focus {

    border-color: #0d6efd;

    box-shadow:
        0 0 0 4px rgba(13,110,253,.07);

}


.contact-input-wrap:focus-within > i {

    color: #0d6efd;

}


/* =========================================================
   TEXTAREA
========================================================= */

.contact-textarea-wrap > i {

    top: 18px;

    transform: none;

}


.contact-textarea-wrap textarea {

    min-height: 125px;

    resize: vertical;

    padding-top: 13px !important;

}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit-area {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;

    padding-top: 20px;

    border-top: 1px solid #edf0f4;

}


.contact-submit-area p {

    margin: 0;

    color: #87919d;

    font-size: 12px;

}


.contact-submit-area p i {

    margin-right: 5px;

    color: #0d6efd;

}


.contact-submit-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 190px;

    min-height: 48px;

    padding: 10px 20px;

    border: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    transition: all .3s ease;

}


.contact-submit-btn:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(13,110,253,.22);

}


.contact-submit-btn i {

    transition: transform .3s ease;

}


.contact-submit-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   LOCATIONS
========================================================= */

.contact-locations {

    background: #f7f9fc;

}


.contact-location-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}


.contact-location-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 115px;

    padding: 22px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e2e8ef;

    border-radius: 18px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.contact-location-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 0;

    background:
        linear-gradient(
            180deg,
            #0d6efd,
            #5145d9
        );

    transition: height .35s ease;

}


.contact-location-card:hover {

    transform: translateY(-6px);

    border-color: rgba(13,110,253,.2);

    box-shadow:
        0 18px 40px rgba(30,50,80,.08);

}


.contact-location-card:hover::before {

    height: 100%;

}


.contact-location-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    background: #edf4ff;

    color: #0d6efd;

    font-size: 21px;

    transition: all .3s ease;

}


.contact-location-card:hover
.contact-location-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #5145d9
        );

    transform: scale(1.08);

}


.contact-location-card span {

    display: block;

    margin-bottom: 4px;

    color: #8a95a1;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.contact-location-card h3 {

    margin: 0;

    color: #202832;

    font-size: 21px;

    font-weight: 700;

}


.contact-location-arrow {

    position: absolute;

    right: 20px;

    color: #c4ccd5;

    font-size: 13px;

    transition: all .3s ease;

}


.contact-location-card:hover
.contact-location-arrow {

    color: #0d6efd;

    transform: translateX(4px);

}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {

    background: #fff;

}


.contact-cta-box {

    position: relative;

    overflow: hidden;

    padding: 75px 30px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #eef5ff,
            #f8f4ff
        );

    border: 1px solid #dfe8f5;

}


.contact-cta-content {

    position: relative;

    z-index: 3;

}


.contact-cta-content h2 {

    max-width: 850px;

    margin: 18px auto;

    color: #171d26;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.08;

    font-weight: 700;

}


.contact-cta-content h2 span {

    color: #0d6efd;

}


.contact-cta-content p {

    max-width: 720px;

    margin: 0 auto;

    color: #707b88;

    font-size: 18px;

    line-height: 1.7;

}


.contact-cta-btn {

    margin-top: 28px;

    padding: 14px 25px;

    border-radius: 9px;

    font-size: 16px;

    font-weight: 700;

    transition: all .3s ease;

}


.contact-cta-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(13,110,253,.18);

}


/* =========================================================
   CTA ORBITS
========================================================= */

.contact-cta-orbit {

    position: absolute;

    border: 1px solid rgba(13,110,253,.12);

    border-radius: 50%;

    animation: contactOrbit 18s linear infinite;

}


.orbit-one {

    width: 400px;

    height: 400px;

    top: -260px;

    left: -100px;

}


.orbit-two {

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -350px;

    animation-direction: reverse;

    animation-duration: 25s;

}


@keyframes contactOrbit {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-content {

        padding-right: 0;

    }


    .contact-location-grid {

        margin-top: 10px;

    }

}


@media (max-width: 767.98px) {

    .contact-title {

        font-size: 40px;

    }


    .contact-description {

        font-size: 17px;

    }


    #businessEnquiryForm {

        padding: 22px;

    }


    .contact-form-header {

        padding: 20px;

    }


    .contact-form-header h3 {

        font-size: 20px;

    }


    .contact-submit-area {

        align-items: stretch;

        flex-direction: column;

    }


    .contact-submit-btn {

        width: 100%;

    }


    .contact-location-grid {

        grid-template-columns: 1fr;

    }


    .contact-cta-box {

        padding: 55px 20px;

    }

}


@media (max-width: 575.98px) {

    .contact-title {

        font-size: 35px;

    }


    .contact-form-header-icon {

        width: 45px;

        height: 45px;

    }


    .contact-highlight-item {

        gap: 12px;

    }


    .contact-highlight-icon {

        width: 47px;

        height: 47px;

    }


    .contact-location-card {

        min-height: 100px;

        padding: 18px;

    }


    .contact-location-icon {

        width: 48px;

        height: 48px;

    }


    .contact-cta-content h2 {

        font-size: 35px;

    }

}

.silaris-hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}