* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg: #ffffff;
    --text-main: #1f2937;
    --text-soft: #6b7280;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --border: #e5e7eb;
    --shadow-soft: 0 10px 30px rgba(2, 6, 23, .08);

    --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;
    --card: #ffffff;
}

html.dark {
    --bg: #0f172a;
    --text-main: #e5e7eb;
    --text-soft: #cbd5e1;
    --surface: #111827;
    --surface-2: #1e293b;
    --border: #334155;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, .35);

    --card1: #020617;
    --card2: #0f172a;
    --text: #eaf0ff;
    --muted: #94a3b8;
    --accent: #60a5fa;
    --blue: #93c5fd;
    --card: #111827;
}

html.dark .site-footer {
    background-color: #020617;
}

html, body {
    background: var(--bg);
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--surface);
    padding: 1px 30px;
    color: var(--text-main);
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2000;
}

.logo1 img {
    height: 100px;
    width: 100px;
    position: relative;
    display: inline-block;
}

.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: var(--text-soft);
    font-size: 17px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: blue;
}

ul li a.navbaractive {
    color: blue;
    font-weight: 0;
}

html.dark .nav-links a:hover {
    color: #93c5fd;
}

html.dark ul li a.navbaractive {
    color: #93c5fd;
    font-weight: 600;
}

/* ============================================================
   DARK MODE TOGGLE
   ============================================================ */
.theme-toggle {
    border: 1px solid gray;
    background: var(--surface);
    color: var(--text-main);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 16px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.theme-toggle-dark {
    display: none;
}

html.dark .theme-toggle-light {
    display: none;
}

html.dark .theme-toggle-dark {
    display: inline;
}

/* ============================================================
   HAMBURGER — hidden di desktop
   ============================================================ */
.nav-toggle {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    z-index: 2001;
    position: relative;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1f2dbf;
    border-radius: 3px;
    transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55),
                opacity 0.3s ease;
}

.nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   DROPDOWN (language selector — desktop)
   ============================================================ */
.dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 165px;
    padding: 9px 12px;
    border: 1px solid blue;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.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;
    flex: 1;
    text-align: left;
    margin-left: 8px;
}

.dropdown-content {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    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 {
    border: 1px solid black;
    width: 40px;
}

.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;
    border: 1px solid transparent;
}

.dropdown-content a:hover {
    background-color: #D0DCFD;
    color: blue;
    border-color: blue;
}

.dropdown:hover .lang-btn {
    background-color: #e4e6eb;
}

/* ============================================================
   SEARCH BOX
   ============================================================ */
.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 WHATSAPP BUTTON
   ============================================================ */
.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));
}

/* ============================================================
   CAROUSEL / BANNER — SATU PENDEKATAN, KONSISTEN DI SEMUA UKURAN
   padding-top trick: tinggi = % dari lebar, works dengan position:absolute slides
   ============================================================ */
.carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.fading-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding-top: 44%; /* tinggi = 44% lebar layar, ubah sesuai kebutuhan */
    height: 0;        /* WAJIB agar padding-top yang menentukan tinggi */
}

.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: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

@keyframes fadeAnimation {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
}

/* ================== CLIENT ============*/
.section {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-heading);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-sub);
    margin-bottom: 16px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 3fr);
    gap: 30px;
}

.logo-card {
    background: var(--surface);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
    cursor: default;
    overflow: hidden;
    position: relative;
}

.logo-card:hover {
    border-color: #b8c8e8;
    transform: translateY(-4%);
}

.logo-card img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(15%);
    transition: transform 0.25s;
    display: block;
}

.logo-card:hover img {
    filter: grayscale(0%);
}

.fallback-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #444;
    text-align: center;
    line-height: 1.3;
}

/* ============================================================
   BRAND CAROUSEL
   ============================================================ */
.brand-carousel {
    padding: 48px 16px;
    background: var(--bg);
}

.title {
    text-align: center;
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 800;
	color: #1f2dbf;
}


.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, var(--bg) 0%, rgba(225,225,225,0) 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 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;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   ARTIKEL SECTION
   ============================================================ */
