* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Hilangkan efek biru saat tap di HP */
a,
button,
input,
textarea,
select,
label {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus,
a:active,
button:focus,
button:active,
input:focus,
textarea:focus,
label:focus {
    outline: none;
    box-shadow: none;
}

body {
    background: #0e0f12;
}

#home,
#about,
#portfolio,
#achievements,
#journey,
#contact {
    scroll-margin-top: 120px;
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #0d0e10;
    border-bottom: 1px solid #1f1f1f;
    z-index: 999;
}


.nama-nav h3{
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    color: white;
}

nav ul{
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 6px;
    background: #18181b;
    border: 1px solid #2b2b2b;
    border-radius: 999px;
}

nav li{
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border: 1px solid transparent;
    border-radius: 10px;

    color: #777;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;

    transition:
        color .25s ease,
        border-color .25s ease,
        background-color .25s ease;
    
    border-radius: 50px;
}

.nav-link.active {
    color: white;
    border: 1px solid #3a3a3a;
    background-color: #0e0f12;
    border-radius: 50px;
}

.nav-link:hover {
    color: white;
    background-color: #0e0f12;
    border-radius: 50px;
}







.btn-nav button{
    padding: 11px 22px;
    border: none;
    border-radius: 999px;
    background: white;
    color: #0d0e10;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-nav button:hover{
    transform: translateY(-2px);
    background: #2563eb;
    color: white;
}




.home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0e0f12;
    padding: 15px 5% 80px 5%;
}

/* Grid */
.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size: 60px 60px;
    pointer-events: none;
}

/* Fade bawah */
.home::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        rgba(14,15,18,0),
        rgba(14,15,18,.6),
        #0e0f12
    );
    pointer-events: none;
}



.home-content{
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}


