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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7ff 0%, #f0e9ff 50%, #fff3e9 100%);
    background-attachment: fixed;
    color: #1f2937;
    overflow-x: hidden;
}

/* ✨ NAVBAR ENHANCEMENT */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* ⭐ HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(208, 100, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 6s ease-in-out infinite;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.5);
    animation: zoomInProfile 1s ease-out, float 4s ease-in-out infinite 0.5s;
    transition: all 0.4s ease;
    cursor: pointer;
}

.profile-img:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 70px rgba(13, 110, 253, 0.4),
                inset 0 0 25px rgba(255, 255, 255, 0.7);
    filter: brightness(1.1);
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    margin: 20px 0 10px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions .btn {
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0a58ca, #0849a3);
}

.hero-actions .btn-outline-primary {
    color: #0d6efd;
    border: 2px solid #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.hero-actions .btn-outline-primary:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* 📱 PAGE HERO */
.page-hero {
    padding: 130px 0 40px;
    min-height: auto;
    text-align: left;
}

.page-hero .hero-copy {
    max-width: 820px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0.05));
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.page-badge:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(13, 110, 253, 0.1));
    border-color: rgba(13, 110, 253, 0.4);
}

/* 🎯 SECTION */
section {
    padding: 90px 0;
    animation: fadeUp 1s ease-out;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    animation: slideInDown 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

/* 🎴 CARDS */
.custom-card {
    border-radius: 20px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.custom-card:hover::before {
    left: 100%;
}

.custom-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(13, 110, 253, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.8));
    border-color: rgba(13, 110, 253, 0.3);
}

.custom-card h5 {
    color: #0d6efd;
    font-weight: 700;
    margin: 15px 0;
    font-size: 1.3rem;
}

.custom-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 500;
}

/* 📋 PAGE GRID CARD */
.page-grid-card {
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.page-grid-card a {
    color: inherit;
    text-decoration: none;
}

.page-grid-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #0d6efd;
    font-weight: 700;
    transition: all 0.3s ease;
}

.page-grid-card:hover .card-link {
    gap: 15px;
    color: #0a58ca;
}

.page-grid-card .card-link i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-grid-card:hover .card-link i {
    transform: translateX(6px) rotate(15deg);
}

/* ⭐ SECTION BOX */
.section-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.section-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.section-box:hover::before {
    transform: scaleX(1);
}

.section-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(13, 110, 253, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.section-box i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.section-box:hover i {
    transform: translateX(4px) scale(1.1);
    color: #0a58ca;
}

.section-box h4 {
    color: #0d6efd;
    font-weight: 700;
    margin: 15px 0;
    font-size: 1.2rem;
}

/* 🎯 SKILL BADGES */
.badge-skill {
    padding: 12px 20px;
    border-radius: 25px;
    margin: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.05));
    color: #0d6efd;
    border: 2px solid rgba(13, 110, 253, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: inline-block;
}

.badge-skill:hover {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
    border-color: #0d6efd;
}

/* 🎨 SKILL CARD */
.skill-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(13, 110, 253, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    animation: float 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.skill-card:hover::before {
    top: -30%;
    right: -30%;
}

.skill-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.8));
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.25);
    border-color: rgba(13, 110, 253, 0.3);
}

