/* ===== RESET & VARIABEL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1A237E;
    --navy-dark: #0D1B2A;
    --navy-light: #283593;
    --red: #D32F2F;
    --red-light: #EF5350;
    --red-dark: #B71C1C;
    --white: #FFFFFF;
    --gray-bg: #F5F7FA;
    --text-dark: #1A237E;
    --text-gray: #546E7A;
    --green: #2E7D32;
    --green-light: #66BB6A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--navy);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    height: 40px;
}

.logo span {
    color: var(--red-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-login {
    background-color: var(--red);
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--white) !important;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: var(--red-dark) !important;
    transform: scale(1.05);
}

.btn-register {
    border: 2px solid var(--white);
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--white) !important;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: var(--white);
    color: var(--navy) !important;
}

/* Hamburger Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--red-light);
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ===== PAKET ===== */
.packages {
    padding: 80px 0;
}

.packages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--navy);
}

.packages .subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 18px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: center;
    border-top: 6px solid var(--navy);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border-top-color: var(--red);
}

.badge-popular {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--red);
    color: white;
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.package-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
    margin: 16px 0 8px;
}

.package-price small {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
}

.package-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 14px;
}

.package-features li::before {
    content: "✓ ";
    color: var(--red);
    font-weight: 700;
}

.btn-buy {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-buy:hover {
    background-color: var(--red-dark);
    transform: scale(1.02);
}

/* ===== TESTIMONI ===== */
.testimonials {
    padding: 60px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--navy);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--gray-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial-card .user {
    font-weight: 700;
    color: var(--navy);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--red-light);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIF ===== */
@media (max-width: 992px) {
    .package-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--navy);
        padding: 20px;
        gap: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 80%;
        text-align: center;
    }

    .package-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .packages h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 24px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-price {
        font-size: 30px;
    }
}
/* ===== KOMENTAR/TESTIMONI ===== */
.komentar-item {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    border-left: 4px solid var(--navy);
    transition: 0.3s;
}

.komentar-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.komentar-item .komentar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.komentar-item .komentar-nama {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.komentar-item .komentar-badge {
    font-size: 11px;
    background: #E8F5E9;
    color: var(--green);
    padding: 2px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.komentar-item .komentar-tanggal {
    font-size: 12px;
    color: var(--text-gray);
}

.komentar-item .komentar-teks {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.komentar-item .komentar-teks::before {
    content: '"';
    color: var(--navy-light);
    font-size: 24px;
    font-weight: 700;
    opacity: 0.3;
    margin-right: 4px;
}

.komentar-item .komentar-teks::after {
    content: '"';
    color: var(--navy-light);
    font-size: 24px;
    font-weight: 700;
    opacity: 0.3;
    margin-left: 4px;
}

.komentar-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
}

.komentar-empty .icon {
    font-size: 48px;
    margin-bottom: 12px;
}