/* =========================================================
   WHITE PAINTING
   SERVICES PAGE CSS
========================================================= */

: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
========================================================= */

.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
========================================================= */

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

.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: 25px;
    font-weight: 800;
    letter-spacing: .5px;
}

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


/* Navigation */

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

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


/* ONLY ONE ACTIVE YELLOW LINE */

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

/* Remove template pseudo lines */

.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;
}


/* Call Now */

.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;
}


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

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

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

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

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


/* =========================================================
   SECTION HEADINGS
========================================================= */

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

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

.wp-section-heading h2 {
    color: var(--wp-dark);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    margin: 10px 0 15px;
}

.wp-section-heading p {
    color: #77727D;
    line-height: 1.8;
}

.wp-color-line {
    width: 75px;
    height: 5px;
    margin: 20px auto 0;
    border-radius: 10px;

    background: linear-gradient(
        90deg,
        var(--wp-purple),
        var(--wp-blue),
        var(--wp-green),
        var(--wp-yellow),
        var(--wp-orange),
        var(--wp-red)
    );
}


/* =========================================================
   SERVICES
========================================================= */

.wp-services-section {
    padding: 100px 0;
    background: #fff;
}

.wp-service-card {
    height: 100%;
    min-height: 330px;
    padding: 38px 30px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(23,18,31,.08);
    border-top: 5px solid transparent;
    border-image: linear-gradient(
        90deg,
        var(--wp-purple),
        var(--wp-blue),
        var(--wp-green),
        var(--wp-yellow),
        var(--wp-orange),
        var(--wp-red)
    ) 1;
    transition: .35s;
}

.wp-service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 18px 40px rgba(23,18,31,.15);
}

.wp-service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.wp-service-icon.purple {
    background: var(--wp-purple);
}

.wp-service-icon.blue {
    background: var(--wp-blue);
}

.wp-service-icon.green {
    background: var(--wp-green);
}

.wp-service-icon.yellow {
    background: var(--wp-yellow);
    color: var(--wp-dark);
}

.wp-service-icon.orange {
    background: var(--wp-orange);
}

.wp-service-icon.red {
    background: var(--wp-red);
}

.wp-service-card h3 {
    color: var(--wp-dark);
    font-size: 24px;
    font-weight: 700;
}

.wp-service-card p {
    color: #77727D;
    line-height: 1.7;
    margin: 15px 0 22px;
}

.wp-service-card a {
    color: var(--wp-purple);
    text-decoration: none;
    font-weight: 700;
}

.wp-service-card a i {
    margin-left: 5px;
}


/* =========================================================
   PROJECTS / GALLERY
========================================================= */

.wp-projects-section {
    padding: 100px 0;
    background: var(--wp-light);
}

.wp-project-card {
    position: relative;
    height: 310px;
    overflow: hidden;
    border-radius: 15px;
    background: var(--wp-dark);
    box-shadow: 0 8px 25px rgba(23,18,31,.10);
}

.wp-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.wp-project-card:hover img {
    transform: scale(1.08);
}

.wp-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(23,18,31,.92),
        rgba(23,18,31,.05) 65%
    );
}

.wp-project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 25px;
}

.wp-project-overlay h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 22px;
}

.wp-project-overlay p {
    color: var(--wp-yellow);
    margin: 0;
    font-weight: 600;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.wp-why-section {
    padding: 100px 0;
    background: #fff;
}

.wp-why-image {
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.wp-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-small-title {
    color: var(--wp-purple);
    font-weight: 800;
    letter-spacing: 2px;
}

.wp-why-section h2 {
    color: var(--wp-dark);
    font-size: 48px;
    font-weight: 800;
    margin: 12px 0 20px;
}

.wp-why-text {
    color: #77727D;
    line-height: 1.8;
    font-size: 17px;
}

.wp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.wp-features div {
    padding: 15px;
    border-radius: 8px;
    background: var(--wp-light);
    color: var(--wp-dark);
    font-weight: 600;
}

.wp-features i {
    color: var(--wp-green);
    margin-right: 8px;
}

.wp-main-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        var(--wp-purple),
        var(--wp-orange)
    );
}

.wp-main-button:hover {
    color: #fff;
    opacity: .9;
}


/* =========================================================
   CTA
========================================================= */

.wp-cta {
    padding: 75px 0;
    background: linear-gradient(
        100deg,
        var(--wp-purple),
        var(--wp-dark)
    );
}

.wp-cta span {
    color: var(--wp-yellow);
    font-weight: 800;
    letter-spacing: 2px;
}

.wp-cta h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin: 10px 0;
}

.wp-cta p {
    color: rgba(255,255,255,.85);
    font-size: 18px;
}

.wp-cta-button {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 50px;
    background: var(--wp-yellow);
    color: var(--wp-dark);
    text-decoration: none;
    font-weight: 800;
}

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


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

.wp-footer {
    padding-top: 75px;
    background: var(--wp-dark);
    color: #fff;
}

.wp-footer h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
}

.wp-footer h3 span {
    color: var(--wp-yellow);
}

.wp-footer h4 {
    color: var(--wp-yellow);
    margin-bottom: 22px;
}

.wp-footer p {
    color: rgba(255,255,255,.70);
    line-height: 1.8;
}

.wp-footer > .container > .row > div > a {
    display: block;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    margin-bottom: 10px;
}

.wp-footer > .container > .row > div > a:hover {
    color: var(--wp-yellow);
}

.wp-footer p i {
    color: var(--wp-yellow);
    margin-right: 10px;
}

.wp-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.wp-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wp-purple);
    color: #fff;
    text-decoration: none;
}

.wp-footer-social a:hover {
    background: var(--wp-orange);
}

.wp-footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    background: rgba(0,0,0,.25);
}

.wp-footer-bottom p {
    margin: 0;
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #7B2CBF;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #F9C80E;
    color: #17121F;
}

.wp-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
}


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

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

@media (max-width: 991px) {

    .wp-navbar {
        min-height: 80px;
        padding: 10px 0 !important;
    }

    .wp-logo-mark {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .wp-logo-text {
        font-size: 20px;
    }

    .wp-navbar .nav-link {
        padding: 13px 10px !important;
    }

    .wp-navbar .nav-link.active {
        box-shadow: inset 0 -4px 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 {
        display: none !important;
        content: none !important;
    }

    .wp-hero {
        padding: 75px 0;
    }

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

    .wp-services-section,
    .wp-projects-section,
    .wp-why-section {
        padding: 70px 0;
    }

    .wp-why-section h2 {
        font-size: 38px;
    }

    .wp-why-image {
        height: 350px;
    }

    .wp-features {
        grid-template-columns: 1fr;
    }

    .wp-cta {
        text-align: center;
    }

    .wp-cta h2 {
        font-size: 36px;
    }

    .wp-cta-button {
        margin-top: 20px;
    }
}
