:root{
    --primary:#0f0f0f;
    --primary-dark:#000000;
    --secondary:#db3d3d;
    --secondary-hover:#db3d3d;
    --text:#333;
    --text-light:#666;
    --border:#e5e7eb;
    --bg:#f7f9fc;
    --white:#ffffff;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);
    --shadow-md:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.12);

    --radius:18px;
    --radius-lg:24px;

    --transition:.3s ease;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:100px 0;
}


#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,.05);
    transition:.3s;
}

#header.scrolled{
    box-shadow:var(--shadow-md);
}

/* ========================================
   BUTTONS
======================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:999px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary{
    background:var(--secondary);
    color:white;
}

.btn-primary:hover{
    background:var(--secondary-hover);
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:var(--primary);
}

/* ========================================
   HERO
======================================== */

#hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;

    background:
    url('/wp-content/uploads/2026/06/BAGROUND-WEB-DEPAN.jpg')
    center center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        /* kiri lebih gelap */
        linear-gradient(
            to right,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,0) 25%
        ),

        /* kanan lebih gelap */
        linear-gradient(
            to left,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,0) 25%
        ),

        /* overlay utama */
        linear-gradient(
            rgba(0,0,0,.85),
            rgba(0,0,0,.70)
        );
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:24px;
}

#hero h1{
    font-size:clamp(2.3rem,5vw,4.5rem);
    line-height:1.1;
    max-width:900px;
    margin:auto;
    color:white;
}

@media (max-width: 768px) {
    #hero h1{
        font-size: 2rem;
        line-height: 1.2;
    }
}

#hero p{
    max-width:720px;
    margin:28px auto;
    font-size:18px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

/* ========================================
   TRUST BAR
======================================== */

#trust{
    background:var(--secondary);
    color:white;
    padding:40px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.trust-item{
    text-align:center;
}

.trust-item strong{
    display:block;
    font-size:28px;
}

.trust-item span{
    font-size:14px;
    opacity:.9;
}

/* ========================================
   SECTION HEADING
======================================== */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
}

.section-heading h2{
    margin-top:12px;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.2;
}

@media (max-width: 768px) {
    .section-heading h2{
        font-size: 1.6rem;
        line-height: 1.15;
    }
}

/* ========================================
   ABOUT
======================================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
}

.about-content p{
    margin-bottom:20px;
    color:var(--text-light);
}

/* ========================================
   LEADER
======================================== */

#leader{
    background:var(--bg);
}

.leader-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.leader-image img{
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
}

.section-label{
    color:var(--secondary);
    font-weight:700;
}

.leader-content h2{
    margin:15px 0 20px;
}

@media (max-width: 768px) {

    .section-label{
        display: block;
        text-align: center;
    }

    .leader-content h2{
        text-align: center;
font-size: 1.6rem;
        line-height: 1.25;
    }

}

.leader-content p{
    margin-bottom:18px;
    color:var(--text-light);
}

.leader-sign{
    margin-top:25px;
}

.leader-sign h4{
    color:var(--primary);
}

/* ========================================
   CARDS
======================================== */

.advantage-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:white;
    padding:32px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-md);
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-8px);
}

.card .icon{
    font-size:34px;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:12px;
    font-size: 20px; /* sedang */
}

.card p{
    color:var(--text-light);
}

/* ========================================
   BENEFITS
======================================== */

#program{
    background:var(--bg);
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.benefit-card{
    background:white;
    padding:24px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    font-weight:600;
}

.benefit-card:hover{
    transform:translateY(-6px);

}

/* ========================================
   JOBS
======================================== */

.job-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.job-grid div{
    background:white;
    border:1px solid var(--border);
    padding:18px;
    border-radius:14px;
    text-align:center;
    font-weight:600;
    transition:var(--transition);
}

.job-grid div:hover{
    background:var(--secondary);
    color:white;
}

/* ========================================
   TIMELINE
======================================== */

#selection{
    background:var(--bg);
}

