
/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F7FAFC;
    color: #2E2E2E;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #5bb0ff, #357ABD);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    color: white;
}
.navbar .logo {
    font-weight: bold;
    font-size: 22px;
}
.btn-login {
    background-color: white;
    color: #4A90E2;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s ease;
}
.btn-login:hover {
    background-color: #357ABD;
    color: white;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #E0F0FF, #FFFFFF);
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-section h1 {
    font-size: 36px;
    color: #333;
}
.hero-section h1 span {
    color: #4A90E2;
}
.hero-section h2 {
    color: #555;
    margin: 10px 0 20px;
}
.hero-section .tagline {
    color: #4A90E2;
    font-style: italic;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.btn-primary {
    background: #4A90E2;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-primary:hover {
    background: #357ABD;
}
.btn-outline {
    background: transparent;
    border: 2px solid #4A90E2;
    color: #4A90E2;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}
.btn-outline:hover {
    background: #4A90E2;
    color: white;
}

/* Layanan Section */
.layanan-section {
    padding: 60px 0;
    background: #F7FAFC;
}
.section-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: bold;
}
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    width: 90%;
    margin: auto;
}
.card-layanan {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}
.card-layanan:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.icon-wrapper {
    font-size: 45px;
    color: #4A90E2;
    margin-bottom: 15px;
}
.harga {
    color: #4A90E2;
    font-weight: bold;
}

/* Lokasi Section */
.lokasi-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff, #eaf4ff);
}
.lokasi-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    width: 90%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.lokasi-flex img {
    max-width: 400px;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #4A90E2;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.lokasi-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    width: 90%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-container {
    flex: 1 1 50%;
}

.lokasi-info {
    flex: 1 1 40%;
}

.lokasi-info h4 {
    color: #4A90E2;
    font-size: 20px;
    margin-bottom: 10px;
}

.lokasi-info p {
    font-size: 16px;
    margin: 5px 0;
}

/* Login Page */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* penuh tinggi layar */
}

.login-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #4A90E2;
}

