* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1px 30px; 
    color: #404040;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}

.logo img{
    height: auto;
    width: 200px;
    position: relative;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none !important;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none !important;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: gray;
    font-size: 17px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover{
    color: blue;
    transition: 0.3s;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  width: 165px;              /* tombol fix */
  padding: 9px 12px;
  border: 1px solid blue;
  border-radius: 6px;
  background: white;
  cursor: pointer;

  position: relative;
  right: auto;               /* penting: matiin geser */
}


.lang-btn span {
    color: blue;
    font-weight: bold;
    font-size: 14px;
    flex: 1; /* Biar teks ngisi ruang tengah */
    text-align: left;
    margin-left: 8px;
}


.dropdown-content {
  position: absolute;
  top: calc(100% + 6px);     /* jarak halus dari tombol */
  left: 0;                   /* penting: mulai dari kiri tombol */
  right: auto;               /* penting: jangan pakai right */
  width: 100%;               /* lebar dropdown sama dengan tombol */

  display: none;
  padding: 0;
  margin: 0;

  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
  z-index: 999;
  box-sizing: border-box;
}

.dropdown-content img {
    width: 1000px;
    border: 1px solid #ddd;
    display: block;
}

.dropdown.open .dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-content li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #D0DCFD;
    color: blue;
    border-color: blue; 
}


.dropdown:hover .lang-btn {
    background-color: #e4e6eb;
}

.searchbox {
    display: flex;
    align-items: center;
    border: 1px solid black;
    border-radius: 20px;
    overflow: hidden;
    padding: 5px;
}

.searchbox input {
    border: none;
    outline: none;
    padding: 10px 12px;
    width: 200px;
    height: 30px;
    font-size: 13px;
}

.floating-action {
    position: fixed;   
    bottom: 10px;      
    right: -15px;     
    z-index: 9999;   
    cursor: pointer;  
    transition: transform 0.3s ease-in-out; 
}
.floating-action img {
    width: 110px;       
    height: auto;
    display: block;    
}

.floating-action:hover {
    transform: scale(1.1);     
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); 
}

ul li a.navbaractive {
    color: blue;
}

.hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.slides {
    height: 100%;
    width: 100%;
    position: relative;
}




.nav-links li {
    list-style: none !important;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: gray;
    font-size: 17px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover{
    color: blue;
    transition: 0.3s;
}

.dropdown {
    position: relative;
    list-style: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background-color: white;
    border: 1px solid blue;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 9px;
    position: relative;

}

.lang-btn img {
    border: 1px solid blue;
    width: 50px;
    height: auto;
    border-radius: 1px;
}

.lang-btn span {
    color: blue;
    font-weight: bold;
    font-size: 14px;
    list-style: none;
    flex: 1;
    text-align: left;
    margin-left: 8px;
}

.dropdown-content img {
    border: 1px solid black;
    width: 40px;
}

.dropdown-content {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    right: -11%;
    background-color: white;
    min-width: 161px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid #ddd;
    z-index: 999;
}

.dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-content li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.2s;
    border: 1px solid transparent; 
}

.dropdown-content a:hover {
    background-color: #D0DCFD;
    color: blue;
    border-color: blue; 
}


.dropdown:hover .lang-btn {
    background-color: #e4e6eb;
}

.searchbox {
    display: flex;
    align-items: center;
    border: 1px solid black;
    border-radius: 20px;
    overflow: hidden;
    padding: 5px;
}

.searchbox input {
    border: none;
    outline: none;
    padding: 10px 12px;
    width: 200px;
    height: 30px;
    font-size: 13px;
}

.floating-action {
    position: fixed;   
    bottom: 10px;      
    right: -15px;     
    z-index: 9999;   
    cursor: pointer;  
    transition: transform 0.3s ease-in-out; 
}
.floating-action img {
    width: 110px;       
    height: auto;
    display: block;    
}

.floating-action:hover {
    transform: scale(1.1);     
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); 
}

ul li a.navbaractive {
    color: blue;
}