.container {
    width: min(999px, 100% - 30px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ============================================================
   ARTIKEL SECTION
   ============================================================ */
.container {
    width: min(999px, 100% - 30px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.artikel {
    padding: 48px 0 40px;
    background: var(--bg);
    color: var(--text-main);
}

.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;
    gap: 15px;
    align-items: stretch;
    width: 100%;
}

.artikel_more {
    display: flex;
    justify-content: flex-end;
}

.more-link {
    color: var(--accent);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s ease-in-out;
    font-weight: 700;
}

.more-link:hover {
    color: var(--blue);
}

/* --- Insight Cards --- */
.ins-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease;
}

.ins-card:hover {
    transform: translateY(-5px);
}

.ins-card__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}

.ins-card:hover .ins-card__img {
    transform: scale(1.08);
}

.ins-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0) 60%);
    z-index: 2;
}

.ins-card__body {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.ins-tag {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 8px;
}

.ins-card__body h3 {
    color: #f1f5f9;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ins-card--featured {
    height: 350px;
}

.ins-card--featured h3 {
    font-size: 1.4rem;
}

.ins-secondary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ins-card--small {
    height: 167.5px;
}

.ins-card--small h3 {
    font-size: 0.95rem;
}

.ins-tag--article {
  background: #2563eb; /* biru */
  color: white;
}

/* Berita (kuning) */
.ins-tag--news {
  background: #facc15; /* kuning */
  color: #1f2937;
  font-weight: 600;
}

.article-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Kiri lebih lebar */
    gap: 20px;
	margin-bottom: 50px;
    width: 100%;
}

.side-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BASE CARD */
.card-article {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-article:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 28px rgba(27, 76, 255, 0.2)!important;
}

.card-article--news:hover {
	border-color: orange;
	box-shadow: 0 12px 28px rgba(234, 88, 12, 0.2)!important;
}

.card-article .img-container {
    width: 100%;
    overflow: hidden;
    background: #eee;
}

.card-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-article:hover img {
    transform: scale(1.05);
}

.card-article .text-container {
    padding: 18px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-article .badge {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.card-article .badge--news {
	color: orange;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.card-article .title {
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-article:hover .title {
    color: var(--accent);
}

/* KIRI: BESAR (Vertical Layout) */
.card-big {
    height: 480px; /* Tinggi total kartu besar */
}

.card-big .img-container {
    height: 70%; /* Gambar full 70% bagian atas */
}

.card-big .text-container {
    height: 30%;
}

.card-big .title {
    font-size: 20px;
}

/* KANAN: KECIL (Horizontal Layout) */
.card-small {
    flex-direction: row; 
    height: 230px; /* Tinggi kartu kecil agar pas 2 tumpuk */
}

.card-small .img-container {
    width: 40%;
    height: 100%;
}

.card-small .text-container {
    width: 60%;
}

.card-small .title {
    font-size: 15px;
	
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .card-big {
        height: auto;
    }
    .card-big .img-container {
        height: 220px;
    }
    .card-small {
        flex-direction: column;
        height: auto;
    }
    .card-small .img-container {
        width: 100%;
        height: 180px;
    }
	    .card-small .text-container {
        padding: 16px;
        width: 100%;
    }
}
.artikel {
    padding: 48px 0 40px;
    background: var(--bg);
    color: var(--text-main);
}

.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;
    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: var(--accent);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s ease-in-out;
    font-weight: 700;
}

.more-link:hover {
    color: var(--blue);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: 0.3s ease-out;
}

.card_link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card_media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.card_body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 15px;
    color: var(--text-main);
}

.card_body .card_heading {
    font-weight: 800;
    font-size: 20px;
    color: var(--text-main);
}

.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-weight: 800;
}

.card--featured .card_desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 2px;
    color: var(--text-main);
}

.card_date {
    display: inline-block;
    top: -2px;
    position: relative;
    font-size: 10px;
    color: var(--muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

.thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.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;
    color: var(--text-main);
}

.card_right {
    color: var(--text-main);
}

.card_right .card_desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-main);
}

.card--featured:hover,
.card--small:hover {
    transform: translateY(-2%);
    box-shadow: 0px 3px 5px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--accent);
    transition: 0.3s ease-in-out;
}

/* ============================================================
   CLIENT SECTION
   ============================================================ */
.container-2 {
    width: min(1200px, 100% - 30px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: 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%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0px 2px 4px 6px rgba(0,0,0,0.1);
    border-radius: 20px;
}

/* ============================================================
   YOUTUBE SECTION
   ============================================================ */
.container-yt {
    width: min(1100px, 100% - 32px);
    margin-inline: auto;
}

.yt {
    padding: 48px 0 56px;
    background: var(--bg);
    color: var(--text-main);
}

.yt_title {
    text-align: center;
    color: var(--blue);
    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: 0 18px 40px rgba(2, 6, 23, .18);
    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: white;
    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,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);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #020B40;
    color: #fff;
    padding: 56px 0 18px;
}

