/* style.css */

/* ===================================
   GLOBAL
=================================== */

:root {
    --bg:        #080d1a;
    --bg-alt:    #0d1425;
    --card:      #111827;
    --card-2:    #1a2332;
    --border:    rgba(255,255,255,0.06);
    --primary:   #3b82f6;
    --cyan:      #06b6d4;
    --indigo:    #818cf8;
    --teal:      #14b8a6;
    --green:     #22c55e;
    --text:      #f1f5f9;
    --muted:     #64748b;
    --muted2:    #94a3b8;
    --radius:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
}

/* ===================================
   UTILITY
=================================== */

.section-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title-center {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title-left {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--muted2);
    font-size: 1rem;
    margin-bottom: 0;
}

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* ===================================
   NAVBAR
=================================== */

.custom-navbar {
    background: rgba(8, 13, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: all 0.3s;
}

.custom-navbar.scrolled {
    background: rgba(8, 13, 26, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text) !important;
    letter-spacing: 1px;
}

.brand-brackets { color: var(--cyan); }

.nav-link {
    color: var(--muted2) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text) !important;
    background: rgba(255,255,255,0.06);
}

.nav-link.active { color: var(--cyan) !important; }

/* ===================================
   HERO
=================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -150px; left: -100px;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: var(--cyan);
    bottom: 0; right: -80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--green);
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 500;
}

.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-name {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-top: 20px;
    margin-bottom: 0;
}

.hero-name-accent { color: var(--cyan); }

.hero-motto {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--muted2);
    font-weight: 400;
    margin-top: 20px;
    min-height: 1.6em;
    letter-spacing: 0.5px;
}

.hero-motto::after {
    content: '|';
    color: var(--cyan);
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-description {
    color: var(--muted2);
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.8;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59,130,246,0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: var(--text);
    transform: translateY(-2px);
}

/* Hero Code Card Visual */
.hero-card-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    max-width: 400px;
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hero-card-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(6,182,212,0.1), transparent);
    z-index: -1;
}

.hcv-inner { display: flex; flex-direction: column; gap: 10px; }

.hcv-tag { color: var(--muted); font-size: 0.78rem; }

.hcv-line { display: flex; gap: 8px; flex-wrap: wrap; }

.hcv-key { color: var(--indigo); }
.hcv-eq  { color: var(--muted); }
.hcv-val { color: #86efac; }
.hcv-num { color: #fda4af; }
.hcv-str { color: #fcd34d; }
.hcv-bool{ color: var(--cyan); }

.hcv-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

.hcv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.hcv-chips span {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
}

/* Hero Stats */
/* Hero Stats */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 60px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    gap: 4px;
}

.hero-stat:last-child { border-right: none; }

.hs-top {
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
}

.hs-num {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hs-suffix {
    font-size: 0.88rem;
    color: var(--muted2);
    font-weight: 500;
}

.hs-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 6px;
}

.hs-divider {
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.35;
    margin-top: 8px;
}

.hero-stat-divider { display: none; } /* tidak dipakai lagi */


/* ===================================
   REVEAL ANIMATIONS
=================================== */

.reveal, .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible, .reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   ABOUT
=================================== */

.about-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--cyan);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-text {
    color: var(--muted2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong { color: var(--text); }

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ai-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted2);
    font-size: 0.88rem;
}

.ai-item i { color: var(--cyan); font-size: 1rem; flex-shrink: 0; }

.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s;
}

.about-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

.about-card i {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
}

.about-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.about-card p { color: var(--muted2); font-size: 0.88rem; margin: 0; line-height: 1.6; }

.ac-blue i  { color: var(--primary); }
.ac-cyan i  { color: var(--cyan); }
.ac-indigo i{ color: var(--indigo); }
.ac-teal i  { color: var(--teal); }

.ac-blue:hover  { border-color: rgba(59,130,246,0.3); }
.ac-cyan:hover  { border-color: rgba(6,182,212,0.3); }
.ac-indigo:hover{ border-color: rgba(129,140,248,0.3); }
.ac-teal:hover  { border-color: rgba(20,184,166,0.3); }

/* ===================================
   EDUCATION
=================================== */

.edu-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.edu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

.active-edu { border-color: rgba(59,130,246,0.35); }

.edu-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(59,130,246,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--primary);
}

.active-edu .edu-icon {
    background: rgba(59,130,246,0.15);
    color: var(--primary);
}

.edu-badge {
    display: inline-block;
    background: rgba(59,130,246,0.12);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.edu-badge-gray {
    background: rgba(100,116,139,0.15);
    color: var(--muted2);
}

.edu-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.edu-degree {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.edu-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.edu-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted2);
    font-size: 0.85rem;
}

.edu-meta i { color: var(--muted); font-size: 0.85rem; }

/* ===================================
   EXPERIENCE TIMELINE HORIZONTAL
=================================== */

