:root {
    --bg-base: #faf9f5;         
    --text-main: #141619;       
    --text-muted: #5a6065;      
    --border-soft: rgba(20, 22, 25, 0.08);
    --gradient-accent: linear-gradient(135deg, #e05314 0%, #f19e18 100%);
    --accent-solid: #e05314;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* BACKGROUND MESH GRADIENT */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(241, 158, 24, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(224, 83, 20, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* TOMBOL FLOATING PEMGON HUB */
.pemgon-floating-btn {
    position: fixed;
    top: 2rem;
    right: 2.5rem;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pemgon-floating-btn i {
    color: var(--accent-solid);
    font-size: 1rem;
}

.pemgon-floating-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-solid);
    box-shadow: 0 12px 30px rgba(224, 83, 20, 0.1);
}

/* SPLIT-SCREEN CONTAINER */
.split-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* SISI KIRI (PROFILE PANELS) */
.left-panel {
    width: 38%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--border-soft);
}

.serial-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.serial-number i {
    margin-right: 4px;
    color: var(--accent-solid);
}

/* UPDATE UKURAN FOTO: Jauh lebih dominan, proporsional dan jelas */
.profile-avatar-container {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 240px; /* Diubah menjadi bentuk portrait elegan */
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.status-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background: #25D366;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* UPDATE UKURAN NAMA: Lebih ringkas, formal, & tidak memakan ruang panel */
.name-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.1rem; /* Ukuran diperkecil dari semula 3.2rem agar proporsional dengan foto */
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.meta-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 22, 25, 0.04);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

.meta-info-pill i {
    color: var(--accent-solid);
}

/* SIDEBAR NAVIGATION */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    opacity: 0.5;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    transform: translateX(8px);
}

.nav-link.active .nav-num {
    color: var(--accent-solid);
    opacity: 1;
    font-weight: 800;
}

.panel-footer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* SISI KANAN (CONTENT PANEL) */
.right-panel {
    width: 62%;
    margin-left: 38%;
    padding: 7.5rem 5.5rem 4.5rem 5.5rem;
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-soft);
}

.content-section:last-child {
    border-bottom: none;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-solid);
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.65;
    color: #2c3035;
    margin-bottom: 2.5rem;
}

/* SKILL BARS DESIGN */
.skills-distribution-container {
    margin-top: 3.5rem;
    background: #ffffff;
    padding: 2.2rem;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
}

.skills-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.skills-subtitle i {
    color: var(--accent-solid);
}

.skill-bar-group {
    margin-bottom: 1.4rem;
}

.skill-bar-group:last-child {
    margin-bottom: 0;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-percentage {
    color: var(--accent-solid);
    font-weight: 700;
}

.skill-bar-track {
    width: 100%;
    height: 8px;
    background: #f0ede6;
    border-radius: 20px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CORE SERVICES ITEMS */
.services-modern-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-row-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 42px;
    height: 42px;
    background: rgba(220, 83, 19, 0.08);
    color: var(--accent-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.service-meta h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.service-row-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 3.6rem;
}

/* TIMELINE ACADEMIC */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-block {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}

.time-badge {
    background: var(--text-main);
    color: var(--bg-base);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    height: max-content;
}

.time-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.time-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CONTACT AREA GRID */
.contact-professional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-card-link {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    padding: 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-right: 0.8rem;
}

.whatsapp-bg { background: #25D366; }
.email-bg { background: #ea4335; }
.facebook-bg { background: #1877F2; }

.card-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.card-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.arrow-icon {
    position: absolute;
    right: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    transform: translateY(-3px);
    border-color: var(--accent-solid);
    box-shadow: 0 10px 25px rgba(220, 83, 19, 0.05);
}

.contact-card-link:hover .arrow-icon {
    opacity: 1;
    color: var(--accent-solid);
    transform: translate(2px, -2px);
}

/* RESPONSIVE DESIGN FOR SMARTPHONES */
@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
    }
    .pemgon-floating-btn {
        top: auto;
        bottom: 1.5rem;
        right: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .left-panel {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
        padding: 3rem 2rem;
    }
    .profile-avatar-container {
        max-width: 140px;
        height: 170px;
    }
    .right-panel {
        width: 100%;
        margin-left: 0;
        padding: 3rem 2rem 6rem 2rem;
    }
    .name-title {
        font-size: 2.2rem;
    }
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    .contact-professional-grid {
        grid-template-columns: 1fr;
    }
    .service-row-item p {
        padding-left: 0;
        margin-top: 0.5rem;
    }
    .timeline-block {
        flex-direction: column;
        gap: 0.8rem;
    }
}