.home-left{
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hello{
    font-size: 25px;
    color: #d1d5db;
    font-family: Arial, Helvetica, sans-serif;
}





.home-left h1{
    margin-top: 18px;
    font-size: 50px;
    line-height: 1.1;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.home-left p{
    margin-top: 25px;
    font-size: 17px;
    line-height: 30px;
    color: #9ca3af;
    font-family: Arial, Helvetica, sans-serif;
}


.btn-home{
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.btn-home a{
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    transition: .3s;
}

.btn-project{
    background: #5b6cff;
    color: white;
}

.btn-project:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(91,108,255,.35);
}

.btn-contact{
    color: white;
    border: 1px solid #343434;
}

.btn-contact:hover{
    background: #1b1c20;
}



.social-media{
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.social-media a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #313131;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.social-media a:hover{
    background: #5b6cff;
    border-color: #5b6cff;
    transform: translateY(-4px);
}


.home-right{
    width: 65%;
}

.home-img{
    position: relative;
}

/* Foto */

.home-img img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

/* Overlay Gradient */

.home-img::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background:
        linear-gradient(
            to top,
            rgba(14,15,18,.95),
            rgba(14,15,18,.35) 45%,
            rgba(14,15,18,.05) 70%,
            transparent
        );
    pointer-events: none;
}

/* ==========================
TITLE
========================== */

.hero-title{
    position: absolute;
    left: 35px;
    bottom: 35px;
    line-height: .9;
    text-transform: uppercase;
    z-index: 2;
    user-select: none;
}

.solid{
    display: block;
    color: white;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    font-family: Arial, Helvetica, sans-serif;
}

.outline{
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px white;
    font-size: 59px;
    font-weight: 900;
    letter-spacing: -2px;
    font-family: Arial, Helvetica, sans-serif;
}







.about {
    margin: 90px 150px;
}

.about  h3 {
    margin-bottom: 30px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.about1 {
    flex: 1;
    min-width: 0;
}

.about1-p2 {
    margin: 0;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.about1 p:not(.about1-p2) {
    margin-top: 12px;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.about2 {
    flex-shrink: 0;
}

.about2-1 {
    width: 180px;
    height: 180px;
    overflow: hidden;
}

/* DESKTOP = KOTAK */
.about2-1 img {
    width: 140px;
    height: 140px;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.kategori-home {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 25px;
    padding: 20px 0;
}

.kategori-home-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kategori-home-card-1 {
    margin: 0;
    color: #999;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
}

.kategori-home-card-2 {
    margin: 0;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.about1-p3 {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.about1-p3 p {
    margin: 0;
    padding: 0 20px;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

.line-ver {
    flex-shrink: 0;
    width: 3px;
    height: 25px;
    background-color: #2563eb;
}

.about1-text {
    margin-top: 20px;
    padding-bottom: 20px;
}

.about1-p1 {
    max-width: 900px;
    margin: 0;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


.home2-2text {
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    padding-top: 10px;
}

.home2-2text p1 {
    color: rgb(81, 80, 80);
}

.icon-home {
    background-color: white;
    padding: 8px;
    width: 40px;
    height: 40px;
    border: 12px;
    color: #0d0e10;
    font-size: 20px;
    border-radius: 12px;
    text-align: center;
}






.projek-container {
    margin-top: 200px;
}

.projek-container h2 {
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.input-projek {
    display: none;
}

.menu {
    display: flex;
    width: 420px;
    margin: 20px auto;
    padding: 8px;
    gap: 8px;
    background: #1a1919;
    border: 1px solid #2b2b2b;
    border-radius: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

.menu label {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 44px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.menu label:hover {
    background: #3a3a3a;
}

.projek,
.skill,
.sertifikat {
    display: none;
    margin-top: 50px;
}

#p:checked ~ .menu label[for="p"],
#s:checked ~ .menu label[for="s"],
#u:checked ~ .menu label[for="u"]{
    background-color: #3a3a3a;
    color: white;
}

#p:checked ~ .projek {
    display: block;
}

#s:checked ~ .skill {
    display: block;
}

#u:checked ~ .sertifikat {
    display: block;
}




/* projek */

.container-projek {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    gap: 60px;
    margin: 20px;
    justify-content: center;
    animation: fade 0.5s forwards;
}

.container-skill {
    display: grid;
    grid-template-columns: repeat(5, 90px);
    gap: 30px;
    justify-content: center;
    margin: 20px;
    animation: fade 0.5s forwards;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(50px);
    }
}


/* card projek, sertifikat */
.card-projek {
    border-radius: 20px;
    background-color: #1a1919;
    border: 1px solid #2b2b2b;
    padding: 8px;
    width: 290px;
}

.card-projek-1 {
    border-radius: 20px;
    background-color: #1a1919;
    border: 1px solid #2b2b2b;
    padding: 8px;
    width: 290px;
}

.card-sertifikat {
    border-radius: 20px;
    background-color: #1a1919;
    border: 1px solid #2b2b2b;
    padding: 8px;
    width: 290px;
}

.lihat_semua {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
    padding: 0 160px;
    cursor: pointer;
}

.lihat_semua a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    text-decoration: none;
}

.lihat_semua ion-icon {
    color: white;
}

.card-skill {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b1b1b;
    border: 1px solid #2c2c2c;
    border-radius: 18px;
    transition: .3s ease;
    cursor: pointer;
}

.card-skill i{
    font-size: 50px;
}




.card-projek img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}


.card-sertifikat img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}




.text-projek {
    padding: 20px 0;
}

.text-projek h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    font-size: 16px;
    padding-bottom: 5px;
}

.text-projek p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #697565;
    font-size: 11px;
}

.text-projek-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2px;
}

.text-projek-container p {
    color: #3a3a3a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
}

.btn-show button {
    border-radius: 18px;
    border: none;
    background-color: #3a3a3a;
    padding: 8px;
    color: white;
    cursor: pointer;
}



.achievements {
    width: min(1100px, 90%);
    margin: 180px auto 0;
}


.judul-achievements {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.achievements-icon {
    width: 48px;
    height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #2c2c2c;
    border-radius: 14px;

    background: #191919;

    color: #ffffff;
    font-size: 22px;
}

.judul-achievements div {
    text-align: left;
}

.section-label {
    margin: 0 0 4px;

    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.judul-achievements h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}


.container-achievements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
}


.card-achievements {
    display: flex;
    align-items: stretch;
    min-height: 220px;
    padding: 10px;
    background: #171717;
    border: 1px solid #292929;
    border-radius: 20px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.card-achievements:hover {
    transform: translateY(-5px);
    background: #1b1b1b;
    border-color: #3a3a3a;
}



.achievement-image {
    width: 250px;
    overflow: hidden;
    border-radius: 14px;
    background: #222;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-achievements:hover .achievement-image img {
    transform: scale(1.04);
}


.achievement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 12px;
}


/* CATEGORY */

.achievement-category {
    width: fit-content;
    padding: 5px 9px;
    margin-bottom: 12px;
    border: 1px solid #303030;
    border-radius: 8px;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}


/* TITLE */

.achievement-content h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;

    font-size: 17px;
    line-height: 1.3;
}