.fading-carousel {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeAnimation 20s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 16s; }

@keyframes fadeAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }  
    33% { opacity: 1; }  
    43% { opacity: 0; } 
    100% { opacity: 0; }
}

:root {
    --bg:#ffffff;
  --card1:#0b1630;
  --card2:#0a1226;
  --text:#eaf0ff;
  --muted:#b8c4dd;
  --accent:#1b4cff;
  --radius:18px;
  --shadow: 0 18px 40px rgba(2, 6, 23, .18);
    --total-icons: 12;
    --duration: 24s;
    --icon-width: 150px;
      --blue:#1f2dbf;
  --text:#0f172a;
  --muted:#64748b;
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --radius:16px;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
}

.icon-track {
    display: flex;
    animation: moveTrack var(--duration) linear infinite;
}

.icon-item {
    width: var(--icon-width);
    margin: 0 30px;
    flex-shrink: 0;
    filter: blur(4px);
    transform: scale(0.7);
    opacity: 0.5;
    animation: focusIcon var(--duration) linear infinite;
}

.brand-carousel {
    padding: 48px 16px;
    background: #fff;
}

.title {
    text-align: center;
    color: var(--blue);
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 800;
}

.marquee {
    position: relative;
    overflow: hidden;
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(225,225,225,0) 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(225,225,225,0) 100%);
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 59px;
    animation: scroll 22s linear infinite;
}

.marquee:hover .marquee_track {
    animation-play-state: paused;
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 32px;
}


.logo1 img{
    height: 100px;
    width: 100px;
    position: relative;
    display: inline-block;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .logo img { height: auto; max-width: 130px; }
    .marquee::before, .marquee::after {width: 70px}
}

.container {
    width: min(999px, 100% - 30px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.artikel {
    padding: 48px 0 40px;
}

.artikel_title {
    text-align: center;
    color: var(--blue);
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 800;
}

.artikel_grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Membagi: 60% Kiri (Featured), 40% Kanan (List) */
    gap: 30px;
    align-items: start;
    width: 100%;
}

.artikel_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.artikel_more {
    display: flex;
    justify-content: flex-end;
}

.more-link {
    color: blue;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s ease-in-out;
}

.more-link:hover {
    color: #001A9E;
    transition: 0.3s ease-in-out;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: 0.3s ease-out;
}

.card_link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card_media img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.card_body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 15px;
}

.card_body .card_heading {
    font-weight: 800;
    font-size: 20px;
}

.card_body .card_date {
    font-size: 10px;
}
.card--featured .card_heading{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: 800;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card--featured .card_desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 2px;
}


.card_date {
    display: inline-block;
    top: -2px;
    position: relative;
    font-size: 10px;
    color: #94a3b8;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.artikel_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card--small {
    box-shadow: 0 8px 20px rgba(2, 6, 23, .06);
}

.card_link--row {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    padding: 13px;
    gap: 11px;
}

.thumb {
    width: 112px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid var(--border);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.card_heading--sm {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 800;
    overflow: hidden;
}

.card-link .card_desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card_right .card_desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card--featured:hover {
    transform: translateY(-2%);
    box-shadow: 0px 3px 5px 8px rgba(0,0,0,0.1);
    border: 1px solid #1f2dbf;
    transition: 0.3s ease-in-out;
}

.card--small:hover {
    transform: translateY(-2%);
    transition: 0.3s ease-in-out;
    border: 1px solid #1f2dbf;
    box-shadow: 0px 3px 5px 8px rgba(0,0,0,0.1);
     display: -webkit-box;
    -webkit-line-clamp: 1;
}



@media (max-width: 900px) {
    .artikel_grid {
        grid-template-columns: 1fr;
    }
}

.container-2{
  width: min(1200px, 100% - 30px); /* biar responsif dan pas di tengah */
  margin: 0 auto;                  /* center ke layar */
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;             /* semua isi center */
}
.client_title {
    text-align: center;
    color: var(--blue);
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 800;
}

.clientimage{
  width: 100%;
  display: flex;
  justify-content: center;
}

.clientimage img{
  width: 100%;                     /* isi container */
  max-width: 1200px;               /* batas max */
  height: auto;
  display: block;                  /* hilangin gap inline */
  margin: 0 auto;    
      box-shadow: 0px 2px 4px 6px rgba(0,0,0,0.1);
    border-radius: 20px;
    width: 1200px;              /* extra center */
}

.container-yt {
    width: min(1100px, 100% - 32px);
    margin-inline: auto;
}

.yt {
    padding: 48px 0 56px;
}

.yt_title {
    text-align: center;
    color: var(--accent);
    margin: 0 0 22px;
    font-weight: 800;
    font-size: 22px;;
}

.yt-card {
    background: linear-gradient(135deg, var(--card1), var(--card2));
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 26px;
    align-items: center;
    min-height: 320px;
}

.yt-card_left {
    color: var(--text);
}

.yt-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #7dd3fc;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.yt-badge_dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #38bdf8;
    box-shadow: 0 0 0 5px rgba(56,189,248,.15);
}