.skill-card i {
    font-size: 3.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.skill-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.skill-card h5 {
    font-weight: 700;
    color: #0d6efd;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.skill-delay-1 { animation-delay: 0s; }
.skill-delay-2 { animation-delay: 0.2s; }
.skill-delay-3 { animation-delay: 0.4s; }
.skill-delay-4 { animation-delay: 0.6s; }
.skill-delay-5 { animation-delay: 0.8s; }

/* 🔗 FOOTER */
footer {
    text-align: center;
    padding: 40px 0 25px;
    font-size: 0.95rem;
    color: #666;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(13, 110, 253, 0.1);
    margin-top: 50px;
}

footer a {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    margin: 0 15px;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    transition: width 0.3s ease;
}

footer a:hover::before {
    width: 100%;
}

footer a:hover {
    color: #0d6efd;
    transform: translateY(-3px);
}

footer i {
    transition: all 0.3s ease;
}

footer a:hover i {
    transform: scale(1.3) rotate(10deg);
}

/* ✨ ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomInProfile {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .page-hero {
        padding-top: 110px;
    }

    .custom-card {
        padding: 25px;
    }

    .section-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 60px;
        min-height: 85vh;
    }

    .profile-img {
        width: 140px;
        height: 140px;
    }

    .hero h2 {
        font-size: 2rem;
        margin-top: 15px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .hero-actions .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .custom-card {
        padding: 20px;
    }

    .skill-card {
        padding: 30px 20px;
    }

    .skill-card i {
        font-size: 2.5rem;
    }

    footer {
        padding: 30px 15px 20px;
        font-size: 0.85rem;
    }

    footer a {
        margin: 0 8px;
    }

    .navbar {
        padding: 0.3rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        margin: 0 5px;
    }
}

#goal .custom-card {
    line-height: 1.9;
}

.custom-card h5 {
    margin-top: 20px;
}

/* FALLBACK IMAGE HANDLER */
img {
    onerror: this.onerror=null;this.src='img/fallback.svg';
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f8fbff, #eef4ff, #ffffff);
    color: #1f2937;
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
}

.navbar .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: zoomIn 1s ease, float 3s ease-in-out infinite 1s;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.hero h2 {
    animation: fadeInUp 1.5s ease;
}

.hero p {
    animation: fadeInUp 1.5s ease 0.5s both;
}

.hero-btn {
    margin-top: 20px;
    animation: fadeInUp 1.5s ease 1s both;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-hero {
    padding: 130px 0 40px;
    min-height: auto;
    text-align: left;
}

.page-hero .hero-copy {
    max-width: 820px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-grid-card {
    height: 100%;
}

.page-grid-card a {
    color: inherit;
    text-decoration: none;
}

.page-grid-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #0d6efd;
    font-weight: 600;
}

.page-grid-card:hover .card-link {
    transform: translateX(4px);
}

.page-grid-card .card-link i {
    transition: transform 0.3s ease;
}

.page-grid-card:hover .card-link i {
    transform: translateX(4px);
}

/* SECTION */
section {
    padding: 80px 0;
    animation: fadeUp 1s ease;
}

.section-title {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 25px;
    text-align: center;
}

/* CARD */
.custom-card {
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* SKILL */
.badge-skill {
    padding: 10px 16px;
    border-radius: 20px;
    margin: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.badge-skill:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* TAMBAHAN ABOUT */
.section-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.section-box:hover {
    transform: translateY(-5px);
}

.section-box i {
    color: #0d6efd;
    margin-right: 8px;
}

#goal .custom-card {
    line-height: 1.8;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* SKILL CARD FLOAT */
.skill-card {
    animation: float 4s ease-in-out infinite;
}

.skill-delay-1 { animation-delay: 0s; }
.skill-delay-2 { animation-delay: 0.5s; }
.skill-delay-3 { animation-delay: 1s; }
.skill-delay-4 { animation-delay: 1.5s; }
.skill-delay-5 { animation-delay: 2s; }

/* EFEK UNIK TAMBAHAN: Glow pada kartu skills dan transisi warna halus */
.skill-card:hover {
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3);
    filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.5));
}

.custom-card {
    transition: all 0.4s ease, filter 0.3s ease;
}

.custom-card:hover {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
}

@media (max-width: 576px) {
    section {
        padding: 60px 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .page-hero {
        padding-top: 110px;
    }
}html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f8fbff, #eef4ff, #ffffff);
    color: #1f2937;
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
}

.navbar .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: zoomIn 1s ease, float 3s ease-in-out infinite 1s;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

.hero h2 {
    animation: fadeInUp 1.5s ease;
}

.hero p {
    animation: fadeInUp 1.5s ease 0.5s both;
}

.hero-btn {
    margin-top: 20px;
    animation: fadeInUp 1.5s ease 1s both;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-hero {
    padding: 130px 0 40px;
    min-height: auto;
    text-align: left;
}

.page-hero .hero-copy {
    max-width: 820px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-grid-card {
    height: 100%;
}

.page-grid-card a {
    color: inherit;
    text-decoration: none;
}

.page-grid-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #0d6efd;
    font-weight: 600;
}

.page-grid-card:hover .card-link {
    transform: translateX(4px);
}

.page-grid-card .card-link i {
    transition: transform 0.3s ease;
}

.page-grid-card:hover .card-link i {
    transform: translateX(4px);
}

/* SECTION */
section {
    padding: 80px 0;
    animation: fadeUp 1s ease;
}

.section-title {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 25px;
    text-align: center;
}

/* CARD */
.custom-card {
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* SKILL */
.badge-skill {
    padding: 10px 16px;
    border-radius: 20px;
    margin: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.badge-skill:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* TAMBAHAN ABOUT */
.section-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.section-box:hover {
    transform: translateY(-5px);
}

.section-box i {
    color: #0d6efd;
    margin-right: 8px;
}

#goal .custom-card {
    line-height: 1.8;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* SKILL CARD FLOAT */
.skill-card {
    animation: float 4s ease-in-out infinite;
}

.skill-delay-1 { animation-delay: 0s; }
.skill-delay-2 { animation-delay: 0.5s; }
.skill-delay-3 { animation-delay: 1s; }
.skill-delay-4 { animation-delay: 1.5s; }
.skill-delay-5 { animation-delay: 2s; }

/* EFEK UNIK TAMBAHAN: Glow pada kartu skills dan transisi warna halus */
.skill-card:hover {
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3);
    filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.5));
}

.custom-card {
    transition: all 0.4s ease, filter 0.3s ease;
}

.custom-card:hover {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
}

@media (max-width: 576px) {
    section {
        padding: 60px 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .page-hero {
        padding-top: 110px;
    }
}