/* DESCRIPTION */

.achievement-content p {
    margin: 0;

    color: #777;

    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;

    font-size: 12px;
    line-height: 1.6;
}

.achievement-footer {
    margin-top: auto;

    padding-top: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
}

.achievement-footer > span {
    color: #555;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}


.btn-details {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border: 1px solid #303030;
    border-radius: 10px;
    background: #222;
    color: #ddd;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn-details ion-icon {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.btn-details:hover {
    background: #2b2b2b;
    border-color: #444;
    color: white;
}

.btn-details:hover ion-icon {
    transform: translateX(3px);
}






/* Journey */

.journey {
    width: min(900px, 90%);
    margin: 180px auto 0;
    padding-bottom: 150px;
}


.judul-journey {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;

    margin-bottom: 70px;

    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


.journey-icon {
    width: 48px;
    height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #2c2c2c;
    border-radius: 14px;

    background: #191919;

    color: white;
    font-size: 22px;
}


.judul-journey div {
    text-align: left;
}


.journey-label {
    margin: 0 0 4px;

    color: #777;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
}


.judul-journey h2 {
    margin: 0;

    color: white;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: 1px;
}


.timeline {
    position: relative;

    width: 100%;
}


/* GARIS TIMELINE */

.timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 24px;

    width: 1px;

    background: #2c2c2c;
}



.timeline-item {
    position: relative;

    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 25px;

    margin-bottom: 45px;
}



.timeline-dot {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #343434;
    border-radius: 50%;
    background: #111;
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
}


.timeline-dot.active {
    background: white;
    border-color: white;
    color: #111;
}


.timeline-dot span {
    line-height: 1;
}



.timeline-content {
    padding: 24px 25px;
    background: #171717;
    border: 1px solid #292929;
    border-radius: 18px;
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.timeline-content:hover {
    transform: translateX(5px);
    background: #1b1b1b;
    border-color: #3a3a3a;
}


/* CURRENT */

.timeline-content.current {
    border-color: #454545;
}




.timeline-date {
    display: inline-block;
    margin-bottom: 10px;
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}




.timeline-content h3 {
    margin: 0 0 10px;
    color: white;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    font-size: 18px;
    line-height: 1.35;
}




.timeline-content p {
    max-width: 650px;
    margin: 0;
    color: #777;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    line-height: 1.7;
}




.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}


.timeline-tags span {
    padding: 6px 9px;
    border: 1px solid #303030;
    border-radius: 8px;
    background: #202020;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    transition:
        background .25s ease,
        color .25s ease;
}


.timeline-content:hover .timeline-tags span {
    color: #aaa;
    background: #242424;
}






/* ========================================
   CONTACT
======================================== */

.contact {
    width: min(1100px, 90%);
    margin: 150px auto 0;
    padding-bottom: 120px;
}


/* ========================================
   TITLE
======================================== */

.judul-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2c2c2c;
    border-radius: 14px;
    background: #191919;
    color: white;
    font-size: 22px;
}


.judul-contact div {
    text-align: left;
}


.contact-label {
    margin: 0 0 4px;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}


.judul-contact h2 {
    margin: 0;
    color: white;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ========================================
   CONTAINER
======================================== */

.contact-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}


/* ========================================
   LEFT
======================================== */

.contact-left {
    padding: 35px;
    border: 1px solid #292929;
    border-radius: 22px;
    background: #171717;
}


.contact-small-title {
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}


.contact-left h3 {
    margin: 15px 0;
    color: white;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    font-size: 32px;
    line-height: 1.15;
}


