/* MASTER CSS 2026 - FULL VERSION 100% 
   Clean, Professional, & Optimized for OLX 888 Gateway
*/

:root {
    --primary: #FF7A00;
    --primary-hover: #e66e00;
    --dark: #1a1a1a;
    --dark-grey: #333;
    --light-bg: #fafafa;
    --white: #ffffff;
    --border: #eeeeee;
    --shadow: 0 10px 30px rgba(0,0,0,0.07);
    --transition: all 0.3s ease;
}

/* RESET & CORE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
    line-height: 1.8; 
    color: var(--dark-grey);
    background: #fff;
}

/* NAVIGATION - 100% RECOVERED */
nav {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--border);
        justify-content: space-between;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img { height: 45px; width: auto; transition: var(--transition); }
.logo img:hover { transform: scale(1.05); }

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 0.95em;
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--primary); }

.nav-link-highlight {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255,122,0,0.2);
}

.nav-link-highlight:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* HAMBURGER & MOBILE MENU */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* HERO SECTION - RECOVERED */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #fffcf5 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2em, 5vw, 3.2em);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height:auto;
}

/* SECTION INFORMASI - ANTI BENTROK */
#main-content-informasi {
    padding: 80px 0;
    clear: both;
}

.info-header {
    text-align: center;
    margin-bottom: 60px; /* JARAK KRUSIAL AGAR TIDAK MENIMPA */
    display: block;
    width: 100%;
}

.info-header h2 {
    font-size: clamp(1.8em, 4vw, 2.8em);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15em;
    color: #555;
}

/* DASHBOARD TABLE - 100% RECOVERED STYLE */
.specs-table-container {
    margin: 40px 0 60px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.table-header-dark {
    background: var(--dark);
    color: var(--white);
    padding: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2em;
}

.table-responsive { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: #fafafa; color: #666; font-size: 0.9em; text-transform: uppercase; }

/* Status Labels */
.status-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75em;
}

.verified { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.active { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }

/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.content-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-num {
    background: var(--primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: var(--dark);
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    margin-top: 40px;
}

/* FOOTER - FULL VERSION */
footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* RESPONSIVE ADAPTATION */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 50px 20px;
        transition: 0.4s cubic-bezier(0.1, 0.7, 0.6, 1);
    }
    
    .nav-menu.active { left: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}