/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #555;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .fw-bold {
    font-weight: 700 !important;
    color: #333;
}

.text-primary {
    color: #0d6efd !important;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: #0d6efd;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #555;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #0d6efd;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/1600x900/?printing,office') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: white;
}

.hero-section p {
    font-size: 1.2rem;
}

/* Layanan Card */
.layanan-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
}

.layanan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.layanan-card .icon {
    font-size: 4rem;
    color: #0d6efd;
}

/* Testimoni */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Footer */
footer a:hover {
    color: #0d6efd !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: #ffffff;
}
body.dark-mode .bg-white, 
body.dark-mode .card,
body.dark-mode .testimonial-card {
    background-color: #1e1e1e !important;
    border-color: #333;
}
body.dark-mode .navbar,
body.dark-mode .login-card {
    background-color: #1e1e1e !important;
}
body.dark-mode .navbar-nav .nav-link {
    color: #ccc;
}
body.dark-mode .navbar-nav .nav-link:hover, body.dark-mode .navbar-nav .nav-link.active {
    color: #0d6efd;
}