:root {
    --primary: #3B82F6;
    --secondary: #00F0FF;
    --dark-bg: #0F172A;
    --card-bg: #1E293B;
    --table-hover: #293548;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-w-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.small-container {
    max-width: 800px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.text-accent { color: var(--secondary); }
.text-blue { color: var(--primary); }
.text-right { text-align: right; }

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-block { width: 100%; }

.btn-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #fff;
}
.btn-gradient:hover {
    box-shadow: 0 0 15px var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--card-bg);
    color: #fff;
    border: 1px solid #475569;
}
.btn-outline:hover {
    border-color: var(--secondary);
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}
.nav-logo i { color: var(--secondary); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-item:hover { color: var(--secondary); }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: left 0.4s ease;
    }
    .nav-links.active { left: 0; }
    .btn-nav { display: none; }
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}
.circle-1 { top: 15%; left: 10%; width: 250px; height: 250px; background: var(--primary); opacity: 0.25; }
.circle-2 { bottom: 20%; right: 10%; width: 250px; height: 250px; background: var(--secondary); opacity: 0.15; }

.hero-content {
    max-width: 800px;
    width: 90%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
}

.services-section {
    padding: 90px 0;
    background: var(--dark-bg);
    border-top: 1px solid #1E293B;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.2rem;
    margin-top: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #334155;
    transition: transform 0.3s, border-color 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--secondary);
}

.card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.testimonials-block h3 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testi-item {
    background: #151F32;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #24334d;
}

.stars { color: #FBBF24; margin-bottom: 10px; font-size: 0.85rem; }
.testi-item p { font-style: italic; font-size: 0.9rem; color: #CBD5E1; }
.testi-user { display: block; margin-top: 12px; font-size: 0.8rem; color: var(--secondary); font-weight: 500; }


.price-section {
    padding: 90px 0;
    background: #0B1120;
}

.section-desc { color: var(--text-muted); margin-top: 5px; }

.table-responsive {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid #334155;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.price-table th, .price-table td {
    padding: 18px 24px;
}

.price-table th {
    background: #1E293B;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #334155;
}

.price-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.price-table tr:hover { background: var(--table-hover); }

.flag { margin-right: 8px; font-size: 1.2rem; }
.price-val { font-weight: 600; color: #fff; }

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-ready { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
.badge-empty { background: rgba(239, 68, 68, 0.15); color: #F87171; }


.order-section {
    padding: 90px 0;
    background: var(--dark-bg);
    border-top: 1px solid #1E293B;
}

.form-card, .payment-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #334155;
}

.form-card h3, .payment-card h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group select {
    width: 100%;
    background: #0F172A;
    border: 1px solid #334155;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 100%;
    outline: none;
    transition: border-color 0.3s;
}
.form-group select:focus {
    border-color: var(--primary);
}


.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qris-box {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.qris-placeholder {
    text-align: center;
    color: #0F172A;
}
.qris-placeholder i { font-size: 3.5rem; margin-bottom: 5px; }
.qris-placeholder p { font-weight: 700; font-size: 0.8rem; }

.payment-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; text-align: center; }

.wallet-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.wallet-item {
    background: #0F172A;
    border: 1px solid #334155;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer {
    background: #070B14;
    border-top: 1px solid #1E293B;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-brand .logo i { color: var(--secondary); }
.footer-brand p { max-width: 400px; color: var(--text-muted); font-size: 0.9rem; }

.footer-socials { display: flex; gap: 12px; }

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1E293B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.2s;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.wa:hover { background: #22C55E; }
.social-btn.tg:hover { background: #0EA5E9; }
.social-btn.ig:hover { background: #D946EF; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.price-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.side-tables-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mb-6 {
    margin-bottom: 15px;
}

.font-bold {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .price-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .price-grid-layout {
        grid-template-columns: 1fr;
    }
}


.qris-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 8px;  
}
