 /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --navy: #0F172A;
            --blue: #1E40AF;
            --cyan: #06B6D4;
            --white: #F8FAFC;
            --slate: #64748B;
            --light: #E2E8F0;
            --card: #1E293B;
            --radius: 10px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--navy);
            color: var(--white);
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* ===== NAVBAR ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 64px;
            background: rgba(15, 23, 42, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(6, 182, 212, 0.15);
        }
        

        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            color: var(--cyan);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--white);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-links>li {
            position: relative;
        }

        .nav-links>li>a {
            display: block;
            padding: 8px 14px;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }

        .nav-links>li>a:hover {
            background: rgba(6, 182, 212, 0.12);
            color: var(--cyan);
        }

        /* Dropdown */
        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: '▾';
            font-size: 0.7rem;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: var(--card);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 8px;
            min-width: 180px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            z-index: 100;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 16px;
            font-size: 0.85rem;
            transition: background 0.15s;
        }

        .dropdown-menu a:hover {
            background: rgba(6, 182, 212, 0.15);
            color: var(--cyan);
        }

        .nav-links li:hover .dropdown-menu {
            display: block;
        }

        .nav-cta {
            background: var(--cyan);
            color: var(--navy) !important;
            font-weight: 700 !important;
            border-radius: 6px;
        }

        .nav-cta:hover {
            background: #22d3ee !important;
            color: var(--navy) !important;
        }

        /* ===== HERO ===== */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width:768px){

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions button{
        width:100%;
    }

}

        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(30, 64, 175, 0.35) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 680px;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--cyan);
            text-transform: uppercase;
            border: 1px solid rgba(6, 182, 212, 0.4);
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.6rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .hero-title .accent {
            position: relative;
            display: inline-block;
            color: var(--cyan);
        }

        .hero-title .accent::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--cyan);
            box-shadow: 0 0 12px var(--cyan);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 6px var(--cyan);
            }

            to {
                box-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(6, 182, 212, 0.4);
            }
        }

        .hero-desc {
            margin: 24px 0 36px;
            font-size: 1.05rem;
            color: var(--slate);
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 13px 28px;
            background: var(--cyan);
            color: var(--navy);
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
        }

        .btn-secondary {
            padding: 13px 28px;
            background: transparent;
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }

        .btn-secondary:hover {
            border-color: var(--cyan);
            color: var(--cyan);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 56px;
            flex-wrap: wrap;
        }

        .stat-item .num {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
        }

        .stat-item .label {
            font-size: 0.8rem;
            color: var(--slate);
            margin-top: 2px;
        }

        /* ===== SECTION BASE ===== */
        section {
            padding: 96px 5%;
        }

        .section-tag {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--cyan);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-desc {
            color: var(--slate);
            max-width: 560px;
            margin-bottom: 52px;
            font-size: 0.95rem;
        }

        .divider {
            width: 48px;
            height: 3px;
            background: var(--cyan);
            border-radius: 2px;
            margin: 16px 0 24px;
        }

        /* ===== SLIDER ===== */
        #slider-section {
            background: var(--card);
        }

        .slider-wrap {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            max-width: 900px;
        }

        .slides {
            display: flex;
            transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
        }

        @media (max-width:768px){

        .slide {
            min-width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--white);
            background-size: cover;
            background-position: center;
            position: relative;
        }
    }
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 60%);
        }

        @media (max-width:768px){

    .slide{
        height:250px;
    }

}