.footer-branch {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.site-footer .footer-wrap {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr .85fr 1fr;
    gap: 48px;
    align-items: start;
}

.site-footer .footer-col {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.site-footer .footer-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
}

.site-footer .footer-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #eaf0ff;
    max-width: 58ch;
    text-align: justify;
}

.site-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: justify;
}

.site-footer .footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 14px;
    line-height: 1.45;
    color: #eaf0ff;
}

.site-footer .footer-contact .ic {
    transform: translateY(2px);
}

.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;
}

.site-footer .footer-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.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;
}

.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;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 30px;
}

.footer-list li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.footer-list li a.active {
    color: blue;
}

/* ============================================================
   GOOGLE TRANSLATE
   ============================================================ */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-logo-link { display: none !important; }
.goog-te-gadget span { display: none !important; }

#google_translate_element {
    display: inline-flex;
    align-items: center;
    position: relative;
}

#google_translate_element select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 14px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    background: var(--surface);
    color: var(--accent);
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    line-height: 1;
}

#google_translate_element::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    pointer-events: none;
    font-size: 14px;
}

/* ============================================================
   RESPONSIVE — TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 5px 20px;
    }

    .logo1 img {
        width: 80px;
        height: 80px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* JANGAN override fading-carousel di sini — biarkan padding-top dari main bekerja */

    .marquee {
        width: 100%;
    }

    .marquee::before,
    .marquee::after { width: 80px; }

    .artikel_grid {
        grid-template-columns: 1fr;
    }

    .yt-card {
        grid-template-columns: 1fr;
    }

    .yt-thumb { height: 280px; }
    .yt-card_headline { font-size: 26px; }

    .clientimage img {
        width: 100%;
        max-width: 100%;
    }

    .site-footer .footer-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ============================================================
   RESPONSIVE — breakpoint umum
   ============================================================ */
@media (max-width: 1100px) {
    .site-footer .footer-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .artikel_grid {
        grid-template-columns: 1fr;
    }

    .logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 650px) {
    .site-footer .footer-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .logo img { height: auto; max-width: 130px; }
    .marquee::before,
    .marquee::after { width: 70px; }

    .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    html, body { max-width: 100%; overflow-x: hidden; }
    img { max-width: 100%; height: auto; }

    .navbar {
        flex-wrap: nowrap;
        padding: 10px 18px;
        gap: 10px;
    }

    .logo1 img {
        width: 70px;
        height: 70px;
    }

    .hamburger {
        display: flex !important;
    }

    .theme-toggle {
        margin-left: 0;
        padding: 8px 12px;
        font-size: 15px;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 110px 28px 40px;
        gap: 0;
        transition: transform 0.35s cubic-bezier(.4,0,.2,1),
                    opacity 0.28s ease;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
        z-index: 1999;
        overflow-y: auto;
    }

    .nav-toggle:checked ~ .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        list-style: none !important;
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding: 0;
        margin: 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 15px;
        font-weight: 400;
        color: var(--text-main);
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .nav-links a.navbaractive {
        color: var(--accent);
        font-weight: 600;
    }

    .nav-links a:hover {
        color: var(--accent);
        padding-left: 4px;
    }

    .nav-links li:has(#google_translate_element) {
        border-bottom: none;
        padding: 24px 0 8px;
    }

    #google_translate_element {
        width: 100%;
        justify-content: flex-start;
    }

    #google_translate_element select {
        width: 100%;
        padding: 12px 40px 12px 14px;
        border: 1.5px solid var(--accent);
        border-radius: 10px;
        color: var(--accent);
        font-weight: 700;
        font-size: 14px;
        background: var(--surface);
    }

    /* JANGAN override fading-carousel di sini — biarkan padding-top dari main bekerja */

    .marquee { width: 100%; }

    .artikel_grid { grid-template-columns: 1fr; }

    .clientimage img {
        width: 100%;
        max-width: 100%;
    }

    .yt-card { grid-template-columns: 1fr; }
    .yt-thumb { height: 220px; }

    .site-footer .footer-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 420px) {
    .logo1 img { width: 60px; height: 60px; }
    .searchbox input { width: 120px; }
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
}