/* ----------------------------------------------------------------------------------------------
UI Primary (#020617): background navbar
                      background footer
                      header halaman
                      header tabel
                      judul section utama
UI Secondary (#1E293B) :subheader halaman
                        label form
                        judul card
                        keterangan di atas tabel
Accent (#27B376) :tombol utama
                  link teks
                  ikon aktif
                  aksi tabel (edit/detail)
                  indikator aktif
Accent Hover (#16A34A) :hover tombol
                        hover link
                        hover baris tabel
Background (#FFFFFF) :background halaman
                      background card
                      background isi tabel
Soft Background (#F1F5F9) : background section
                            baris genap tabel (zebra)
                            area filter atau info
Text Heading (#020617) :judul halaman
                        judul tabel
                        judul card
Text Body (#334155) : isi tabel
                      paragraf konten
                      isi form
Text Muted (#64748B) :catatan kecil
                      placeholder input
                      keterangan tambahan
                      info waktu/status
Border (#CBD5E1) :border tabel
                  border card
                  divider antar section
                  border input
----------------------------------------------------------------------------------------------*/

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* Transisi global untuk gambar (kecuali yang di-lock) */
img {
    transition: transform 2.5s ease-in-out;
    display: inline-block;
}

/* KUNCI MATI: Mencegah gambar di area ini bergerak/berubah */
.footer-links img, .box-header img, .step-icon img,
.svc-card img, .event-list img,.event-card img, .team-wrap img,
.contact-grid img, .swiper-wrapper img, .play-icon img,
.navbar img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* ==========================================================================
   2. SISTEM GRID & LAYOUT UTAMA
   ========================================================================== */
   /* hapus */
/* .grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 30px;
    align-items: center;
}

@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
} */

/* Container Teks (Kiri) */
.box.left h1, .box.left p, .box.left li,
.banner-text h1, .banner-text p, .table-title {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

/* Container Gambar/Video (Kanan) */
.box.right, .event-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    transform: none !important; /* Mencegah rotasi 3D JS yang bikin macet */
}

/* ==========================================================================
   3. KOMPONEN VIDEO & IMAGE WRAPPER
   ========================================================================== */
.image-wrapper {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    padding: 0 !important;
}

.main-img {
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover; /* Gambar full tanpa gepeng */
}

/* Ikon Play: Presisi di Tengah */
.play-icon img {
    width: 65px !important;
    height: auto !important;
    object-fit: contain !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 99;
    mix-blend-mode: multiply; /* Menghilangkan background putih ikon */
    opacity: 0.8;
    transition: all 0.3s ease !important;
}

.image-wrapper:hover .play-icon img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* ==========================================================================
   4. ANIMASI & STATE (JS TRIGGER)
   ========================================================================== */