@media (max-width:768px){

    .slide-caption{
        left:15px;
        bottom:15px;
    }

    .slide-caption h3{
        font-size:1.1rem;
    }

    .slide-caption p{
        font-size:0.75rem;
    }

}

        .slide-caption {
            position: absolute;
            bottom: 28px;
            left: 32px;
            z-index: 2;
        }

        .slide-caption h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .slide-caption p {
            color: var(--light);
            font-size: 0.85rem;
            margin-top: 4px;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(6, 182, 212, 0.85);
            border: none;
            color: var(--navy);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background: var(--cyan);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-btn.prev {
            left: 16px;
        }

        .slider-btn.next {
            right: 16px;
        }

        .slider-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--slate);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: none;
        }

        .dot.active {
            background: var(--cyan);
            transform: scale(1.3);
        }

        /* ===== ARTIKEL / NASKAH RAPI ===== */
        #artikel {
            background: var(--navy);
        }

        .article-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 36px;
            border: 1px solid rgba(6, 182, 212, 0.1);
            max-width: 820px;
        }

        .article-card h2 {
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

        .article-card p {
            color: var(--light);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .article-card blockquote {
            border-left: 3px solid var(--cyan);
            padding-left: 20px;
            margin: 24px 0;
            color: var(--slate);
            font-style: italic;
            font-size: 1rem;
        }

        .article-card ul {
            padding-left: 24px;
            color: var(--light);
            font-size: 0.95rem;
            line-height: 2;
        }

        /* ===== GALERI GAMBAR ===== */
        #galeri {
            background: var(--card);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
            max-width: 1000px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(6, 182, 212, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay span {
            font-size: 2rem;
            color: var(--navy);
        }

        /* Lightbox */
        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.9);
            align-items: center;
            justify-content: center;
        }

        #lightbox.active {
            display: flex;
        }

        #lightbox img {
            max-width: 80vw;
            max-height: 80vh;
            border-radius: 10px;
        }

        #lightbox-close {
            position: absolute;
            top: 24px;
            right: 32px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* ===== VIDEO ===== */
        #video-section {
            background: var(--navy);
        }

        .video-wrap {
            max-width: 820px;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .video-wrap video {
            width: 100%;
            display: block;
        }

        .video-placeholder {
            width: 100%;
            aspect-ratio: 16/9;
            background: var(--card);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            color: var(--slate);
        }

        .play-icon {
            width: 72px;
            height: 72px;
            background: var(--cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .play-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 0 24px rgba(6, 182, 212, 0.5);
        }

        /* ===== FORM ===== */
        #kontak {
            background: var(--card);
        }

        .form-wrap {
            max-width: 580px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 20px;
        }

        .field label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--light);
        }

        .field input,
        .field select,
        .field textarea {
            background: var(--navy);
            border: 1px solid rgba(6, 182, 212, 0.25);
            color: var(--white);
            font-family: inherit;
            padding: 11px 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            width: 100%;
        }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
        }

        .field textarea {
            resize: vertical;
            min-height: 110px;
        }

        .field.error input,
        .field.error select,
        .field.error textarea {
            border-color: #ef4444;
        }

        .error-msg {
            font-size: 0.78rem;
            color: #ef4444;
            display: none;
            margin-top: -8px;
            margin-bottom: 8px;
        }

        .field.error+.error-msg {
            display: block;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: var(--cyan);
            color: var(--navy);
            font-weight: 700;
            font-size: 0.95rem;
            font-family: inherit;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
        }

        /* Notifikasi Toast */
        #toast {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: var(--card);
            color: var(--white);
            padding: 14px 22px;
            border-radius: 10px;
            border-left: 4px solid var(--cyan);
            font-size: 0.88rem;
            font-weight: 500;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transform: translateY(80px);
            opacity: 0;
            transition: transform 0.35s, opacity 0.35s;
            z-index: 9998;
            max-width: 320px;
        }

        #toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* ===== TENTANG ===== */
        #tentang {
            background: var(--navy);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            max-width: 1000px;
        }

        .about-img {
            border-radius: 14px;
            overflow: hidden;
            aspect-ratio: 1;
            background: var(--card);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .skill-bar {
            margin-bottom: 18px;
        }

        .skill-bar label {
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 6px;
        }

        .bar-track {
            height: 6px;
            background: var(--navy);
            border-radius: 3px;
            overflow: hidden;
        }

        .bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--blue), var(--cyan));
            border-radius: 3px;
            width: 0;
            transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
        }

        /* ===== FOOTER ===== */
        footer {
            background: #070E1C;
            padding: 40px 5%;
            text-align: center;
            border-top: 1px solid rgba(6, 182, 212, 0.1);
        }

        footer .footer-logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            color: var(--cyan);
            margin-bottom: 12px;
        }

        footer p {
            color: var(--slate);
            font-size: 0.82rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 24px;
            }

            nav{
        flex-direction:column;
        height:auto;
        padding:15px;
    }

    .nav-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        margin-top:10px;
        gap:5px;
    }
        }