/* Navbar Global */
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
}

.navbar {
    background: rgba(0, 0, 0, 0.5);
    /* Lebih transparan */
    color: #fff;
    padding: 15px 0;
    /* Lebih tebal */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.5s, padding 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Efek saat Scroll */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    /* Lebih gelap saat di-scroll */
    padding: 10px 0;
    /* Mengecil saat scroll */
}


.main-content {
    padding-bottom: 100px;
}


/* Container */
.container {
    width: 95%;
    /* Lebih lebar */
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    /* Sedikit lebih besar */
    font-weight: bold;
}

.logo-img {
    width: 60px;
    /* Ukuran logo diperbesar */
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
}

/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    transition: 0.3s;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}


/* Reset */
body,
ul,
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Header */
.header-section {
    text-align: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 20px;
}

.header-section h1 {
    margin-top: 5rem;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 1em;
    opacity: 0.8;
}

.cta-button {
    background-color: #ffdd57;
    color: #1e3c72;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #ffd834;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f9;
}

.pricing-section h2 {
    margin-bottom: 30px;
    font-size: 1.8em;
    color: #333;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    background-color: #2a5298;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.card h1 {
    color: #1e3c72;
    font-size: 2.5em;
    margin: 20px 0;
}

.card h4 {
    color: #666;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.card ul li {
    color: #444;
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.card ul li::before {
    content: '✔';
    color: #28a745;
    margin-right: 10px;
}



/* Footer */

.footer-section {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section hr {
    width: 100%;
    margin-top: 20px;
}


/*  */



/* 💻 1. Desktop (≥ 1024px) */
@media screen and (min-width: 1024px) {

    .hamburger-menu {
        display: none !important;
    }

    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        /* 3 kartu per baris */
    }
}

/* 📱 2. Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kartu per baris */
    }
}

/* 📱 3. Handphone (≤ 767px) */
@media screen and (max-width: 767px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        width: 100%;
        top: 50px;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 12px;
    }

    .hamburger span {
        width: 25px;
        height: 2.5px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        /* 1 kartu per baris */
    }
}