/*==================================*
* SERVICE CCTV
*==================================*/


/*==================================*
* HERO SERVICE
*==================================*/

.hero-service {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fc, #eef4ff);
}

.hero-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text span {
    display: inline-block;
    color: #F7941D;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 48px;
    color: #0B2E6D;
    line-height: 1.3;
    margin: 0 0 20px;
}

.hero-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 35px;
}

.hero-btn {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    transition: 0.4s;
}

.hero-image img:hover {
    transform: scale(1.03);
}


/*==================================*
* TOMBOL HERO
*==================================*/

.btn-service2,
.btn-wa {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.35s;
}

.btn-service2 {
    background: #0B2E6D;
    color: #fff;
}

.btn-service2:hover {
    background: #F7941D;
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-wa:hover {
    background: #0B2E6D;
}


/*==================================*
* YANG KAMI TANGANI
*==================================*/

.service-detail {
    padding: 90px 0;
    background: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.detail-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #F7941D;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #333;
    transition: 0.35s;
}

.detail-item:hover {
    background: #0B2E6D;
    color: #fff;
    transform: translateY(-8px);
    border-left: 5px solid #F7941D;
}


/*==================================*
* ESTIMASI HARGA
*==================================*/

.service-price {
    padding: 100px 0;
    background: #f8f9fc;
}

.price-table {
    overflow-x: auto;
    margin-top: 45px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price-table th {
    background: #0B2E6D;
    color: #fff;
    padding: 20px;
    font-size: 18px;
}

.price-table td {
    padding: 18px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.price-table tr:hover {
    background: #f5f8ff;
}

.price-note {
    margin-top: 25px;
    background: #FFF8EA;
    border-left: 5px solid #F7941D;
    padding: 18px;
    border-radius: 12px;
    color: #555;
    line-height: 1.8;
}


/*==================================*
* BENEFIT
*==================================*/

.service-benefit {
    padding: 100px 0;
    background: #fff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.benefit-box i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #0B2E6D;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.benefit-box h3 {
    color: #0B2E6D;
    font-size: 20px;
    line-height: 1.6;
}


/*==================================*
* FORM SERVICE CCTV
*==================================*/

.service-form {
    padding: 100px 0;
    background: #F8F9FC;
}

#cctvForm {
    max-width: 950px;
    margin: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

#cctvForm input,
#cctvForm select,
#cctvForm textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#cctvForm textarea {
    resize: none;
    margin-bottom: 25px;
}

#cctvForm button {
    width: 100%;
    padding: 18px;
    background: #25D366;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s;
}

#cctvForm button:hover {
    background: #0B2E6D;
}


/*==================================*
* RESPONSIVE
*==================================*/

@media (max-width: 992px) {

    .hero-service-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 34px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-btn {
        justify-content: center;
    }

    .price-table th,
    .price-table td {
        font-size: 14px;
        padding: 14px;
    }

}