/* /assets/css/style.css */

/* --- Custom Scrollbar & Glassmorphism (NexusHost) --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
        html { scroll-behavior: smooth; }
        .glass { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(226, 232, 240, 0.8); }
        .pricing-card { transition: all 0.3s ease; }
        .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .bg-blob { position: absolute; filter: blur(80px); z-index: -1; opacity: 0.5; }
    



* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #2d3748;
}

/* === LAYOUTING DASAR === */
.dashboard-layout { display: flex; min-height: 100vh; }
.landing-layout { display: block; }

/* === TYPOGRAPHY & BUTTONS === */
h1, h2, h3 { color: #1a202c; margin-bottom: 15px; font-weight: 700; }
p { margin-bottom: 15px; line-height: 1.6; color: #4a5568; }

.btn {
    display: inline-block; padding: 10px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary { background: #2563eb; color: #fff; box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2); }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-success { background: #10b981; color: #fff; }
.btn-danger { background: #ef4444; color: #fff; }

/* === TOP NAVBAR (LANDING) === */
.top-navbar {
    background: #fff; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; padding: 15px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
}
.brand-logo {
    font-size: 20px; font-weight: 700; color: #0f172a; text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-icon {
    background: #2563eb; color: #fff; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 18px;
}
.nav-menu { display: flex; align-items: center; gap: 25px; }
.nav-menu a { text-decoration: none; color: #475569; font-weight: 600; transition: color 0.2s; }
.nav-menu a:hover { color: #2563eb; }
.nav-link-login { border-left: 1px solid #cbd5e1; padding-left: 25px; }
.btn-client-area { font-size: 14px; padding: 8px 18px; }

/* Hamburger Menu */
.hamburger { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background: #0f172a; border-radius: 3px; transition: 0.3s; }

/* === SIDEBAR & DASHBOARD === */
.sidebar {
    width: 260px; background: #ffffff; border-right: 1px solid #e2e8f0; padding: 20px; display: flex; flex-direction: column;
}
.sidebar-header {
    display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid #f1f5f9;
}
.sidebar-menu a {
    display: block; padding: 12px 15px; margin-bottom: 8px; color: #475569; font-weight: 600; text-decoration: none; border-radius: 8px; transition: 0.2s;
}
.sidebar-menu a:hover { background: #f1f5f9; color: #2563eb; }
.sidebar-menu a.text-danger { color: #ef4444; }
.sidebar-menu a.text-danger:hover { background: #fef2f2; }

.main-content { flex: 1; padding: 30px; }
.top-bar-dashboard { display: flex; justify-content: flex-end; padding-bottom: 20px; margin-bottom: 30px; border-bottom: 1px solid #e2e8f0; }

/* === CARD & FORMS === */
.card { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); border: 1px solid #f1f5f9; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 8px; font-weight: 600; color: #334155; font-size: 14px; }
input { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 8px; outline: none; transition: 0.3s; font-family: inherit; }
input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #e2e8f0; }
table th { background: #f8fafc; font-weight: 600; color: #475569; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; border-bottom: 1px solid #e2e8f0; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
    .nav-link-login { border-left: none; padding-left: 0; }
    .dashboard-layout { flex-direction: column; }
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e2e8f0; }
}

/* === HERO SECTION (LANDING PAGE) === */
.hero-section {
    max-width: 1200px; margin: 50px auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.hero-content { flex: 1; }
.hero-badge {
    display: inline-block; background: #e0e7ff; color: #3730a3; padding: 6px 12px;
    border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero-content h1 { font-size: 48px; line-height: 1.1; margin-bottom: 20px; color: #0f172a; font-weight: 800; }
.hero-content p { font-size: 18px; color: #475569; margin-bottom: 30px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 15px; align-items: center; }
.btn-outline {
    background: transparent; border: 2px solid #e2e8f0; color: #0f172a;
}
.btn-outline:hover { border-color: #cbd5e1; background: #f8fafc; }

/* Ilustrasi Grafis di Kanan */
.hero-graphics { flex: 1; position: relative; display: flex; justify-content: center; }
.mockup-card {
    background: #fff; border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 20px; width: 100%; border: 1px solid #f1f5f9;
}
.mockup-stats { display: flex; gap: 15px; margin-bottom: 20px; }
.stat-box { flex: 1; background: #f8fafc; padding: 15px; border-radius: 8px; border: 1px solid #e2e8f0;}
.stat-title { font-size: 12px; color: #64748b; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.stat-value { font-size: 24px; font-weight: 800; color: #0f172a; }
.mockup-chart { display: flex; align-items: flex-end; gap: 10px; height: 100px; margin-bottom: 20px;}
.chart-bar { flex: 1; background: #3b82f6; border-radius: 4px 4px 0 0; }

/* === DOMAIN SEARCH SECTION === */
.domain-search-section {
    background: #0f172a; color: #fff; padding: 60px 20px; text-align: center; margin-top: 50px;
}
.domain-search-section h2 { color: #fff; font-size: 32px; margin-bottom: 10px; }
.domain-search-section p { color: #94a3b8; margin-bottom: 30px; }
.search-box {
    max-width: 600px; margin: 0 auto; position: relative; display: flex;
}
.search-box input {
    width: 100%; padding: 18px 25px; border-radius: 30px; border: none; font-size: 16px; margin-bottom: 0;
}
.search-box button {
    position: absolute; right: 6px; top: 6px; padding: 12px 25px; border-radius: 25px;
}
.domain-pricing {
    display: flex; justify-content: center; gap: 30px; margin-top: 30px; flex-wrap: wrap;
}
.ext-price { text-align: center; }
.ext-name { font-size: 20px; font-weight: 700; color: #fff; display: block; margin-bottom: 5px; }
.ext-cost { font-size: 14px; color: #94a3b8; }

@media (max-width: 768px) {
    .hero-section { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-content h1 { font-size: 36px; }
}