.timeline{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.timeline-item{
    background:white;
    padding:30px 20px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.timeline-item strong{
    display:block;
    font-size:28px;
    color:var(--secondary);
    margin-bottom:10px;
}

/* ========================================
   GALLERY
======================================== */

.gallery-filter{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.filter-btn{
    border:none;
    padding:12px 20px;
    border-radius:999px;
    background:#eee;
    cursor:pointer;
    transition:var(--transition);
}

.filter-btn.active,
.filter-btn:hover{
    background:var(--secondary);
    color:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    border-radius:var(--radius);
    transition:var(--transition);
}

.gallery-grid img:hover{
    transform:scale(1.04);
}

/* =====================================
   DYNAMIC GALLERY
===================================== */


.dynamic-gallery-item{
    display:none;
}


.dynamic-gallery-item.active{
    display:block;
}



.dynamic-gallery-section{
    padding:60px 0;
}



/* FooGallery pagination tetap */

.dynamic-gallery-item .fg-pagination{
    margin-top:30px;
    text-align:center;
}

/* HOME GALLERY */

.home-gallery-item{
    display:none;
}


.home-gallery-item.active{
    display:block;
}


.home-gallery-grid{
    margin-top:40px;
}



.gallery-button{
    text-align:center;
    margin-top:40px;
}

/* ========================================
   FAQ
======================================== */

#faq{
    background:var(--bg);
}

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:white;
    border-radius:16px;
    margin-bottom:16px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    text-align:left;
    padding:22px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.35s;
    padding:0 22px;
    color:var(--text-light);
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 22px 22px;
}

.faq-question{
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.faq-question span{
    font-size:24px;
    font-weight:400;
    color:var(--text-light);
    line-height:1;
    transition:.3s;
    flex-shrink:0;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* ========================================
   CTA
======================================== */

#cta{
    text-align:center;
    background:var(--primary-dark);
    color:white;
}

#cta h2{
    font-size:clamp(2rem,5vw,3.5rem);
    color:white;
}

#cta p{
    max-width:700px;
    margin:20px auto 30px;
}


/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1024px){

    .advantage-grid,
    .benefit-grid,
    .job-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .timeline{
        grid-template-columns:repeat(3,1fr);
    }

    
}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

    .trust-grid,
    .advantage-grid,
    .benefit-grid,
    .job-grid,
    .timeline,
    .gallery-grid,
    .footer-grid,
    .about-grid,
    .leader-grid{
        grid-template-columns:1fr;
    }
    

    #hero{
        padding:120px 0;
        
    }

    #hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
}


/* ========================================
   PAGE HERO
======================================== */



.page-hero{
position:relative;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    overflow: hidden;

    background:
    url('../images/lpk2.png')
    center center/cover no-repeat;
}

.page-hero.page-seleksi{

background:
    url('https://lpkyokohama.com/wp-content/uploads/2026/06/BAGROUND-WEB-MENU-SELEKSI.jpeg')
    center center/cover no-repeat;

}

.page-hero.page-profil{

background:
    url('https://lpkyokohama.com/wp-content/uploads/2026/06/BAGROUND-WEBSITE-MENU-TENTANGKAMI.png')
    center center/cover no-repeat;

}

.page-hero.page-kontak{

background:
    url('https://lpkyokohama.com/wp-content/uploads/2026/06/BAGROUND-WEBSITE-MENU-KONTAK-scaled.png')
    center center/cover no-repeat;

}

.page-hero.page-galeri{

background:
    url('https://lpkyokohama.com/wp-content/uploads/2026/06/BAGROUND-WEBSITE-MENU-GALERI-scaled.png')
    center center/cover no-repeat;

}

.page-hero.page-program{

background:
    url('https://lpkyokohama.com/wp-content/uploads/2026/06/BAGROUND-WEBSITE-MENU-PROGRAM-scaled.png')
    center center/cover no-repeat;

}