/* Munculkan teks */
.text-show {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Nav Link Animation */
.nav-link {
    opacity: 0;
    transform: translateY(20px);
    transition: 2s;
}

/* YoAbsen Text */
.yoabsen-text h2, .yoabsen-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Tombol Coba Gratis (Pulse Effect) */
.button-coba {
    animation: pulseGerak 2s infinite;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

@keyframes pulseGerak {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.button-coba::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 20%; height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.5s;
    opacity: 0;
}

.button-coba:hover::after {
    left: 120%;
    opacity: 1;
}

/* ==========================================================================
   5. MODAL VIDEO POPUP
   ========================================================================== */
.modal-video {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.close-btn {
    position: absolute;
    top: -45px; right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* --- MODAL VIDEO POPUP --- */
.modal-video {
    display: none; /* Sembunyi default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

/* Rasio 16:9 agar video tidak kepotong atau gepeng */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* hapus */
/* .grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important; 
    gap: 30px;
    align-items: center;
} 

.box.right {
    display: block !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
} */


/* Pastikan event-card (pembungkus video) punya ruang */
/* Hilangkan semua padding/jarak di kotak pembungkus */
.event-card, .box.right {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important; /* Kalau garis ijo itu dari border, hapus aja */
    background: transparent !important;
}

/* Paksa gambar memenuhi area */
.image-wrapper {
    width: 100% !important;
    max-width: none !important; /* Hapus batasan lebar */
}

.image-wrapper img.main-img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover; /* Biar gambar narik sempurna memenuhi area */
}

/* Tombol Close (X) */
.close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* ==========================================================================
   6. table index
   ========================================================================== */
.table-ui {
    width: 100%;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.table-head {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #2d4739; /* Warna hijau Yosi */
    color: white;
    font-weight: bold;
}

.table-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
}

.th, .td {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
}

/* STATE AWAL UNTUK ANIMASI */
.th, .td {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* Responsive: Jadi 1 kolom di HP */
@media (max-width: 768px) {
    .table-head, .table-body {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   8. SECTION STATS (Statistik & Counter)
   ========================================================================== */
/* .stats {
    padding: 60px 0;
    background-color: #f8f9fa; 
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
} */

/* --- Sub-Judul: Styling Per Item Statistik --- */
/* .stat {
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff; 
    margin-bottom: 5px;
    display: block;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
} */

/* ==========================================================================
   9. RESPONSIVE STATS (HP & Tablet)
   ========================================================================== */
/* @media (max-width: 991px) {
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-card {
        grid-template-columns: 1fr; 
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
} */
/* ==========================================================================
   10. SECTION STEPS (Proses Kerja)
   ========================================================================== */
.steps-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    opacity: 0; /* Awalnya sembunyi untuk animasi JS */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-icon img {
    width: 40px !important;
    height: auto !important;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Hover Effect */
.step-item:hover .step-icon {
    background: #007bff;
    transform: scale(1.1);
}

.step-item:hover .step-icon img {
    filter: brightness(0) invert(1); /* Ikon jadi putih saat hover */
}

/* Responsive */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}/* ==========================================================================
   11. SECTION YOABSEN FEATURE (Kompetensi)
   ========================================================================== */
.yoabsen-feature {
    padding: 80px 0;
    background: #fdfdfd;
    text-align: center;
}

.yoabsen-feature h1 {
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0; /* Untuk animasi JS */
    transform: scale(0.9);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #007bff;
}

.feature-no {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 123, 255, 0.1); /* Angka transparan di background */
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.4s ease;
}

.feature-item:hover .feature-no {
    color: rgba(0, 123, 255, 0.2);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .yoabsen-feature h1 { font-size: 1.8rem; }
}


/* ==========================================================================
   ANIMASI CONTACT SECTION
   ========================================================================== */

/* Judul & Deskripsi Contact */
.contact-head h1, .contact-head p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Kartu Kontak (Phone & Email) */
.contact-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

/* Bagian Map */
.map-wrap {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: all 1s ease-out;
}

/* State Akhir (Triggered by JS) */
.contact-show {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}
:root{
  --accent: #27B376;
  --accent-hover: #16A34A;
  --ui-primary: #020617;
  --ui-secondary: #1E293B;
  --bg-main: #FFFFFF;
  --bg-soft: #F1F5F9;
  --text-heading: #020617;
  --text-body: #334155;
  --text-muted: #64748B;
  --border: #CBD5E1;
}

body{
  background-color: var(--bg-main);
  font-family: system-ui, Arial, sans-serif;
  color: var(--text-body);
}

h1,h2,h3,h4,h5,h6{ 
  color: var(--text-heading); 
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.container{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

section{ 
  padding: 70px 0; 
}

/* grid bagi dua kolom */
.grid-2{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background-color: var(--bg-main); 
}

.box{
  min-height: auto;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
}

.box.left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}

.box.left h1{
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-heading); 
}

.box.left p{
  margin: 0;
  max-width: 62ch;
  line-height: 1.8;
  color: var(--text-body); 
}

.box.left ul{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.box.left li{
  margin: 0;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

.box.left li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent); 
  border: 1px solid rgba(203,213,225,.9); 
  background: rgba(39,179,118,.10); 
}

.box.right{ justify-content: center; }

.box.right img{
  width: 100%;
  max-width: 420px; 
  height: auto;
  display: block;
}




/* ================================ HEADER ================================== */
header {
    position: sticky;
    top: 0;
    height: 72px;
    background-color: var(--bg-main, #ffffff);
    border-bottom: 1px solid var(--border, #eeeeee);
    z-index: 1000;
}

.box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.box-header img {
    width: 70px;
    height: auto;
    display: block;
}

.box-header ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================= */
/* LINK NAVIGASI UTAMA */
/* ============================= */

.box-header a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-body, #333333); /* NETRAL */
    transition: color 0.25s ease;
    position: relative;
    padding: 5px 0;
}

/* Underline default (hidden) */
.box-header .nav-link > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #28a745;
    transition: width 0.25s ease;
}

/* Hover = hijau */
.box-header .nav-link > li > a:hover {
    color: #28a745;
}

.box-header .nav-link > li > a:hover::after {
    width: 100%;
}

/* ACTIVE STATE = NETRAL (BUKAN HIJAU PERMANEN) */
.box-header .nav-link > li > a.active {
    color: var(--text-body, #333333);
}

.box-header .nav-link > li > a.active::after {
    width: 0;
}

/* ============================= */
/* DROPDOWN SERVICES */
/* ============================= */

.dropdown {
    position: relative;
}

/* Pastikan Services tidak hijau default */
.dropdown > a {
    color: var(--text-body, #333333) !important;
}

/* Hover Services → baru hijau */
.dropdown:hover > a {
    color: #28a745 !important;
}

/* Arrow default (NETRAL) */
.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #999;
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.25s ease, border-top-color 0.2s ease;
}

/* Hover dropdown → arrow hijau */
.dropdown:hover .arrow-down {
    border-top-color: #28a745;
    transform: rotate(180deg);
}

/* ============================= */
/* DROPDOWN MENU BOX */
/* ============================= */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    border: 1px solid #f0f0f0;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover dropdown → show menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* ============================= */
/* LINK DALAM DROPDOWN */
/* ============================= */

.dropdown-menu li a {
    color: #444444 !important;
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8fcf9;
    color: #28a745 !important;
    padding-left: 25px;
}

/* ================================ BANNER ================================== */
section.banner{
  color: #fff;
  padding: 96px 0;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(600px 300px at 85% 10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, var(--ui-primary) 0%, var(--ui-secondary) 100%);
}

.banner-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.banner-text h1{
  margin: 0 0 14px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.banner-text p{
  margin: 0 auto 22px;
  max-width: 62ch;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
}

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.button-primary{
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(2,6,23,.22);
}

.button-primary:hover{
  background: var(--accent-hover); 
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(2,6,23,.26);
}

.button-ghost{
  background: #ffffff;
  color: var(--ui-primary);
  border: 1.5px solid rgba(203,213,225,.9); 
  box-shadow: 0 10px 22px rgba(2,6,23,.16);
}

.button-ghost:hover{
  background: var(--bg-soft); 
  color: var(--accent-hover); 
  border-color: var(--border);
  transform: translateY(-1px);
}

.button-coba{
  display: inline-block;
  background: var(--accent); 
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 7px;
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.button-coba:hover{
  background: var(--accent-hover);  
}

/* ================================ TABEL HOME ================================== */
.table-section{
  padding: 80px 0;
  background: var(--bg-main);
}

.table-title{
  margin: 0 0 22px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.4px;
}

.table-ui{
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}


.table-head{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ui-primary);
}

.table-head .th{
  padding: 16px 14px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .2px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.table-head .th:last-child{ 
  border-right: 0; 
}

.table-body{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}

.table-body .td{
  padding: 18px 16px;
  color: var(--text-body);
  line-height: 1.75;
  font-size: 14.5px;

  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.table-body .td:last-child{ border-right: 0; }

/* ================================ STATS / STATISTIK ================================== */
.stats{ 
  padding: 70px 0; 
}

.stats-card{
  background: #fff;
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  border: 1px solid var(--border);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}

.stat{
  text-align: center;
  padding: 18px 14px;
  position: relative;
}

.stat:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 16px;
  right: -5px;
  width: 1px;
  height: calc(100% - 32px);
  background: var(--border); 
}

.stat-number{
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%); 
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-title{
  font-size: 16px;
  font-weight: 800;
  color: var(--text-heading); 
  margin-bottom: 8px;
}

.stat-desc{
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 28ch;
  margin: 0 auto;
}

/* ================================ STEPS / TABEL INFORMASI ================================== */
.steps-section{ padding: 60px 0 80px; }

.steps-card{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-item{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;

  box-shadow: 0 14px 40px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.step-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(2,6,23,.08);
  border-color: rgba(203,213,225,.95);
}

.step-icon{
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;

  background: rgba(39,179,118,.12);
  border: 1px solid rgba(203,213,225,.9);  
}

.step-icon img{
  width: 28px;
  height: 28px;
  /* icon hijau aman */
  filter: brightness(0) saturate(100%) invert(47%) sepia(63%) saturate(520%)
          hue-rotate(95deg) brightness(92%) contrast(92%);
}

.step-item h3{
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);  
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: normal;
}

.step-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 28ch;
}

/* =================================BRAND SUPPORT ================================ */
/* Pastikan section induknya memaksa konten ke tengah */
.support-section {
    width: 100%;
    background-color: #ffffff; /* Sesuai request tetap putih */
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Kunci tengah secara horizontal */
    justify-content: center;
}

/* Judul Support */
.support-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    width: 100%;
}

/* KOTAK SWIPER (Ukuran 20% dan Center) */
.mySwiper {
    width: 20% !important; /* Ukuran yang kamu mau */
    min-width: 280px;      /* Supaya di HP nggak terlalu gepeng */
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    overflow: visible;     /* Biar efek 3D sampingnya nggak kepotong garis imajiner */
}

/* KOTAK LOGO */
/* 1. Tambahin Perspective di container utama supaya efek 3D muncul */
.swiper {
    perspective: 1200px; 
}

/* 2. Style dasar slide (tambahin transition biar smooth pas geser) */
.swiper-slide {
    width: 100px !important;
    height: 100px !important;
    background: #fff;
    border-radius: 10px;
    display: flex !important; 
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.4s ease-out; /* Bikin pergerakan "nengok" jadi halus */
    backface-visibility: hidden;
}

/* 3. LOGO KIRI: Menghadap Kanan (Tengah) */
.swiper-slide-prev {
    transform: rotateY(35deg) scale(0.85); /* Miring ke kanan */
    z-index: 1;
    opacity: 0.7; /* Opsional: agak blur dikit biar fokus ke tengah */
}

/* 4. LOGO KANAN: Menghadap Kiri (Tengah) */
.swiper-slide-next {
    transform: rotateY(-35deg) scale(0.85); /* Miring ke kiri */
    z-index: 1;
    opacity: 0.7;
}

/* 5. LOGO TENGAH: Tetap Lurus & Menonjol */
.swiper-slide-active {
    transform: rotateY(0deg) scale(1.1); /* Lebih gede dikit */
    z-index: 10;
    opacity: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}


.swiper-slide img {
    max-width: 80%; 
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
    color: #333 !important;
    transform: scale(0.6);
}
/* ================================ FOOTER ================================== */
footer{
  background: var(--bg-soft); 
  border-top: 1px solid var(--border);
}

.footer-wrap{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-wrap p{
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links{
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a{
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-body); 
  opacity: .9;
  transition: all .2s ease;
}

.footer-links a:hover{
  opacity: 1;
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ================================ ABOUT / FEATURE ================================== */
.yoabsen-feature{
  padding: 80px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.yoabsen-feature h1{
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--text-heading);  
  letter-spacing: .2px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature-item{
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 26px 26px 22px;
  border: 1px solid var(--border); 
  box-shadow: 0 18px 45px rgba(2,6,23,.05);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%); 
  opacity: .9;
}

.feature-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(2,6,23,.10);
  border-color: rgba(203,213,225,.95);
}

.feature-no{
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 34px;
  font-weight: 900;
  color: rgba(2,6,23,.10); 
  letter-spacing: 1px;
}

.feature-item h4{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: .4px;
  padding-left: 10px;
}

.feature-item p{
  margin: 0;
  padding-left: 10px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body); 
  max-width: 62ch;
}

.feature-item p:empty,
.feature-item p{ min-height: 40px; }

/* ================================ PORTOFOLIO ================================== */
.yoabsen-wrap{
  padding: 80px 0;
  background: var(--bg-main);
}

.yoabsen-head{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 34px;
}

.yoabsen-text h2{
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-heading); 
}

.yoabsen-text p{
  margin: 0 0 16px;
  max-width: 62ch;
  line-height: 1.75;
  color: var(--text-body); 
}

.yoabsen-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 18px;
}

.yoabsen-points li{
  position: relative;
  padding-left: 26px;
  color: var(--text-body); 
  font-size: 15px;
  line-height: 1.6;
}

.yoabsen-points li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);  
  border: 1px solid rgba(203,213,225,.9);  
  background: rgba(39,179,118,.10);
}

.yoabsen-media{
  display: flex;
  justify-content: center;
}

.yoabsen-media img{
  width: 100%;
  max-width: 340px; 
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  border: 1px solid var(--border);  
}

/* ===== GRID FITUR (4 kolom) ===== */
.yoabsen-feature{ margin-top: 18px; }

.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-item{
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 14px 40px rgba(2,6,23,.05);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 4px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);  
  opacity: .85;
}

.feature-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(2,6,23,.08);
  border-color: rgba(203,213,225,.95);
}

.feature-no{
  position: absolute;
  right: 16px;
  top: 14px;
  font-weight: 900;
  font-size: 22px;
  color: rgba(2,6,23,.10);
}

.feature-item h4{
  margin: 0 0 10px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--text-heading);  
  text-transform: uppercase;
}

.feature-item p{
  margin: 0;
  padding-left: 10px;
  color: var(--text-body);  
  line-height: 1.7;
  font-size: 14px;
}

/* ================================ SERVICES ================================== */
.svc-top{ padding: 80px 0; background: var(--bg-main); }
.svc-price{ padding: 80px 0; background: var(--bg-main); }
.svc-bottom{ padding: 80px 0; background: var(--bg-main); }

.svc-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.svc-card{
  background:#fff;
  border:1px solid var(--border);  
  border-radius:18px;
  padding:22px;
  box-shadow:0 18px 45px rgba(2,6,23,.05);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.svc-card > h2{
  margin:0;
  text-align:center;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight:900;
  color: var(--text-heading);  
}

.svc-media{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);  
  background: var(--bg-soft);  
}

.svc-media img{
  width:100%;
  height: 300px; 
  object-fit:cover;
  display:block;
}

.svc-video{ height:300px; }
.svc-video iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.svc-price-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:36px;
  align-items:center;
}

