@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}



.navbar {
    background: #0d6efd !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.nav-link {
    color: #fff !important;
    margin-left: 15px;
}

.nav-link:hover {
    color: #ffd54f !important;
}



#home {
    background: linear-gradient(135deg, #0d6efd, #2b7cff);
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #fff;
}

#home h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

#home p {
    font-size: 20px;
    margin-bottom: 25px;
}

#home img {
    max-height: 420px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}



section {
    padding: 80px 0;
}

section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}



.card {
    border: none;
    border-radius: 15px;
    transition: .3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}



#customer img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #0d6efd;
}

.badge {
    font-size: 14px;
    padding: 8px 15px;
}



.default-cs {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: #0d6efd;
    font-size: 50px;
}



.btn {
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-success {
    background: #25D366;
    border: none;
}

.btn-success:hover {
    background: #1ebd59;
}



#promo {
    background: #eef4ff;
}

#promo .card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}



#lokasi iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}



footer {
    background: #0d6efd;
}

footer h5 {
    font-weight: 700;
}

footer p {
    margin-bottom: 5px;
}



.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    z-index: 999;
}

.floating-wa:hover {
    color: #fff;
    transform: scale(1.1);
}



.choose-branch {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
    background: linear-gradient(
        135deg,
        #eef5ff,
        #ffffff
    );
}

.choose-branch h1 {
    font-size: 38px;
    font-weight: 700;
}

.branch-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: white;
    font-size: 38px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .25);
}

.branch-card {
    display: block;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.branch-card:hover {
    color: #0d6efd;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.branch-card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf2ff;
    color: #0d6efd;
    font-size: 30px;
}

.branch-card h4 {
    font-weight: 700;
}

.branch-card p {
    color: #777;
    font-size: 14px;
    min-height: 45px;
}

.branch-card span {
    color: #0d6efd;
    font-weight: 600;
}



@media (max-width: 991px) {

    #home {
        text-align: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #home h1 {
        font-size: 36px;
    }

    #home p {
        font-size: 18px;
    }

    #home img {
        margin-top: 30px;
    }
}



@media (max-width: 768px) {

    section {
        padding: 60px 0;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    #home {
        min-height: auto;
        padding: 70px 20px 50px;
    }

    #home h1 {
        font-size: 30px;
    }

    #home p {
        font-size: 16px;
    }

    #home img {
        max-height: 250px;
        margin-top: 30px;
    }

}