.page-overlay{
   position:absolute;
    inset:0;
    background:
        /* kiri lebih gelap */
        linear-gradient(
            to right,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,0) 25%
        ),

        /* kanan lebih gelap */
        linear-gradient(
            to left,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,0) 25%
        ),

        /* overlay utama */
        linear-gradient(
            rgba(0,0,0,.85),
            rgba(0,0,0,.70)
        );
}

.page-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin: auto;
}

.page-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;

    background:
    rgba(255,255,255,.15);

    border:
    1px solid rgba(255,255,255,.2);

    margin-bottom:20px;
}

.page-content h1{
    font-size:
    clamp(2.5rem,5vw,4rem);

    line-height:1.1;

    margin-bottom:20px;
    color: white;
}

.page-content p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

/* ========================================
   HISTORY
======================================== */

#history{
    background:white;
}

.history-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.history-image img{
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.history-content p{
    margin-bottom:20px;
    color:var(--text-light);
}

/* ========================================
   VISION MISSION
======================================== */

#vision{
    background:var(--bg);
}

.vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.vision-card{
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow-md);
}

.card-icon{
    font-size:48px;
    margin-bottom:20px;
}

.vision-card h3{
    margin-bottom:20px;
    color:var(--primary);
}

.vision-card ul{
    padding-left:20px;
    list-style:disc;
}

.vision-card li{
    margin-bottom:12px;
}

/* ========================================
   LEGALITY
======================================== */

#legality{
    background:white;
}

.legal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.legal-card{
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow-md);
}

.legal-card h3{
    margin-bottom:15px;
}

.legal-card strong{
    display:block;
    margin:15px 0;
    font-size:28px;
    color:var(--primary);
}

.legal-card small{
    display:block;
    color:var(--text-light);
}

.legal-card img{
    border-radius:20px;
}

/* ========================================
   VALUES
======================================== */

#values{
    background:var(--bg);
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card h3{
    margin-bottom:15px;
    color:var(--secondary);
    font-size: 20px; /* sedang */
}

/* ========================================
   TEAM
======================================== */

#organization{
    background:white;
}

.team-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(210px,1fr));

    gap:30px;
}

.team-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
}

.team-card h3{
    padding:20px 20px 5px;
    font-size: 18px; /* normal */
}

.team-card span{
    display:block;
    padding:0 20px 25px;
    color:var(--text-light);
}


/* ========================================
   IMAGE HOVER
======================================== */

.history-image img,
.legal-card img,
.team-card img{
    transition:.4s;
}

.history-image:hover img,
.legal-card:hover img,
.team-card:hover img{
    transform:scale(1.03);
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1024px){

    .history-grid,
    .legal-grid,
    .vision-grid{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .page-hero{
        min-height:50vh;
        padding-top:100px;
    }

    .page-content h1{
        font-size:2.2rem;
    }

    .history-grid,
    .vision-grid,
    .legal-grid{
        gap:30px;
    }

    .vision-card,
    .legal-card{
        padding:30px;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .team-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:480px){

    .page-content h1{
        font-size:1.9rem;
    }

    .page-content p{
        font-size:15px;
    }

    .vision-card,
    .legal-card,
    .value-card{
        padding:25px;
    }

}

/* ========================================
   PROGRAM PAGE - JOB SECTORS
======================================== */

#job-sectors{
    background:var(--bg);
}

.sector-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.sector-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow-md);
    transition:.3s;
    height:100%;
}

.sector-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.sector-card h3{
    color:var(--primary);
    margin-bottom:20px;
    font-size:22px;
    padding-bottom:15px;
    border-bottom:2px solid rgba(0,0,0,.06);
}

.sector-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sector-card li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:var(--text-light);
    line-height:1.6;
}

.sector-card li:last-child{
    margin-bottom:0;
}

.sector-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--secondary);
    font-weight:700;
}

/* ========================================
   FEATURE HIGHLIGHT BOX
======================================== */

.program-highlight{
    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary)
    );

    color:#fff;

    padding:50px;

    text-align:center;

    margin-top:60px;
}

.program-highlight h2{
    color:#fff;
    margin-bottom:20px;
}

