/* =========================================================
   WHITE PAINTING
   CONTACT PAGE CSS

   Header is kept the SAME as Services.
========================================================= */

:root {
    --wp-purple: #7B2CBF;
    --wp-blue: #008CFF;
    --wp-cyan: #00A9D6;
    --wp-green: #00C853;
    --wp-yellow: #F9C80E;
    --wp-orange: #F97316;
    --wp-red: #F04444;
    --wp-dark: #17121F;
    --wp-light: #F7F6FA;
    --wp-text: #34303A;
}

/* =========================================================
   TOPBAR — SAME AS SERVICES
========================================================= */

.wp-topbar {
    background: linear-gradient(
        90deg,
        #5B2EFF 0%,
        #008CFF 20%,
        #00C853 40%,
        #F9C80E 60%,
        #FF8A00 80%,
        #F04444 100%
    );
    min-height: 50px;
}

.wp-topbar a {
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.wp-top-contact {
    display: flex;
    align-items: center;
}

.wp-top-contact a {
    padding: 13px 18px 13px 0;
    margin-right: 18px;
    border-right: 1px solid rgba(255,255,255,.35);
}

.wp-top-contact i {
    margin-right: 7px;
}

.wp-socials {
    display: flex;
    justify-content: flex-end;
}

.wp-socials a {
    width: 45px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,.30);
    transition: .3s;
}

.wp-socials a:hover {
    background: rgba(0,0,0,.15);
}

/* =========================================================
   NAVBAR — SAME AS SERVICES
========================================================= */

.wp-navbar {
    background: var(--wp-dark) !important;
    min-height: 100px;
    padding: 0 !important;

    /* Sticky as requested */
    position: sticky;
    top: 0;
    z-index: 9999;
}

.wp-brand {
    display: flex !important;
    align-items: center;
    /* gap: 12px; */
    text-decoration: none;
}

.wp-logo-mark {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--wp-purple),
        var(--wp-orange)
    );
    font-size: 25px;
}

.wp-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 600 !important;
    letter-spacing: .5px;
    margin-left: 15px;
}

.wp-logo-text span {
    color: var(--wp-yellow);
}

.wp-navbar .nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    padding: 38px 10px !important;
    position: relative;
    transition: .3s;
}

.wp-navbar .nav-link:hover {
    color: var(--wp-yellow) !important;
}

.wp-navbar .nav-link.active {
    color: var(--wp-yellow) !important;
    box-shadow: inset 0 -5px 0 var(--wp-yellow);
}

.wp-navbar .nav-link.active::before,
.wp-navbar .nav-link.active::after,
.navbar .nav-link.active::before,
.navbar .nav-link.active::after {
    content: none !important;
    display: none !important;
}

.wp-call-now {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    padding-left: 25px;
    border-left: 1px solid rgba(255,255,255,.25);
}

.wp-call-now > i {
    color: var(--wp-yellow);
    font-size: 30px;
}

.wp-call-now small {
    display: block;
    color: #fff;
    font-size: 12px;
}

.wp-call-now strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

/* =========================================================
   CONTACT HERO
========================================================= */

.wp-contact-hero {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            rgba(123,44,191,.95),
            rgba(23,18,31,.94)
        ),
        url("../img/bg-hero.jpg") center/cover no-repeat;
}

.wp-hero-small {
    color: var(--wp-yellow);
    font-weight: 700;
    letter-spacing: 3px;
}

.wp-contact-hero h1 {
    color: #fff;
    font-size: clamp(50px, 7vw, 82px);
    font-weight: 800;
    margin: 12px 0;
}

.wp-contact-hero p {
    color: rgba(255,255,255,.90);
    font-size: 20px;
    max-width: 650px;
}

.wp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: #fff;
}

.wp-breadcrumb a {
    color: var(--wp-yellow);
    text-decoration: none;
}

.wp-breadcrumb strong {
    color: #fff;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.wp-contact-section {
    padding: 80px 0;
    background: #fff;
}

.wp-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.wp-section-heading > span {
    color: var(--wp-purple);
    font-weight: 700;
    letter-spacing: 2px;
}

.wp-section-heading h2 {
    color: var(--wp-dark);
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0;
}

.wp-section-heading p {
    color: #666;
    margin-bottom: 15px;
}

.wp-color-line {
    width: 70px;
    height: 5px;
    margin: 15px auto 0;
    background: var(--wp-yellow);
}

/* Contact information */

.wp-contact-card {
    height: 100%;
    background: var(--wp-light);
    padding: 35px;
    border-top: 5px solid var(--wp-purple);
}

.wp-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.wp-contact-item:last-child {
    margin-bottom: 0;
}

.wp-contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
}

.wp-contact-icon.purple { background: var(--wp-purple); }
.wp-contact-icon.yellow { background: var(--wp-yellow); color: var(--wp-dark); }
.wp-contact-icon.blue { background: var(--wp-blue); }
.wp-contact-icon.orange { background: var(--wp-orange); }

.wp-contact-item h5 {
    color: var(--wp-dark);
    font-weight: 700;
    margin: 0 0 5px;
}

.wp-contact-item p {
    color: #666;
    margin: 0;
}

/* Form */

.wp-contact-form {
    background: var(--wp-dark);
    padding: 38px;
    border-top: 5px solid var(--wp-yellow);
}

.wp-contact-form h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.wp-contact-form .form-control {
    border: 0;
    border-radius: 4px;
    padding: 14px 16px;
    min-height: 52px;
}

.wp-contact-form textarea.form-control {
    min-height: 135px;
}

.wp-contact-form .form-control:focus {
    border-color: var(--wp-yellow);
    box-shadow: 0 0 0 .2rem rgba(249,200,14,.15);
}

.wp-submit-btn {
    border: 0;
    background: var(--wp-yellow);
    color: var(--wp-dark);
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 4px;
    transition: .3s;
}

.wp-submit-btn:hover {
    background: #fff;
    color: var(--wp-dark);
}

/* =========================================================
   FOOTER
========================================================= */

.wp-contact-footer {
    background: var(--wp-dark);
    color: #fff;
    padding: 45px 0;
}

.wp-contact-footer h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.wp-contact-footer p {
    color: #aaa;
}

.wp-footer-socials {
    margin: 20px 0;
}

.wp-footer-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    color: #fff;
    background: rgba(255,255,255,.08);
    text-decoration: none;
    border-radius: 50%;
}

.wp-footer-socials a:hover {
    background: var(--wp-yellow);
    color: var(--wp-dark);
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background: var(--wp-purple);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
}

.back-to-top:hover {
    background: var(--wp-yellow);
    color: var(--wp-dark);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width : 576px){
    #titleee{
        display: none !important;
    }
}


@media (max-width: 991.98px) {

    .wp-navbar .nav-link {
        padding: 14px 0 !important;
    }

    .wp-navbar .nav-link.active {
        box-shadow: none;
        border-left: 4px solid var(--wp-yellow);
        padding-left: 12px !important;
    }

    .wp-contact-hero {
        padding: 65px 0;
    }

    .wp-contact-hero h1 {
        font-size: 52px;
    }

    .wp-contact-card {
        height: auto;
    }
}

@media (max-width: 575.98px) {

    .wp-contact-section {
        padding: 55px 0;
    }

    .wp-section-heading h2 {
        font-size: 31px;
    }

    .wp-contact-card,
    .wp-contact-form {
        padding: 25px 20px;
    }

    .wp-contact-hero h1 {
        font-size: 43px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}
