/* ========== SERVICE PAGE ========== */

.hero {
    height: 70vh;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 100%), url('../img/Banner-service.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .judul {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero .horizontal-line {
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 1rem auto 0;
    animation: fadeInUp 0.7s ease 0.4s both;
}

/* SERVICE BODY */
.body {
    padding: 6rem 0;
    background: var(--light);
}

.body .judul {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.body .horizontal-line-judul {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 0.75rem auto 1rem;
    border-radius: 2px;
}

.body .subjudul {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

.service-image-wrap {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-image-wrap:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-image-wrap img { width: 100%; border-radius: 8px; }

.service-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
    margin: 4rem 0;
    position: relative;
}

.service-divider::after {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 7px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
}