.program-highlight p{
    max-width:850px;
    margin:auto;
    opacity:.95;
}

.program-highlight strong{
    color:#ffd54a;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1024px){

    .sector-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .sector-grid{
        grid-template-columns:1fr;
    }

    .sector-card{
        padding:25px;
    }

    .program-highlight{
        padding:35px 25px;
    }

}

@media(max-width:480px){

    .sector-card h3{
        font-size:20px;
    }

    .sector-card li{
        font-size:14px;
    }

}

/* ========================================
   ADMISSION / SELEKSI PAGE
======================================== */

#admission-intro{
    background:#fff;
}

/* ========================================
   REQUIREMENTS
======================================== */

#requirements{
    background:var(--bg);
}

.requirement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.requirement-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.requirement-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.requirement-card .icon{
    font-size:48px;
    margin-bottom:20px;
}

.requirement-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size: 20px;
}

.requirement-card p{
    color:var(--text-light);
    line-height:1.7;
}


/* ========================================
   DOCUMENTS
======================================== */

#documents{
    background:#fff;
}

.document-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:50px;
}

.document-item{
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:var(--shadow-sm);
    font-weight:500;
    transition:.3s;
}

.document-item:hover{
    transform:translateY(-4px);
    border-color:var(--primary);
}

.document-item::before{
    color:var(--secondary);
    font-weight:bold;
}

/* ========================================
   TIMELINE SELECTION PROCESS
======================================== */

#selection-process {
    background: var(--bg);
    padding: 80px 0;
}

#selection-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container Grid */
.timeline-grid {
    display: grid;
    /* Membuat 3 kolom sama rata di desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 50px;
}

/* Card Style */
.timeline-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

/* Angka di Pojok Kiri Atas */
.card-header {
    margin-bottom: 20px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsif: Jika layar tablet/kecil, otomatis jadi 2 atau 1 kolom */
@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ADMISSION INFO BANNER
======================================== */

.admission-banner{
    background:linear-gradient(
        135deg,
        var(--primary),
        #1f6fe0
    );

    color:white;

    padding:50px;
    border-radius:24px;

    text-align:center;
    margin-top:60px;
}

.admission-banner h2{
    color:white;
    margin-bottom:15px;
}

.admission-banner p{
    opacity:.95;
    max-width:800px;
    margin:auto;
}

/* ========================================
   QUICK INFO
======================================== */

.quick-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.quick-info-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.quick-info-card strong{
    display:block;
    color:var(--primary);
    font-size:28px;
    margin-bottom:10px;
}

.quick-info-card span{
    color:var(--text-light);
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1024px){

    .requirement-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .quick-info-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .requirement-grid{
        grid-template-columns:1fr;
    }

    .document-list{
        grid-template-columns:1fr;
    }

    .timeline::before{
        left:25px;
    }

    .timeline-item{
        gap:20px;
    }

    .timeline-number{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:18px;
    }

    .timeline-content{
        padding:25px;
    }

    .quick-info-grid{
        grid-template-columns:1fr;
    }

    .admission-banner{
        padding:35px 25px;
    }

}

@media(max-width:480px){

    .timeline-content{
        padding:20px;
    }

    .timeline-content h3{
        font-size:18px;
    }

    .document-item{
        padding:18px;
    }

    .requirement-card{
        padding:25px;
    }

}

#contact-form-section{
    background:var(--bg);
}

.contact-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:start;
}

/* ========================================
   FORM
======================================== */

.contact-form-wrapper{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow-md);
}

.section-heading.left{
    text-align:left;
    margin-bottom:35px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-weight:600;
    margin-bottom:8px;
    color:var(--primary);
}

.form-group input,

.form-group textarea{
    width:100%;
    padding:15px 18px;

    border:1px solid var(--border);
    border-radius:14px;

    font-family:inherit;
    font-size:15px;

    transition:.3s;
    background:white;
}

.form-group select{

    width:100%;

    padding:10px 14px;

    height:48px;

    border:1px solid var(--border);

    border-radius:14px;

    font-family:inherit;

    font-size:15px;

    background:white;
}