.contact-left p {
    margin: 0;
    color: #777;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    font-size: 13px;
    line-height: 1.7;
}


/* ========================================
   CONTACT INFO
======================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #292929;
    border-radius: 13px;
    background: #1b1b1b;
    text-decoration: none;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.contact-item:hover {
    background: #202020;
    border-color: #3a3a3a;
    transform: translateX(4px);
}


.contact-item-icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #252525;
    color: white;
    font-size: 17px;
}


.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.contact-item small {
    color: #666;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.contact-item span {
    color: #ccc;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}


/* ========================================
   RIGHT / FORM
======================================== */

.contact-right {
    padding: 30px;
    border: 1px solid #292929;
    border-radius: 22px;
    background: #171717;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.form-group label {
    color: #aaa;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
}


.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #2d2d2d;
    border-radius: 11px;
    outline: none;
    background: #111;
    color: white;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    font-size: 12px;
    transition:
        border-color .25s ease,
        background .25s ease;
}


.form-group input {
    height: 44px;
}


.form-group textarea {
    min-height: 130px;
    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4f4f4f;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #555;
    background: #151515;
}


/* ========================================
   SEND BUTTON
======================================== */

.btn-send {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px;
    border: none;
    border-radius: 11px;
    background: white;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform .25s ease,
        background .25s ease;
}


.btn-send ion-icon {
    font-size: 15px;
    transition: transform .25s ease;
}


.btn-send:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}


.btn-send:hover ion-icon {
    transform: translateX(4px);
}




/* ========================================
   UNIVERSAL DETAIL MODAL
======================================== */

.detail-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.detail-modal.active {
    opacity: 1;
    visibility: visible;
}


/* ========================================
   MODAL BOX
======================================== */

.detail-modal-box {
    position: relative;
    width: min(780px, 100%);
    max-height: 90vh;
    display: grid;
    grid-template-columns: 310px 1fr;
    overflow: hidden;
    background: #171717;
    border: 1px solid #303030;
    border-radius: 22px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
}

.detail-modal.active .detail-modal-box {
    transform: translateY(0) scale(1);
}


/* ========================================
   IMAGE
======================================== */

.detail-modal-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    overflow: hidden;
}

.detail-modal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


/* ========================================
   CONTENT
======================================== */