.svc-price-text h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight:900;
  color: var(--text-heading);  
}

.svc-price-text p{
  margin:0 0 16px;
  line-height:1.75;
  color: var(--text-body);  
  max-width:62ch;
}

.svc-bullets{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.svc-bullets li{
  position:relative;
  padding-left:26px;
  line-height:1.6;
  color: var(--text-body);  
}

.svc-bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  color: var(--accent);  
  border:1px solid rgba(203,213,225,.9);  
  background:rgba(39,179,118,.10);
}

.svc-price-media{
  display:flex;
  justify-content:center;
}

.svc-price-media img{
  width:100%;
  max-width: 460px; 
  border-radius:18px;
  border:1px solid var(--border);  
  box-shadow:0 18px 45px rgba(2,6,23,.08);
  display:block;
}

/* ================================ CONTACT ================================== */
.contact-section{
  padding: 90px 0;
  background: var(--bg-main);
}

.contact-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.contact-head h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--text-heading);  
  letter-spacing: -.2px;
}

.contact-head p{
  margin: 0;
  color: var(--text-muted);  
  line-height: 1.7;
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto 26px;
}

.contact-card{
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 18px 45px rgba(2,6,23,.05);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(2,6,23,.08);
  border-color: rgba(203,213,225,.95);
}