.form-group textarea{
    resize:vertical;
    min-height:140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(15,45,92,.08);
}

/* ========================================
   CONTACT SIDE
======================================== */

.contact-side{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    background:white;
    padding:30px;
    border-radius:24px;
    box-shadow:var(--shadow-sm);

    transition:.3s;
}

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

.contact-box h3{
    color:var(--primary);
    margin-bottom:15px;
}

.contact-box p{
    color:var(--text-light);
}

.contact-box ul{
    list-style:none;
    padding:0;
}

.contact-box ul li{
    position:relative;
    padding-left:24px;
    margin-bottom:12px;
}

.contact-box ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--secondary);
    font-weight:700;
}

/* ========================================
   MAP
======================================== */

#maps{
    background:white;
}

.map-wrapper{
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.map-wrapper iframe{
    display:block;
    width:100%;
}

/* ========================================
   CONTACT INFO CARD HOVER
======================================== */

#contact-info .card{
    text-align:center;
}

#contact-info .card .icon{
    font-size:42px;
    margin-bottom:15px;
}

#contact-info .card h3{
    color:var(--primary);
    margin-bottom:10px;
}

/* ========================================
   FORM BUTTON
======================================== */

.contact-form .btn{
    width:fit-content;
    min-width:220px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1024px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-form-wrapper{
        padding:30px;
    }

    .contact-box{
        padding:25px;
    }

    .contact-form .btn{
        width:100%;
    }

    .map-wrapper iframe{
        height:400px;
    }

}

@media(max-width:480px){

    .contact-form-wrapper{
        padding:25px;
    }

    .contact-box{
        padding:20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:14px;
    }

}

/* ========================================
   GALLERY PAGE
======================================== */

.gallery-description{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    color:var(--text-light);
    font-size:1.05rem;
}

#gallery-filter-section{
    padding-top:0;
    padding-bottom:40px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow-md);
    background:white;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:20px;

    color:white;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.gallery-info h3{
    margin-bottom:5px;
    font-size:18px;
}

.gallery-info p{
    font-size:14px;
    opacity:.9;
}

.gallery-item.hidden{
    display:none;
}



/* ========================================
   LIGHTBOX
======================================== */

.lightbox{
    position:fixed;
    inset:0;

    background:
    rgba(0,0,0,.9);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox-image{
    max-width:90%;
    max-height:85vh;
    border-radius:16px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;

    color:white;
    font-size:40px;
    cursor:pointer;
}

/* ========================================
   GALLERY ANIMATION
======================================== */

.gallery-item{
    opacity:1;
    transform:translateY(0);
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.gallery-item.fade-out{
    opacity:0;
    transform:translateY(15px);
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:768px){

    .gallery-item img{
        height:220px;
    }

    .gallery-info{
        padding:15px;
    }

}

/* ========================================
   BREADCRUMB
======================================== */

.breadcrumb-section{
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.06);
    padding:15px 0;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    font-size:14px;
}

.breadcrumb a{
    color:var(--primary);
    font-weight:500;
}

.breadcrumb span{
    color:var(--text-light);
}

/* ========================================
   REGISTRATION PAGE
======================================== */

#registration{
    background:var(--bg);
}

.registration-wrapper{
    max-width:1100px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:var(--shadow-lg);
}

/* ========================================
   STEP PROGRESS
======================================== */

.step-progress{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:50px;
    position:relative;
}

.step-progress::before{
    content:"";
    position:absolute;
    top:22px;
    left:10%;
    right:10%;
    height:2px;
    background:#e5e7eb;
    z-index:0;
}

.step{
    position:relative;
    z-index:1;
    text-align:center;
    flex:1;
}

.step span{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 10px;

    border-radius:50%;

    background:#e5e7eb;
    color:#64748b;

    font-weight:700;

    transition:.3s;
}

.step p{
    font-size:14px;
    color:#64748b;
}

.step.active span{
    background:var(--primary);
    color:white;
}