.yt-card_headline {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 900;
}

.yt-card_headline span {
    color: #dbeafe;
}

.yt-card_text {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
    max-width: 54ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: red;
    border: 1px solid #3F3F3F;
    background: rgba(225,225,225,.06);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover{
  background: rgba(255,255,255,.10);
  border-color: red;
}

.btn_icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: rgba(225,225,225,.12);
    font-size: 11px;
}

.yt-card_right {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    outline: none;
}

.yt-thumb {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transform: scale(1.02)
}

.yt-card_right::after {
    content:"";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0.18), rgba(0,0,0,));
}

.play{
  position:absolute;
  inset:0;
  margin:auto;
  width:74px;
  height:74px;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  box-shadow:0 16px 32px rgba(0,0,0,.15);
  transition: .3s ease-in-out;
  pointer-events: auto;
  z-index: 5;
}

.play::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-40%, -50%);
  width:0; height:0;
  border-left:18px solid red;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}

.play:hover{
  transform: scale(1.1);
}


.site-footer{
  background:#020B40;
  color:#fff;
  padding:56px 0 18px;
}

/* GRID 4 kolom */
.site-footer .footer-wrap{
  width:92%;
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.35fr 1.25fr .85fr 1fr;
  gap:48px;
  align-items:start;
}

/* semua kolom pakai flex (bukan grid) */
.site-footer .footer-col{
  display:flex !important;
  flex-direction:column;
  gap:12px;
  min-width:0;
}

/* judul */
.site-footer .footer-title{
  font-size:24px;
  font-weight:800;
  margin:0 0 8px;
  color:#fff;
}

/* paragraf company */
.site-footer .footer-desc{
  margin:0;
  font-size:13.5px;
  line-height:1.55;
  color:#eaf0ff;
  max-width:58ch;
}

/* CONTACT */
.site-footer .footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.site-footer .footer-contact li{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:12px;
  align-items:start;
  font-size:13.5px;
  line-height:1.45;
  color:#eaf0ff;
}

.site-footer .footer-contact .ic{
  transform: translateY(2px);
}