.detail-modal-content {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* CATEGORY */

.detail-modal-category {
    width: fit-content;
    margin-bottom: 13px;
    padding: 6px 10px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1e1e1e;
    color: #888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}


/* TITLE */

.detail-modal-title {
    margin: 0;
    color: white;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    font-size: 27px;
    line-height: 1.25;
}


/* META */

.detail-modal-meta {
    margin-top: 8px;
    color: #666;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}


/* LINE */

.detail-modal-line {
    width: 45px;
    height: 1px;
    margin: 20px 0;
    background: #444;
}


/* DESCRIPTION */

.detail-modal-description {
    margin: 0;
    color: #888;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    font-size: 13px;
    line-height: 1.75;
}


/* ========================================
   INFO
======================================== */

.detail-modal-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 25px;
}

.detail-modal-info-item {
    padding: 11px;
    border: 1px solid #292929;
    border-radius: 10px;
    background: #1d1d1d;
}

.detail-modal-info-item span {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-modal-info-item strong {
    color: #ccc;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;
}


/* ========================================
   LINK
======================================== */

.detail-modal-link {
    display: none;
    width: fit-content;
    margin-top: 22px;
    padding: 10px 14px;
    border: 1px solid #333;
    border-radius: 10px;
    background: white;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.detail-modal-link.show {
    display: flex;
}

.detail-modal-link:hover {
    background: #ddd;
}


/* ========================================
   CLOSE BUTTON
======================================== */

.detail-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(20, 20, 20, 0.9);
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.detail-modal-close:hover {
    background: #292929;
    color: white;
}






/* mobile */


@media (max-width: 700px) {

    /* modal */

    .detail-modal {
        padding: 15px;
    }

    .detail-modal-box {
        width: 100%;
        max-height: 90vh;

        display: flex;
        flex-direction: column;

        overflow-y: auto;

        border-radius: 19px;
    }

    .detail-modal-image {
        width: 100%;
        height: 230px;
        min-height: 230px;

        flex-shrink: 0;
    }

    .detail-modal-content {
        padding: 25px 20px;
    }

    .detail-modal-title {
        font-size: 22px;
    }

    .detail-modal-description {
        font-size: 12px;
        line-height: 1.7;
    }

    .detail-modal-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .detail-modal-info-item {
        padding: 9px;
    }

    .detail-modal-info-item strong {
        font-size: 9px;
    }


    /* body */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        background: #0e0f12;
    }


    /* navbar */

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        padding: 12px 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .nama-nav h3 {
        font-size: 21px;
    }

    /* Navbar menu disembunyikan */

    nav ul {
        display: none;
    }

    /* Tombol CV tetap ada */

    .btn-nav button {
        padding: 9px 15px;
        font-size: 11px;
    }



    /* =================================================
       HOME
    ================================================= */

    .home {
        width: 100%;
        min-height: calc(85vh - 65px);
        padding: 140px 20px 80px;
    }

    .home-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }


    .home-left {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }


    .hello {
        font-size: 17px;
        line-height: 1.5;
    }


    .home-left h1 {
        margin-top: 15px;
        font-size: clamp(32px, 9vw, 40px);
        line-height: 1.05;
        letter-spacing: -1px;
    }


    .home-left p {
        width: 100%;
        max-width: 350px;
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.7;
    }


    /* BUTTON */

    .btn-home {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 28px;
    }


    .btn-home a {
        padding: 12px 18px;
        font-size: 12px;
    }


    /* SOCIAL */

    .social-media {
        display: flex;
        gap: 10px;
        margin-top: 28px;
    }


    .social-media a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }


    /* FOTO HOME DISEMBUNYIKAN */

    .home-right {
        display: none;
    }



    /* =================================================
       ABOUT
    ================================================= */

    .about {
        width: calc(100% - 40px);
        margin: 60px auto;
    }

    .about  h3 {
        margin-bottom: 25px;
        font-size: 18px;
    }

    .about-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .about1 {
        flex: 1;
        min-width: 0;
    }

    .about1-p2 {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.2;
    }

    .about1  p:not(.about1-p2) {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.6;
    }

    .about2 {
        flex-shrink: 0;
    }

    .about2-1 {
        width: 85px;
        height: 85px;
        overflow: hidden;
    }

    /* MOBILE = BULAT */
    .about2-1 img {
        width: 85px;
        height: 85px;
        display: block;
        object-fit: cover;
        object-position: top;
        border-radius: 50%;
    }

    .kategori-home {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        margin-top: 20px;
        padding: 15px 0;
    }

    .kategori-home-card-1 {
        font-size: 9px;
    }

    .kategori-home-card-2 {
        font-size: 16px;
    }

    .about1-p3 {
        margin-top: 5px;
        align-items: center;
    }

    .about1-p3 p {
        padding: 0 0 0 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .line-ver {
        width: 3px;
        height: 30px;
    }

    .about1-text {
        margin-top: 15px;
        padding-bottom: 0;
    }

    .about1-p1 {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.7;
    }


    .icon-home {
        width: 36px;
        height: 36px;
        padding: 7px;
        font-size: 18px;
    }


    .home2-2text {
        font-size: 10px;
    }


    /* =================================================
       PORTFOLIO
    ================================================= */

    .projek-container {
        width: 100%;
        margin-top: 120px;
        padding: 0 20px;
        box-sizing: border-box;
    }


    .projek-container h2 {
        font-size: 22px;
        line-height: 1.3;
    }


    /* TAB MENU */

    .menu {
        width: 100%;
        max-width: 350px;
        margin: 20px auto;
        padding: 6px;
        gap: 5px;
        box-sizing: border-box;
    }


    .menu label {
        padding: 9px 5px;
        font-size: 11px;
    }


    /* PROJECT */

    /* PROJECT & SERTIFIKAT MOBILE */
.projek .container-projek,
.sertifikat .container-projek {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;

    width: 100%;
    gap: 15px;

    margin: 25px 0;
    padding: 20px 20px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;

    box-sizing: border-box;
}

.projek .container-projek::-webkit-scrollbar,
.sertifikat .container-projek::-webkit-scrollbar {
    display: none;
}


/* CARD */
.projek .card-projek,
.sertifikat .card-sertifikat {
    flex: 0 0 270px;
    width: 270px;
    max-width: 270px;

    scroll-snap-align: center;

    transform: scale(.88);
    opacity: .55;

    transition: .35s ease;
}

.projek .card-projek.active,
.sertifikat .card-sertifikat.active {
    transform: scale(1);
    opacity: 1;
}


    .card-projek img,
    .card-projek-1 img,
    .card-sertifikat img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }


    .text-projek {
        padding: 15px 5px;
    }


    .text-projek h3 {
        font-size: 15px;
    }


    .text-projek p {
        font-size: 11px;
        line-height: 1.5;
    }

    .lihat_semua {
        display: flex;
        justify-content: end;
        padding: 0 30px;
        align-items: center;
    }

    .lihat_semua a {
        text-decoration: none;
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .lihat_semua ion-icon {
        color: white;
    }

    /* =================================================
       SKILL
    ================================================= */

    .container-skill {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 70px);
        justify-content: center;
        gap: 12px;
        margin: 25px auto;
    }


    .card-skill {
        width: 70px;
        height: 70px;
        border-radius: 15px;
    }


    .card-skill i {
        font-size: 38px;
    }


    /* =================================================
       ACHIEVEMENTS
    ================================================= */

    .achievements {
        width: calc(100% - 40px);
        max-width: 500px;
        margin: 120px auto 0;
        padding: 0;
        box-sizing: border-box;
    }


    /* TITLE */

    .judul-achievements {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 35px;
    }


    .achievements-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        font-size: 19px;
    }


    .judul-achievements div {
        text-align: left;
    }


    .section-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }


    .judul-achievements h2 {
        font-size: 21px;
    }


    /* CARDS */

    .container-achievements {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 0 auto;
    }


    .card-achievements {
        width: 100%;
        max-width: 500px;
        margin: 0;
        display: flex;
        flex-direction: column;
        padding: 8px;
        min-height: 0;
        box-sizing: border-box;
        border-radius: 18px;
    }


    .achievement-image {
        width: 100%;
        height: 190px;
        min-width: 0;
        min-height: 0;
        flex-shrink: 0;
        border-radius: 13px;
        overflow: hidden;
    }


    .achievement-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .achievement-content {
        width: 100%;
        padding: 15px 10px 10px;
        box-sizing: border-box;
    }


    .achievement-category {
        margin-bottom: 9px;
        padding: 5px 8px;
        font-size: 9px;
    }


    .achievement-content h3 {
        font-size: 16px;
        margin-bottom: 7px;
    }


    .achievement-content p {
        font-size: 11px;
        line-height: 1.6;
    }


    .achievement-footer {
        width: 100%;
        margin-top: 18px;
        padding-top: 12px;
    }


    .achievement-footer > span {
        font-size: 10px;
    }


    .btn-details {
        padding: 7px 10px;
        font-size: 10px;
    }


    /* =================================================
       JOURNEY
    ================================================= */

    .journey {
        width: calc(100% - 40px);
        max-width: 900px;
        margin: 120px auto 0;
        padding-bottom: 100px;
        box-sizing: border-box;
    }


    .judul-journey {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 45px;
    }


    .journey-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        font-size: 19px;
    }


    .judul-journey div {
        text-align: left;
    }


    .journey-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }


    .judul-journey h2 {
        font-size: 21px;
    }


    /* TIMELINE */

    .timeline {
        width: 100%;
    }


    .timeline::before {
        left: 17px;
    }


    .timeline-item {
        width: 100%;
        display: grid;
        grid-template-columns: 35px 1fr;
        gap: 13px;
        margin-bottom: 25px;
    }


    .timeline-dot {
        width: 34px;
        height: 34px;
        font-size: 8px;
    }


    .timeline-content {
        width: 100%;
        padding: 17px;
        box-sizing: border-box;
        border-radius: 15px;
    }


    .timeline-date {
        font-size: 9px;
    }


    .timeline-content h3 {
        font-size: 15px;
        line-height: 1.35;
    }


    .timeline-content p {
        font-size: 11px;
        line-height: 1.6;
    }


    .timeline-tags {
        margin-top: 14px;
        gap: 5px;
    }


    .timeline-tags span {
        padding: 5px 7px;
        font-size: 8px;
    }


    /* =================================================
       CONTACT
    ================================================= */

    .contact {
        width: calc(100% - 40px);
        max-width: 1100px;
        margin: 100px auto 0;
        padding-bottom: 80px;
        box-sizing: border-box;
    }


    /* TITLE */

    .judul-contact {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }


    .contact-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        font-size: 19px;
    }


    .judul-contact div {
        text-align: left;
    }


    .contact-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }


    .judul-contact h2 {
        font-size: 21px;
    }


    /* CONTACT CONTAINER */

    .contact-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }


    /* LEFT */

    .contact-left {
        width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
        border-radius: 18px;
    }


    .contact-small-title {
        font-size: 9px;
    }


    .contact-left h3 {
        margin: 12px 0;
        font-size: 26px;
        line-height: 1.2;
    }


    .contact-left > p {
        font-size: 11px;
        line-height: 1.7;
    }


    /* CONTACT INFO */

    .contact-info {
        gap: 10px;
        margin-top: 25px;
    }


    .contact-item {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }


    .contact-item-icon {
        width: 33px;
        height: 33px;
        font-size: 15px;
    }


    .contact-item small {
        font-size: 8px;
    }


    .contact-item span {
        font-size: 10px;
    }


    /* FORM */

    .contact-right {
        width: 100%;
        padding: 22px 18px;
        box-sizing: border-box;
        border-radius: 18px;
    }


    .contact-form {
        width: 100%;
        gap: 17px;
    }


    .form-row {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }


    .form-group {
        width: 100%;
    }


    .form-group label {
        font-size: 10px;
    }


    .form-group input,
    .form-group textarea {
        width: 100%;
        font-size: 11px;
        box-sizing: border-box;
    }


    .form-group input {
        height: 42px;
    }


    .form-group textarea {
        min-height: 120px;
    }


    .btn-send {
        width: 100%;
        padding: 12px;
        font-size: 11px;
    }

}