.step.active p{
    color:var(--primary);
    font-weight:600;
}

/* ========================================
   FORM STEP
======================================== */

.form-step{
    display:none;
}

.form-step.active{
    display:block;
    animation:fadeStep .4s ease;
}

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

.form-step h2{
    margin-bottom:30px;
    color:var(--primary);
}

/* ========================================
   FORM GRID
======================================== */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-grid .form-group{
    margin-bottom:0;
}

.form-grid .form-group:last-child{
    margin-bottom:0;
}

/* ========================================
   UPLOAD SECTION
======================================== */

.upload-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.upload-card{
    padding:25px;
    border:2px dashed #dbe2ea;
    border-radius:20px;
    background:#fafafa;

    transition:.3s;
}

.upload-card:hover{
    border-color:var(--primary);
    background:#f8fbff;
}

.upload-card label{
    display:block;
    margin-bottom:15px;
    font-weight:600;
    color:var(--primary);
}

.upload-card input[type="file"]{
    width:100%;
    font-size:14px;
}

/* ========================================
   CONFIRMATION
======================================== */

.confirmation-box{
    text-align:center;
    padding:50px 30px;
    border-radius:20px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
}

.confirmation-box .icon{
    font-size:60px;
    margin-bottom:20px;
}

.confirmation-box h3{
    color:var(--primary);
    margin-bottom:15px;
}

.confirmation-box p{
    max-width:600px;
    margin:auto;
    color:var(--text-light);
}

/* ========================================
   AGREEMENT
======================================== */

.agreement{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-top:30px;
}

.agreement input{
    margin-top:4px;
}

.agreement label{
    color:var(--text-light);
    line-height:1.6;
}

/* ========================================
   NAVIGATION BUTTONS
======================================== */

.form-navigation{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-top:40px;
}

.prev-btn{
    display:none;
}

.submit-btn{
    display:none;
}

/* ========================================
   FILE INPUT CUSTOM
======================================== */

input[type="file"]::file-selector-button{
    border:none;
    background:var(--primary);
    color:#fff;
    padding:10px 15px;
    border-radius:10px;
    margin-right:10px;
    cursor:pointer;
}

/* ========================================
   SUCCESS STATE
======================================== */

.success-message{
    text-align:center;
    padding:60px 30px;
}

.success-message .icon{
    font-size:70px;
    margin-bottom:20px;
}

.success-message h2{
    color:var(--primary);
    margin-bottom:15px;
}

.success-message p{
    color:var(--text-light);
}

/* ========================================
   RESPONSIVE TABLET
======================================== */

@media(max-width:992px){

    .registration-wrapper{
        padding:40px;
    }

    .step-progress{
        gap:10px;
    }

    .step p{
        font-size:12px;
    }

}

/* ========================================
   RESPONSIVE MOBILE
======================================== */

@media(max-width:768px){

    .registration-wrapper{
        padding:30px 25px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .upload-grid{
        grid-template-columns:1fr;
    }

    .step-progress{
        overflow-x:auto;
        padding-bottom:10px;
    }

    .step{
        min-width:90px;
    }

    .step-progress::before{
        display:none;
    }

    .form-navigation{
        flex-direction:column;
    }

    .form-navigation .btn{
        width:100%;
    }

}

/* ========================================
   SMALL MOBILE
======================================== */

@media(max-width:480px){

    .registration-wrapper{
        padding:20px;
    }

    .step span{
        width:40px;
        height:40px;
        font-size:14px;
    }

    .confirmation-box{
        padding:35px 20px;
    }

}



/*tambahan halaman program */
/* ========================================
   OFFICIAL PROGRAMS
======================================== */


#official-programs{

    background:var(--secondary);
    color:white;

    padding:90px 0;

}



.program-header{

    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;

}


.program-header span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    padding:8px 18px;

    border-radius:999px;

    margin-bottom:20px;

}



.program-header h2{

    color:white;

    font-size:
    clamp(2rem,4vw,3.2rem);

    line-height:1.2;

    margin-bottom:20px;

}



