﻿
/* =====================================
   SERVICE PAGE
===================================== */
/* HERO */

/* ======================================
   BUSINESS CARD SERVICE PAGE
====================================== */

.service-hero {
    padding: 180px 0 120px;
    background: #111827;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .service-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff6b00;
        opacity: .08;
        border-radius: 50%;
        top: -200px;
        right: -150px;
    }

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.1);
    color: #ff6b00;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Poppins',sans-serif;
}

.service-hero p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
}

.service-hero img {
    border-radius: 25px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}




/* OVERVIEW */

.service-overview {
    padding: 100px 0;
    background: #fff;
}

    .service-overview h2 {
        text-align: center;
        margin-bottom: 25px;
        font-size: 42px;
        font-family: 'Poppins',sans-serif;
    }

    .service-overview p {
        max-width: 900px;
        margin: 0 auto 20px;
        text-align: center;
        line-height: 1.9;
        color: #666;
    }
    /* PRICE CALCULATOR */

.price-calculator{
    padding:100px 0;
    background:#f8f9fb;
}

.calculator-box{

    max-width:700px;

    margin:auto;

    background:#fff;

    padding:40px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.calculator-box label{
    display:block;
    margin-bottom:20px;
    font-weight:600;
}

.calculator-box input{
    width:100%;
}

.calculator-result{

    margin-top:25px;

    font-size:22px;

    font-weight:600;
}

#estimatedPrice{

    font-size:48px;

    color:#ff6b00;

    margin:20px 0;
}

#sendEstimate{

    background:#ff6b00;

    color:#fff;

    border:none;

    padding:15px 30px;

    border-radius:12px;

    cursor:pointer;
}
    /* Pricing */
.service-pricing {
    padding: 100px 0;
    background: #111827;
}

    .service-pricing .section-header h2,
    .service-pricing .section-header span {
        color: #fff;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
}

    .pricing-card h3 {
        margin-bottom: 20px;
    }

.price {
    font-size: 48px;
    color: #ff6b00;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card a {
    display: inline-block;
    padding: 14px 24px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
}

.featured {
    transform: scale(1.05);
    border: 3px solid #ff6b00;
}

/*Portfolio*/
.service-gallery {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 50px;
}

    .gallery-grid img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 20px;
        transition: .4s;
        cursor: pointer;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

.industries-served {
    padding: 100px 0;
    background: #f8f9fb;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 50px;
}
/*Industries Served*/
.industry-grid div {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

/* TYPES */

.service-types {
    padding: 100px 0;
    background: #f8f9fb;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 50px;
}

.type-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    transition: .3s;
}

    .type-card:hover {
        transform: translateY(-8px);
        background: #ff6b00;
        color: #fff;
    }


/* PORTFOLIO SLIDER */

.portfolio-slider {
    overflow: hidden;
    margin-top: 50px;
}

.portfolio-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: portfolioScroll 25s linear infinite;
}

    .portfolio-track img {
        width: 350px;
        height: 250px;
        object-fit: cover;
        border-radius: 20px;
    }

    .portfolio-track:hover {
        animation-play-state: paused;
    }

@keyframes portfolioScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



/* BENEFITS */

.service-benefits {
    padding: 100px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: #f8f9fb;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}
.service-cta {
    padding: 100px 0;
    background: #ff6b00;
    color: #fff;
    text-align: center;
}

    .service-cta h2 {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .service-cta p {
        margin-bottom: 30px;
    }

    .service-cta a {
        display: inline-block;
        background: #fff;
        color: #ff6b00;
        text-decoration: none;
        padding: 16px 30px;
        border-radius: 12px;
        font-weight: 600;
    }
/* RELATED SERVICES */

.related-services {
    padding: 100px 0;
    background: #111827;
    text-align: center;
}

    .related-services h2 {
        color: #fff;
        margin-bottom: 40px;
        font-size: 42px;
        font-family: 'Poppins',sans-serif;
    }

    .related-services a {
        display: inline-block;
        margin: 10px;
        padding: 14px 25px;
        border-radius: 50px;
        background: #fff;
        color: #111827;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

        .related-services a:hover {
            background: #ff6b00;
            color: #fff;
        }



/* MOBILE QUOTE BAR */

.mobile-quote-bar {
    display: none;
}


@media(max-width:768px) {
    .floating-buttons {
        display: none;
    }
    .mobile-quote-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 99999;
    }

    .mobile-call,
    .mobile-whatsapp {
        padding: 18px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        color: #fff;
    }

    .mobile-call {
        background: #111827;
    }

    .mobile-whatsapp {
        background: #25D366;
    }
}



/* MOBILE */
@media(max-width:991px) {
    .floating-buttons {
        display: none;
    }
    .service-hero-grid,
    .pricing-grid,
    .gallery-grid,
    .industry-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 140px 0 80px;
    }

        .service-hero h1 {
            font-size: 42px;
        }

    .featured {
        transform: none;
    }

    .service-cta h2 {
        font-size: 34px;
    }
}
/*@media(max-width:991px) {

    .service-hero {
        padding: 140px 0 80px;
    }

    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 40px;
    }

    .service-overview h2,
    .related-services h2 {
        font-size: 32px;
    }

    .types-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
*/