/* NAV */
.site-footer .footer-nav{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.site-footer .footer-nav a{
  color:#fff;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  transition:.2s ease;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-nav a.active{
  color:#2f60ff;
}

/* RIGHT COLUMN */
.site-footer .footer-right{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-start;
}

/* NEWSLETTER CARD */
.site-footer .newsletter-card{
  width:100%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:22px;
  box-shadow: 0 16px 22px rgba(0,0,0,.22);
}

.site-footer .newsletter-title{
  margin:0 0 10px;
  font-size:22px;
  font-weight:900;
  color:#fff;
}

.site-footer .newsletter-sub{
  margin:0 0 14px;
  font-size:13px;
  line-height:1.45;
  color:#eaf0ff;
}

/* FORM */
.site-footer .newsletter-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.site-footer .newsletter-form input{
  height:38px;
  padding:0 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#fff;
  outline:none;
}

.site-footer .newsletter-form input::placeholder{
  color:rgba(255,255,255,.55);
}

.site-footer .newsletter-form button{
  width:90px;
  height:36px;
  border-radius:10px;
  border:none;
  background:#2f60ff;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.site-footer .newsletter-form button:hover{
  filter:brightness(1.08);
}

/* SOCIAL ICONS (SVG kamu tetap jalan) */
.site-footer .footer-social{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:10px;
}

.site-footer .footer-social a{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  transition: transform .25s ease, filter .25s ease;
}

.site-footer .footer-social a:hover{
  transform: translateY(-4px);
  filter: brightness(1.05);
}

.site-footer .footer-social svg{
  width:42px;
  height:42px;
  display:block;
}

/* BOTTOM */
.site-footer .footer-bottom{
  width:92%;
  max-width:1320px;
  margin:24px auto 0;
  text-align:center;
  color:#eaf0ff;
  font-size:13px;
}

.site-footer .footer-divider{
  width:100%;
  height:1px;
  background: rgba(255,255,255,.35);
  margin-bottom:14px;
}

/* RESPONSIVE */
@media (max-width:1100px){
  .site-footer .footer-wrap{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:650px){
  .site-footer .footer-wrap{
    grid-template-columns:1fr;
    gap:32px;
  }
}
.floating-action {
    position: fixed;   
    bottom: 10px;      
    right: -15px;     
    z-index: 9999;   
    cursor: pointer;  
    transition: transform 0.3s ease-in-out; 
}
.floating-action img {
    width: 110px;       
    height: auto;
    display: block;    
}

.floating-action:hover {
    transform: scale(1.1);     
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); 
}

.footer-list li a.active {
    color: blue;
}

.footer-list {
      list-style: none;
  display: grid;
  gap: 30px;
  text-decoration: none;
}

.footer-list li a{
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  
}
/* =========================
   MOBILE ONLY (TAMBAHAN)
   Tempel di PALING BAWAH beranda.css
========================= */

/* anti geser horizontal di HP */
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ===== MOBILE ===== */
@media (max-width: 768px){

  /* NAVBAR: padding lebih kecil + boleh wrap */
  .navbar{
    padding: 8px 14px;
    flex-wrap: wrap;
    position: relative;
  }

  /* tampilkan hamburger */
  .hamburger{ display: flex; }

  /* sembunyikan nav jadi dropdown */
  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #fff;
    flex-direction: column;
    gap: 18px;
    padding: 18px;

    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 999;
  }

  /* buka menu saat checkbox dicentang */
  .nav-toggle:checked ~ .nav-links{
    display: flex;
  }

  /* logo jangan kegedean */
  .logo img{
    width: 140px;
    height: auto;
  }

  /* searchbox biar muat */
  .searchbox input{
    width: 140px;
  }

  /* dropdown language biar gak mepet */
  .dropdown-content{
    right: 0;
    left: auto;
  }

  /* HERO / CAROUSEL: tinggi lebih kecil biar gak makan layar */
  .hero{ height: 260px; }
  .fading-carousel{ height: 320px; }

  /* marquee biar full lebar */
  .marquee{ width: 100%; }

  /* artikel grid jadi 1 kolom */
  .artikel_grid{
    grid-template-columns: 1fr;
  }

  /* client image jangan maksa 1200px */
  .clientimage img{
    width: 100%;
    max-width: 100%;
  }

  /* youtube card jadi 1 kolom */
  .yt-card{
    grid-template-columns: 1fr;
  }
  .yt-thumb{
    height: 220px;
  }

  /* footer grid jadi 1 kolom */
  .site-footer .footer-wrap{
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* HP kecil banget */
@media (max-width: 420px){
  .logo img{ width: 120px; }
  .searchbox input{ width: 120px; }
}

@media (max-width: 768px){
  .nav-toggle{ 
    display: none !important;   /* sembunyikan checkbox kotak */
  }

  .hamburger{
    display: flex !important;   /* paksa muncul */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span{
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
  }
}