.contact-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(39,179,118,.12);
  border: 1px solid rgba(203,213,225,.9);  
  margin-bottom: 2px;
}

.contact-icon img{
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(63%) saturate(520%)
          hue-rotate(95deg) brightness(92%) contrast(92%);
}

.contact-card h3{
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  color: var(--text-heading);  
}

.contact-link{
  font-size: 16px;
  font-weight: 800;
  color: var(--accent); 
  text-decoration: none;
}

.contact-link:hover{
  color: var(--accent-hover);  
  text-decoration: underline;
}

.contact-note{
  font-size: 13px;
  color: var(--text-muted);  
}

.map-wrap{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(2,6,23,.05);
}

.map-head{
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);  
}

.map-head h3{
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: var(--text-heading);  
}

.map-head p{
  margin: 0;
  color: var(--text-muted);  
  font-size: 14px;
  line-height: 1.5;
}

.map-embed{
  aspect-ratio: 16 / 7;
  background: var(--bg-soft);  
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================ TEAM ================================== */
.team-section{
  padding: 70px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border);  
}

.team-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

.team-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-heading);  
}

.team-subtitle{
  max-width: 650px;
  margin: 0 auto 36px;
  color: var(--text-muted);  
  line-height: 1.6;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card{
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 25px rgba(2,6,23,.04);
}

.team-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.team-photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--bg-soft);
}

