/* =========================================================
   VVC INFOTECH - CONTACT PAGE
   ========================================================= */

.contact-page {
    --contact-blue: #075bbb;
    --contact-dark: #0b1729;
    --contact-text: #536174;
}


/* =========================================================
   HERO
========================================================= */

.contact-page .contact-hero {
    padding: 85px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(25,130,240,.2),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07182d,
            #0b3767
        );
}

.contact-page .contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.contact-page .contact-hero h1 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.contact-page .contact-hero h1 span {
    color: #48a3ff;
}

.contact-page .contact-hero p {
    max-width: 680px;
    margin: auto;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-page .contact-section {
    padding: 95px 0;
    background: #fff;
}

.contact-page .contact-section-label {
    color: var(--contact-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-page .contact-section h2 {
    color: #111827;
    font-size: 42px;
    font-weight: 800;
    margin: 12px 0 18px;
}

.contact-page .contact-section h2 span {
    color: var(--contact-blue);
}

.contact-page .contact-intro {
    max-width: 470px;
    color: var(--contact-text);
    line-height: 1.8;
    font-size: 15px;
}


/* CONTACT INFO */

.contact-page .contact-info-card {
    display: flex;
    gap: 17px;
    margin-top: 30px;
}

.contact-page .contact-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eaf3ff;
    color: var(--contact-blue);
    font-size: 20px;
}

.contact-page .contact-info-card span {
    color: #075bbb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-page .contact-info-card h4 {
    color: #172033;
    font-size: 16px;
    font-weight: 700;
    margin: 5px 0;
}

.contact-page .contact-info-card h4 a {
    color: #172033;
}

.contact-page .contact-info-card p {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
}


/* SOCIAL */

.contact-page .contact-social {
    margin-top: 35px;
}

.contact-page .contact-social > span {
    color: #075bbb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-page .contact-social > div {
    display: flex;
    gap: 9px;
    margin-top: 12px;
}

.contact-page .contact-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e7ef;
    border-radius: 8px;
    color: #536174;
    transition: .3s;
}

.contact-page .contact-social a:hover {
    background: #075bbb;
    border-color: #075bbb;
    color: #fff;
}


/* =========================================================
   FORM
========================================================= */

.contact-page .contact-form-card {
    padding: 40px;
    border: 1px solid #e4eaf1;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15,40,75,.08);
}

.contact-page .form-heading span {
    color: #075bbb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.contact-page .form-heading h3 {
    color: #111827;
    font-size: 27px;
    font-weight: 800;
    margin: 8px 0;
}

.contact-page .form-heading p {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-page label {
    display: block;
    color: #283548;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.contact-page label span {
    color: #e53935;
}

.contact-page .input-wrapper {
    position: relative;
}

.contact-page .input-wrapper > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a8798;
    z-index: 2;
}

.contact-page .input-wrapper .form-control {
    padding-left: 42px;
}

.contact-page .form-control {
    min-height: 48px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: none;
}

.contact-page textarea.form-control {
    padding: 14px;
    min-height: 135px;
    resize: vertical;
}

.contact-page .form-control:focus {
    border-color: #0b70d9;
    box-shadow: 0 0 0 3px rgba(7,91,187,.08);
}

.contact-page select.form-control {
    appearance: auto;
}


/* SUBMIT */

.contact-page .contact-submit {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 14px 20px;
    background: #075bbb;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.contact-page .contact-submit:hover {
    background: #064b99;
    transform: translateY(-1px);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-page .location-section {
    padding: 0 0 95px;
    background: #fff;
}

.contact-page .location-box {
    min-height: 300px;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(
            rgba(7,91,187,.88),
            rgba(6,59,120,.92)
        ),
        url("https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?auto=format&fit=crop&w=1600&q=80")
        center / cover;
}

.contact-page .location-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 30px;
}

.contact-page .location-placeholder > i {
    font-size: 45px;
    color: #55adff;
}

.contact-page .location-placeholder h3 {
    margin: 12px 0 5px;
    font-size: 24px;
    font-weight: 800;
}

.contact-page .location-placeholder p {
    color: rgba(255,255,255,.7);
}

.contact-page .location-button {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 11px 18px;
    border-radius: 7px;
    background: #fff;
    color: #075bbb;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CTA
========================================================= */

.contact-page .contact-cta {
    padding: 0 0 95px;
}

.contact-page .contact-cta-box {
    padding: 60px 30px;
    border-radius: 20px;
    background: #f5f8fc;
    border: 1px solid #e3e9f0;
}

.contact-page .contact-cta-box > span {
    color: #075bbb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-page .contact-cta-box h2 {
    color: #111827;
    font-size: 35px;
    font-weight: 800;
    margin: 10px 0;
}

.contact-page .contact-cta-box p {
    color: #6b7280;
}

.contact-page .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.contact-page .cta-call,
.contact-page .cta-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.contact-page .cta-call {
    background: #075bbb;
    color: #fff;
}

.contact-page .cta-whatsapp {
    background: #20bd62;
    color: #fff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-page .contact-hero {
        padding: 70px 0;
    }

    .contact-page .contact-section {
        padding: 70px 0;
    }

    .contact-page .contact-section h2 {
        font-size: 32px;
    }

    .contact-page .contact-form-card {
        padding: 25px;
    }

    .contact-page .cta-buttons {
        flex-direction: column;
    }

    .contact-page .cta-call,
    .contact-page .cta-whatsapp {
        justify-content: center;
    }

}