/* ============================================================
   LAYANAN — CSS (REDESIGNED)
   ============================================================ */

/* SECTION 1 - NEW HERO */
.layanan-new-hero {
    background-color: #fff;
    padding: 80px 0;
}

.lnh-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.lnh-left {
    flex: 1;
}

.lnh-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.lnh-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lnh-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

.lnh-right {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.lnh-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.lnh-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.lnh-icon svg {
    width: 100%;
    height: 100%;
}

.lnh-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.lnh-text p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* SECTION 2 - OUR SERVICES */
.layanan-our-services {
    background-color: #fdfaf6;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.os-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.layanan-our-services .container {
    position: relative;
    z-index: 2;
}

.os-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.3;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.os-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    min-height: 300px;
}

.os-card:hover {
    background: #888;
    color: #fff;
    transform: translateY(-5px);
}

.os-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.os-card:hover .os-card-icon svg {
    stroke: #d5b481;
}

.os-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s;
}

.os-card:hover h3 {
    color: #fff;
}

.os-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.os-card:hover p {
    color: #eee;
}

.os-btn-wa {
    display: none;
    background: #d5b481;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: auto;
}

.os-card:hover .os-btn-wa {
    display: inline-block;
}

.os-btn-wa:hover {
    background: #c3a16d;
}

/* SECTION 3 - 3 LANGKAH */
.layanan-3langkah {
    background: #fff;
    padding: 80px 0;
}

.l3-container {
    max-width: 1000px;
    margin: 0 auto;
}

.l3-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.l3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border: 1px solid #eee;
    background: #fdfaf6;
}

.l3-step {
    padding: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-right: 1px solid #eee;
}

.l3-step:last-child {
    border-right: none;
}

.l3-num {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.l3-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.l3-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lnh-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .lnh-right {
        grid-template-columns: 1fr;
    }
    
    .l3-grid {
        grid-template-columns: 1fr;
    }
    
    .l3-step {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .l3-step:last-child {
        border-bottom: none;
    }
    
    .os-grid {
        grid-template-columns: 1fr;
    }
    
    .os-bg-text {
        font-size: 100px;
    }
}
