body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: transparent;
    transition: 0.4s;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero {
    background: linear-gradient(120deg, #0d6efd, #6610f2);
    color: white;
    padding: 160px 0;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
}

.service-card {
    border: none;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.pricing {
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 30px;
}

.pricing.active {
    background: #0d6efd;
    color: white;
}

.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    /* overlay biar teks tetap terbaca */
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
}

.hero p {
    color: #e5e5e5;
}

.navbar {
    transition: 0.3s;
}

.navbar .nav-link {
    color: white;
    font-weight: 500;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: #0A1F44;
}

.navbar.scrolled .navbar-brand {
    color: #0A1F44;
}

.komitmen-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.komitmen-list li:last-child {
    border-bottom: none;
}

.komitmen-list i {
    color: #4ade80;
}