* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ============================== HEADER ============================== */
.desktop-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 72px;
    background: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* LOGO */
.desktop-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-logo img {
    height: 48px;
}

.logo-gemari {
    margin-top: 12px;
}

/* MENU DESKTOP */
.desktop-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.desktop-menu a {
    color: #2fb9e6;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* DROPDOWN */
.desktop-dropdown {
    position: relative;
}

.desktop-dropdown-toggle {
    cursor: pointer;
    color: #2fb9e6;
    font-size: 16px;
    font-weight: 500;
}

.desktop-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.desktop-dropdown:hover .desktop-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    color: #2fb9e6;
}

.desktop-dropdown-menu a:hover {
    background: #f1f5f9;
}

/* BURGER */
.burger {
    display: none;
    font-size: 26px;
    color: #2fb9e6;
    cursor: pointer;
}

/* MOBILE NAVBAR */
.mobile-navbar {
    height: 56px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: sticky;
}

.logo img {
    height: 45px;
}

.mobile-navbar .burger {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-navbar .burger span {
    height: 3px;
    background: #2fb9e6;
    border-radius: 2px;
}

/* MENU MOBILE */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    background: #f9f9f9;
}

.dropdown-menu a {
    padding-left: 32px;
    font-size: 13px;
}

.dropdown.active .dropdown-menu {
    display: block;
}

@media (min-width: 768px) {
    .mobile-navbar, .mobile-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-navbar {
        display: none;
    }
}

/* ============================== HERO SECTION ============================== */
.hero-section {
    background-image: url('background-1.png');
    background-size: cover;      
    background-position: center;  
    background-repeat: no-repeat; 
    padding: 50px 0 50px 0;
    position: relative;
    overflow: visible;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    margin-top: -80px;
    color: #fff;
    font-weight: 600;
    
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    opacity: 1;
    max-width: 650px;
}

.hero-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-right: 40px;
}

/* ============================== FORM SECTION ============================== */
.form-section {
    position: relative;
    z-index: 10;
    margin-top: -120px; 
    margin-bottom: 100px;
}
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: auto;
}

.form-card h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ef;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #1aa3d9;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1aa3d9;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #158dbb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 163, 217, 0.3);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        flex: 1;
        margin-top: 50px;
        margin-bottom: 50px;
        color: #fff;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-image {
        flex: 0 0 auto;
        margin-top: 20px;
    }
    .hero-image img {
        display: none;
    }
    .form-card {
        padding: 25px;
        margin: 0 10px;
    }
}

/* ================================= FAQ SECTION ========================== */
.faq-section {
    background: #39aeb9;
    padding: 60px 50px;
    text-align: center;
    color: white;
}
.faq-container {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}
.faq-question {
    background: white;
    color: #333;
    padding: 11px 25px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.faq-answer {
    background: white;
    color: #333;
    padding: 0 25px;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

/* ======================= FOOTER ===================== */
footer {
    background: #10182b;
    color: white;
    padding: 60px 50px 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}
.footer-col p, .footer-col ul li a {
    color: #bbb;
    font-size: 13px;
    line-height: 1.8;
    text-decoration: none;
}
.footer-col ul {
    list-style: none;
}
.social-icons span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-size: 12px;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 12px;
    color: #777;
}

@media screen and (max-width: 992px) {
    footer { padding: 50px 30px 20px; }
    .footer-container { flex-wrap: wrap; gap: 40px 20px; }
    .footer-col { flex: 1 1 calc(50% - 20px); text-align: center; }
    .footer-col ul { padding: 0; }
    .footer-col img { width: 200px; }
    .social-icons { display: flex; justify-content: center; }
}

@media screen and (max-width: 768px) {
    footer { padding: 40px 20px 20px; text-align: center; }
    .footer-container { flex-direction: column; align-items: center; gap: 30px; }
    .footer-col { flex: 1 1 100%; width: 100%; display: flex; flex-direction: column; align-items: center; }
    .footer-col ul { padding: 0; }
    .footer-col h4 { margin-bottom: 12px; font-size: 18px; }
    .footer-col p, .footer-col ul li a { font-size: 14px; }
    .footer-col.brand img { margin-bottom: 15px; }
    .social-icons { display: flex; justify-content: center; }
    .footer-bottom { margin-top: 30px; padding-top: 20px; }
    .footer-bottom p { font-size: 11px; line-height: 1.5; }
}

/* ================= STYLE MODAL PANDUAN PREMIUM ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(142, 147, 169, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeInOverlay 0.5s ease-out;
}

.modal-card {
    background-color: #ffffff;
    width: 90%;
    max-width: 650px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
    animation: slideUpPremium 0.8s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 26px;
    font-weight: bold;
    color: #8c93a9;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover { color: #1e2640; }

.modal-icon-wrapper {
    font-size: 42px;
    color: #1e2640;
    margin-bottom: 15px;
}

.modal-header-premium h2 {
    font-size: 1.25rem;
    color: #1e2640;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.modal-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 25px;
}

.modal-body-premium p {
    font-size: 0.90rem;
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
}

.modal-body-premium .modal-footer-text {
    font-style: italic;
    font-size: 0.90rem;
    color: #64748b;
    margin-bottom: 30px;
}

.modal-footer-premium {
    display: flex;
    justify-content: center;
}

.btn-modal-accept {
    background-color: #2fb9e6;
    color: #ffffff;
    border: none;
    padding: 12px 60px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-modal-accept:hover { background-color: #00a6dd; }
.btn-modal-accept:active { transform: scale(0.98); }

@keyframes fadeInOverlay {
    from { background-color: rgba(142, 147, 169, 0); }
    to { background-color: rgba(142, 147, 169, 0.6); }
}

@keyframes slideUpPremium {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE MODAL PANDUAN (MOBILE) */
@media screen and (max-width: 576px) {
    .modal-overlay { padding: 15px; align-items: center; }
    .modal-card {
        padding: 30px 20px 25px 20px;
        width: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }
    .modal-close { top: 15px; right: 15px; font-size: 24px; }
    .modal-icon-wrapper { font-size: 32px; margin-bottom: 8px; }
    .modal-header-premium h2 { font-size: 1.05rem; margin-bottom: 10px; }
    .modal-divider { margin-bottom: 15px; }
    .modal-body-premium {
        overflow-y: auto;
        padding-right: 5px;
        margin-bottom: 15px;
        text-align: left;
        scrollbar-width: thin;
    }
    .modal-body-premium::-webkit-scrollbar { width: 4px; }
    .modal-body-premium::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 4px; }
    .modal-body-premium p { font-size: 0.85rem; text-align: left; }
    .modal-body-premium .modal-footer-text { font-size: 0.8rem; margin-bottom: 10px; }
    .btn-modal-accept { width: 100%; padding: 12px 0; font-size: 0.88rem; }
}