.exp-track-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    padding: 60px 10px 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--card);
}

.exp-track-wrapper::-webkit-scrollbar { height: 6px; }
.exp-track-wrapper::-webkit-scrollbar-track { background: var(--card); border-radius: 10px; }
.exp-track-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.exp-track-line {
    position: absolute;
    top: 28px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

.exp-timeline {
    display: flex;
    gap: 24px;
    width: max-content;
    padding-bottom: 10px;
}

.exp-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 300px;
}

.exp-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--card-2);
    border: 2px solid var(--primary);
    flex-shrink: 0;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.exp-dot-main { background: var(--primary); box-shadow: 0 0 16px rgba(59,130,246,0.5); }
.exp-dot-green { background: var(--green); border-color: var(--green); box-shadow: 0 0 16px rgba(34,197,94,0.4); }

.exp-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    width: 100%;
    transition: all 0.3s;
}

.exp-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); border-color: rgba(59,130,246,0.25); }

.exp-card-main { border-color: rgba(59,130,246,0.3); }

.exp-period {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--cyan);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.exp-company {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exp-company i { color: var(--primary); font-size: 0.85rem; }

.exp-role {
    color: var(--muted2);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.exp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.exp-list li {
    color: var(--muted2);
    font-size: 0.82rem;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.exp-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: 1rem;
    line-height: 1.4;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.exp-tags span {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    color: var(--muted2);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
}

/* ===================================
   PROJECTS
=================================== */

.featured-project {
    background: var(--card);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.featured-project::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.fp-label {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.fp-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.fp-desc { color: var(--muted2); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }

.fp-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.fp-tags span {
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.2);
    color: var(--cyan);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.fp-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.fp-icon-wrap {
    width: 100px; height: 100px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2));
    border: 1px solid rgba(59,130,246,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--cyan);
}

.fp-metrics {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.fp-metrics > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fp-m-val {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.fp-m-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.proj-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.proj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
    border-color: rgba(59,130,246,0.25);
}

.pc-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.pc-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 8px;
}

.proj-card h5 { font-weight: 700; margin-bottom: 10px; font-size: 1rem; }

.proj-card p { color: var(--muted2); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }

.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.pc-tags span {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--muted2);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
}

.pc-more { border-style: dashed; border-color: rgba(255,255,255,0.1); }

.btn-ghost-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    transition: gap 0.2s;
}

.btn-ghost-link:hover { gap: 10px; color: var(--cyan); }

/* ===================================
   SKILLS
=================================== */

.skill-group {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
}

.sg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.sg-header i { color: var(--primary); font-size: 1.3rem; }
.sg-header h5 { margin: 0; font-weight: 700; font-size: 1rem; }

.sg-items { display: flex; flex-direction: column; gap: 16px; }

.sg-item span { font-size: 0.88rem; color: var(--muted2); display: block; margin-bottom: 6px; }

.sg-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.sg-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-fill-cyan   { background: linear-gradient(90deg, var(--cyan), #67e8f9); }
.sg-fill-indigo { background: linear-gradient(90deg, var(--indigo), #c4b5fd); }

.soft-skills { text-align: center; }

.ss-label {
    color: var(--muted2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ss-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.ss-chips span {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.ss-chips span:hover {
    border-color: rgba(59,130,246,0.3);
    color: var(--text);
}

.ss-chips i { color: var(--primary); }

/* ===================================
   FOOTER (Contact + Footer combined)
=================================== */

.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 0;
}

.footer-top {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    display: inline-block;
}

.footer-tagline-text {
    color: var(--muted2);
    font-size: 0.85rem;
    margin: 8px 0 12px;
    letter-spacing: 0.3px;
}

.footer-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 340px;
    margin: 0;
}

/* Contact links — compact pill style */
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cl-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}

.cl-item:hover {
    border-color: rgba(59,130,246,0.35);
    background: rgba(59,130,246,0.06);
    transform: translateY(-2px);
    color: var(--text);
}

.cl-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cl-name {
    line-height: 1;
}

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.82rem;
    margin: 0;
}

.footer-made {
    color: var(--muted);
    font-size: 0.82rem;
}

.heart { color: #ef4444; }

/* ===================================
   SCROLL TOP
=================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}

.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { transform: translateY(-4px); }

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 992px) {
    .hero { padding: 100px 0 60px; }
    .hero-stats-row { padding: 24px 28px; }
    .about-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .hero-buttons { display: flex; flex-direction: column; gap: 12px; }
    .btn-primary-custom, .btn-outline-custom { text-align: center; justify-content: center; }
    .hero-stats-row { flex-direction: column; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .featured-project { padding: 28px 20px; }
    .exp-item { min-width: 260px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 576px) {
    .hero-name { letter-spacing: -1px; }
    .edu-card { flex-direction: column; }
    .about-info-grid { grid-template-columns: 1fr; }
}