/* Banner */
.service-banner {
    position: relative;
    height: 54vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.sb-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: brightness(45%);
    z-index: -2;
}

.sb-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: -1;
}

.sb-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sb-content p {
    font-size: 20px;
    opacity: 0.9;
}


/* -----------------------------------------------------
   SERVICE BLOCK (DESKTOP)
------------------------------------------------------ */
.service-block {
    padding: 120px 8%;
}

.service-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-block.reverse .service-inner {
    flex-direction: row-reverse;
}

.service-img {
    width: 48%;
}

.service-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    
}

.service-img img:hover {
    transform: scale(1.05) rotateY(6deg);
    box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.service-text {
    width: 50%;
}

.service-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-text h3 {
    font-size: 20px;
    margin: 20px 0 15px;
    font-weight: 600;
}

.service-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.9;
    font-size: 17px;
}

.covered {
    margin: 10px 0 25px;
    font-size: 16px;
    color: #333;
}

/* -----------------------------------------------------
   BUTTON
------------------------------------------------------ */
.btn-service {
    display: inline-block;
    padding: 12px 32px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
}

.btn-service:hover {
    background: #333;
    transform: translateY(-3px);
}


/* -----------------------------------------------------
   FADE-UP ANIMATION
------------------------------------------------------ */
.fade-section {
    opacity: 0;
    transform: translateY(80px);
    transition: 0.9s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* -----------------------------------------------------
   RESPONSIVE — TABLET
------------------------------------------------------ */
@media(max-width: 1100px) {

    .service-inner {
        gap: 40px;
    }

    .service-text h2 {
        font-size: 32px;
    }

    .service-text p {
        font-size: 17px;
    }
}


/* -----------------------------------------------------
   RESPONSIVE — MOBILE
------------------------------------------------------ */
@media(max-width: 950px) {

    /* Stack Blocks */
    .service-inner {
        flex-direction: column;
        text-align: center;
    }

    .service-block.reverse .service-inner {
        flex-direction: column;
    }

    .service-img,
    .service-text {
        width: 100%;
    }

    /* Reduce Spacing */
    .service-block {
        padding: 80px 6%;
    }

    .service-text h2 {
        font-size: 28px;
    }

    .service-text p {
        font-size: 16px;
    }

    .service-text ul {
        padding-left: 0;
        list-style: none;
    }

    .service-text ul li::before {
        content: "• ";
        font-weight: bold;
    }

    .sb-content h1 {
        font-size: 34px;
    }

    .sb-content p {
        font-size: 16px;
    }
}


/* -----------------------------------------------------
   RESPONSIVE — SMALL MOBILE
------------------------------------------------------ */
@media(max-width: 600px) {

    .service-block {
        padding: 70px 5%;
    }

    .service-img img {
        border-radius: 12px;
    }

    .service-text h2 {
        font-size: 26px;
    }

    .service-text p {
        font-size: 15px;
    }

    .btn-service {
        width: 100%;
        padding: 14px 0;
        font-size: 15px;
        border-radius: 10px;
    }
}