/* @media (max-width: 700px) {


    .home-left h1 {
        font-size: 35px;
    }

    .home-right {
        display: none;
    }

} */

/* =================================================
   FIX LIGHT MODE
================================================= */

body.light-mode {
    background: #f5f5f5;
    color: #111;
}

/* HOME */
body.light-mode .home {
    background: #f5f5f5;
}

body.light-mode .home::before {
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
}

body.light-mode .home::after {
    background: linear-gradient(
        to bottom,
        rgba(245,245,245,0),
        rgba(245,245,245,.7),
        #f5f5f5
    );
}

/* TEXT */
body.light-mode .hello,
body.light-mode .lihat_semua,
body.light-mode .home-left h1,
body.light-mode .about h3,
body.light-mode .about1-p2,
body.light-mode .kategori-home-card-2,
body.light-mode .projek-container h2,
body.light-mode .judul-achievements,
body.light-mode .judul-journey,
body.light-mode .judul-contact,
body.light-mode .achievement-content h3,
body.light-mode .timeline-content h3,
body.light-mode .contact-left h3 {
    color: #111;
}

body.light-mode .lihat_semua a {
    color: #111;
}

body.light-mode .lihat_semua ion-icon {
    color: #111;
}

body.light-mode .home-left p,
body.light-mode .about1 p:not(.about1-p2),
body.light-mode .about1-p1,
body.light-mode .about1-p3 p,
body.light-mode .achievement-content p,
body.light-mode .timeline-content p,
body.light-mode .contact-left p {
    color: #666;
}