.team-name{
  margin: 14px 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);  
}

.team-role{
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);  
}

/* ================================ EVENTS ================================== */
.event-page{
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 60px 0;
}

.event-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-heading);  
}

.event-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.event-card{
  border: 1px solid var(--border);  
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 25px rgba(2,6,23,.04);
}

.event-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.event-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-soft);
}

.event-card h3{
  font-size: 18px;
  margin: 14px 14px 6px;
  font-weight: 800;
  color: var(--text-heading);  
}

.event-card p{
  margin: 0 14px 10px;
  color: var(--text-muted);  
  font-size: 14px;
  line-height: 1.5;
}

.event-card a{
  display: inline-block;
  margin: 0 14px 16px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--accent);  
  text-decoration: none;
  color: var(--accent);  
  font-weight: 700;
  font-size: 14px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.event-card a:hover{
  background: var(--accent-hover); 
  border-color: var(--accent-hover);
  color: #fff;
}

.event-detail{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 16px;
}

.event-detail img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: var(--bg-soft);
}

.event-detail h1{
  margin: 20px 0 10px;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-heading);  
}

.event-detail .meta{
  color: var(--text-muted);  
  margin-bottom: 16px;
  font-size: 14px;
}

.event-detail p{
  color: var(--text-body);  
  line-height: 1.7;
  font-size: 15px;
}

