@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Header & Hero */
header {
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #7c3aed 100%);
    color: var(--white);
    padding: 60px 20px 80px; /* Diperkecil dari sebelumnya */
    position: relative;
    overflow: hidden;
    text-align: center;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    z-index: 0;
}

/* Decorative Orbs */
header::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px; /* Ukuran ornamen diperkecil */
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -50px; right: -50px;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

/* Logo Styling - Circular White Container - Diperkecil agar proporsional */
.logo-wrapper {
    background: var(--white);
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: var(--shadow-soft);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.hero-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs-container {
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    font-size: 0.95rem;
    text-decoration: none;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Table Design Refined */
.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; /* Floating rows feel */
}

th {
    background: #f8fafc;
    padding: 20px 15px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

td {
    padding: 20px 15px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

td:first-child {
    border-left: 1px solid #f1f5f9;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

td:last-child {
    border-right: 1px solid #f1f5f9;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

tr:hover td {
    background: #f8fafc;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.pic-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Footer Section */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-logo {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit';
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    header { padding: 80px 20px 120px; }
    .hero-content h1 { font-size: 2.2rem; }
    .logo-wrapper { width: 100px; height: 100px; }
    .glass-card { padding: 25px; }
    .tabs-list { gap: 8px; }
    .tab-btn { padding: 10px 16px; font-size: 0.85rem; }
}