/* NAVBAR */
body.light-mode nav {
    background: #ffffff;
    border-bottom-color: #ddd;
}

body.light-mode .nama-nav h3 {
    color: #111;
}

body.light-mode nav ul {
    background: #eeeeee;
    border-color: #d8d8d8;
}

body.light-mode .nav-link {
    color: #777;
}

body.light-mode .nav-link.active,
body.light-mode .nav-link:hover {
    color: #111;
    background: #fff;
    border-color: #d5d5d5;
}


/* BUTTON */
body.light-mode .btn-contact {
    color: #111;
    border-color: #d8d8d8;
    background: #eeeeee;
}


body.light-mode .btn-contact:hover {
    background: #e9e9e9;
}

/* SOCIAL */
body.light-mode .social-media a {
    color: #111;
    border-color: #d5d5d5;
}

body.light-mode .social-media a:hover {
    color: white;
}

/* PORTFOLIO MENU */
body.light-mode .menu {
    background: #e9e9e9;
    border-color: #d5d5d5;
}

body.light-mode .menu label {
    color: #555;
}

body.light-mode .menu label:hover {
    background: #ddd;
}

body.light-mode #p:checked ~ .menu label[for="p"],
body.light-mode #s:checked ~ .menu label[for="s"],
body.light-mode #u:checked ~ .menu label[for="u"] {
    background: #fff;
    color: #111;
}