.event-back{
  display: inline-block;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--accent);  
  text-decoration: none;
  color: var(--accent);  
  font-weight: 700;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.event-back:hover{
  background: var(--accent-hover);  
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-view-all {
    text-decoration: none;
    color: #27ae60;
    border: 1px solid #27ae60;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #27ae60;
    color: #ffffff;
}
/* ================================ RESPONSIVE ================================== */
@media (max-width: 992px){
  .event-list{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
  .event-list{ grid-template-columns: 1fr; }
  .event-title{ font-size: 26px; }
  .event-detail h1{ font-size: 26px; }
}

 
@media (max-width: 992px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-title{ font-size: 26px; }
}

 
@media (max-width: 900px){
  .svc-grid{ grid-template-columns:1fr; }
  .svc-media img, .svc-video{ height:260px; }
  .svc-price-grid{ grid-template-columns:1fr; }
  .svc-price-media{ justify-content:flex-start; }
}

 
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .map-embed{ aspect-ratio: 16 / 10; }
}

 
@media (max-width: 900px){
  .two-card-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 1000px){
  .yoabsen-head{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .yoabsen-media{ justify-content: flex-start; }
  .feature-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .yoabsen-points{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
}

 
@media (max-width: 600px){
  .footer-wrap{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 900px){
  .steps-grid{
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 900px){
  .stats-card{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .stat:not(:last-child)::after{ display: none; }
}

@media (max-width: 520px){
  .stats-card{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .table-head,
  .table-body{
    grid-template-columns: 1fr 1fr;
  }

  .table-body .td{
    border-right: 1px solid var(--border);
  }

  .table-body .td:nth-child(2n){
    border-right: 0;
  }
}

@media (max-width: 520px){
  .table-head,
  .table-body{
    grid-template-columns: 1fr;
  }

  .table-head .th,
  .table-body .td{
    border-right: 0;
    text-align: left;
  }
}

@media (max-width: 900px){
  .grid-2{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .box.right{ justify-content: flex-start; }

  .box.left h1{ font-size: 32px; }
}