.program-header p{

    color:white;

    opacity:.9;

    max-width:750px;

    margin:auto;

}




.official-program-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

}




.official-card{

    background:white;

    color:var(--text);

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

    transition:.3s;

    display:flex;

    flex-direction:column;

}



.official-card:hover{

    transform:translateY(-8px);

}



.official-card h3{

    color:var(--primary);

    font-size:22px;

    margin-bottom:18px;

}



.official-card p{

    color:var(--text-light);

    line-height:1.7;

    flex-grow:1;

}



.program-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;


    margin-top:25px;

    padding:12px 25px;

    border-radius:999px;

    background:var(--secondary);

    color:white;

    text-decoration:none;

    transition:.3s;

    width:max-content;

}



.program-btn:hover{

    background:#b92f2f;

    color:white;

}



/* responsive */


@media(max-width:768px){


    .official-program-grid{

        grid-template-columns:1fr;

    }


    .official-card{

        padding:30px;

    }


}

/* ========================================
   IM JAPAN PAGE
======================================== */


.im-hero{

background:
url('../images/lpk2.png')
center/cover no-repeat;

}



#im-intro{

background:white;

}



.im-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}



.im-content p{

margin-bottom:20px;

color:var(--text-light);

line-height:1.8;

}



.im-box{

background:var(--secondary);

padding:40px;

border-radius:24px;

box-shadow:var(--shadow-md);

}



.im-box h3{

color:white;

margin-bottom:20px;

}



.im-box ul{

padding-left:20px;

}



.im-box li{

margin-bottom:15px;

color:white;

}




#im-benefits{

background:var(--bg);

}




.im-benefit-grid{


display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;


}




.im-card{

background:white;

padding:35px;

border-radius:24px;

box-shadow:var(--shadow-md);

transition:.3s;

}



.im-card:hover{

transform:translateY(-8px);

}



.im-card h3{

color:var(--secondary);

font-size:20px;

margin-bottom:15px;

}



.im-card p{

color:var(--text-light);

line-height:1.7;

}





@media(max-width:1024px){


.im-grid{

grid-template-columns:1fr;

}



.im-benefit-grid{

grid-template-columns:
repeat(2,1fr);

}


}




@media(max-width:768px){



.im-benefit-grid{

grid-template-columns:1fr;

}



.im-card,
.im-box{

padding:25px;

}


}

/* ========================================
   SO PAGE
======================================== */


.so-hero{

background:
url('../images/lpk2.png')
center/cover no-repeat;

}



#so-intro{

background:white;

}



#so-benefits{

background:var(--bg);

}

/* ========================================
   TOKUTEI GINOU PAGE
======================================== */


.tokutei-hero{

background:
url('../images/lpk2.png')
center/cover no-repeat;

}



#tokutei-intro{

background:white;

}



#tokutei-benefits{

background:var(--bg);

}



#tokutei-training{

background:white;

}

/* ========================================
   CAREGIVER PAGE
======================================== */


.caregiver-hero{

background:
url('../images/lpk2.png')
center/cover no-repeat;

}



#caregiver-intro{

background:white;

}



#caregiver-benefits{

background:var(--bg);

}



#caregiver-career{

background:white;

}

/* HERO LOGO */

.hero-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
justify-content: center;
}


.logo-card {
    width: 140px;
    height: 85px;

    background: #fff;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    box-shadow: 0 10px 25px rgba(0,0,0,.18);

    transition: .3s ease;
}


.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}


/* Mobile */
@media(max-width:768px){

    .hero-logos {
        justify-content: center;
    }


    .logo-card {
        width: 110px;
        height: 70px;
        border-radius: 12px;
    }

}

/*css tambahan barcode*/
.barcode-box {
    width: 190px;
    background: #fff;

    border-radius: 14px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,.18);

    margin-left: auto; /* rata kanan */
}


.barcode-box img {
    width: 150px;
    height: auto;
    display: block;
}


.barcode-box p {
    margin: 14px 0 0;
    text-align: center;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}