/* PROJECT & CERTIFICATE CARD */
body.light-mode .card-projek,
body.light-mode .card-projek-1,
body.light-mode .card-sertifikat {
    background: #fff;
    border-color: #ddd;
}

body.light-mode .text-projek h3 {
    color: #111;
}

body.light-mode .text-projek p {
    color: #666;
}

body.light-mode .text-projek-container p {
    color: #888;
}

body.light-mode .btn-show button,
body.light-mode .btn-details {
    background: #eee;
    color: #111;
    border-color: #ddd;
}

body.light-mode .btn-details:hover {
    background: #ddd;
    color: #111;
}

/* SKILL */
body.light-mode .card-skill {
    background: #fff;
    border-color: #ddd;
}

/* ACHIEVEMENTS */
body.light-mode .achievements-icon,
body.light-mode .journey-icon,
body.light-mode .contact-icon {
    background: #fff;
    border-color: #ddd;
    color: #111;
}

body.light-mode .h2-ket {
    color: #111;
}


body.light-mode .card-achievements,
body.light-mode .timeline-content,
body.light-mode .contact-left,
body.light-mode .contact-right {
    background: #fff;
    border-color: #ddd;
}

body.light-mode .achievement-category,
body.light-mode .timeline-tags span {
    background: #f1f1f1;
    border-color: #ddd;
    color: #666;
}

body.light-mode .timeline-content.current {
    border-color: #ccc;
}

body.light-mode .timeline::before {
    background: #ddd;
}

body.light-mode .timeline-dot {
    background: #fff;
    border-color: #ccc;
    color: #777;
}

body.light-mode .timeline-dot.active {
    background: #111;
    border-color: #111;
    color: white;
}

/* CONTACT */
body.light-mode .contact-item {
    background: #f5f5f5;
    border-color: #ddd;
}

body.light-mode .contact-item:hover {
    background: #eee;
}

body.light-mode .contact-item-icon {
    background: #e5e5e5;
    color: #111;
}

body.light-mode .contact-item small {
    color: #888;
}

body.light-mode .contact-item span {
    color: #333;
}

/* INPUT */
body.light-mode .form-group label {
    color: #555;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: #f8f8f8;
    color: #111;
    border-color: #ddd;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    background: #fff;
    border-color: #aaa;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
    color: #999;
}

/* THEME BUTTON */
body.light-mode .theme-toggle {
    background: #f1f1f1;
    color: #111;
    border-color: #d5d5d5;
}

/* MODAL */
body.light-mode .detail-modal-box {
    background: #fff;
    border-color: #ddd;
}

body.light-mode .detail-modal-image {
    background-color: white;
}

body.light-mode .detail-modal-category {
    background-color: #f5f5f5;
    color: #555;
    border-color: #ddd;
}

body.light-mode .detail-modal-content {
    color: #111;
}

body.light-mode .detail-modal-title {
    color: #111;
}

body.light-mode .detail-modal-description {
    color: #666;
}

body.light-mode .detail-modal-info-item {
    background: #f5f5f5;
    border-color: #ddd;
}

body.light-mode .detail-modal-info-item strong {
    color: #333;
}

body.light-mode .detail-modal-close {
    background: rgba(255,255,255,.9);
    color: #555;
    border-color: #ddd;
}

body.light-mode .btn-send {
    color: white;
    background-color: #111;
}

