:root {
  /* Font family */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Line height */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  color: #111827;
}

h1 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: var(--lh-tight);
}

h2 {
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.25;
}

h3 {
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.3;
}

h4 {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.35;
}

h5 {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.4;
}

h6 {
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.45;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: var(--lh-relaxed);
  color: #374151;
}

p {
  margin-bottom: 1em;
}

.text-lg {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
}

.text-sm {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.5;
}

.text-xs {
  font-size: 12px;
  line-height: 1.4;
}
.text-white{
  color: #fff;
}
/* ============================= */
/* SECTION TYPOGRAPHY SKIJ */
/* ============================= */

.section-title {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.25;
}

.section-subtitle {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}

.section-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}

/* Label kecil di atas heading */
.text-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6B7280;
}

/* Image tetap rapi */
.img-skij-style {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}


.container,
.container-fluid {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
[class*="col"] {
  padding-right: 12px;
  padding-left: 12px;
  flex-shrink: 0;
}
.mt-sm { margin-top: clamp(8px, 2vw, 16px); }
.mt-md { margin-top: clamp(16px, 3vw, 32px); }
.mt-lg { margin-top: clamp(24px, 4vw, 64px); }

.mb-sm { margin-bottom: clamp(8px, 2vw, 16px); }
.mb-md { margin-bottom: clamp(16px, 3vw, 32px); }
.mb-lg { margin-bottom: clamp(24px, 4vw, 64px); }

.my-sm {
  margin-top: clamp(8px, 2vw, 16px);
  margin-bottom: clamp(8px, 2vw, 16px);
}

.my-md {
  margin-top: clamp(16px, 3vw, 32px);
  margin-bottom: clamp(16px, 3vw, 32px);
}

.my-lg {
  margin-top: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(24px, 4vw, 64px);
}
/* ============================= */
/* PROGRAM LIST SKIJ */
/* ============================= */

.program-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 3vw, 24px);
}

.program-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  transition: all 0.25s ease;
}

.program-list li:hover {
  border-color: #3550AF;
  color: #3550AF;
  transform: translateY(-4px);
}

/* ============================= */
/* ICON STYLE */
/* ============================= */

.program-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 80, 175, 0.08);
  flex-shrink: 0;
}

.skij-icon {
  width: 22px;
  height: 22px;
  color: #3550AF;
}

/* ============================= */
/* WARNA PER PROGRAM */
/* ============================= */

.skij-mandarin .skij-icon { color: #EF4444; }
.skij-english .skij-icon  { color: #2563EB; }
.skij-dance .skij-icon    { color: #EC4899; }
.skij-art .skij-icon      { color: #F59E0B; }
.skij-computer .skij-icon { color: #10B981; }
.skij-worship .skij-icon { color: #1E3A8A; }

/* ============================= */
/* INFO CARD (VISI & MISI) */
/* ============================= */

.info-card {
  background: #f9fafb;
  padding: 24px;
  border-radius: 16px;
}

.info-title {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ============================= */
/* PROGRAM CARD */
/* ============================= */

.program-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 16px);
  transition: all 0.25s ease;
}

.program-card:hover {
  border-color: #3550AF;
  color: #3550AF;
  transform: translateY(-4px);
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgb(255, 255, 255); /* transparan 70% */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px clamp(16px, 6vw, 200px);
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85); /* opacity berkurang */
  backdrop-filter: blur(8px);            /* efek glass */
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Logo */
.logo-container a{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  gap: clamp(8px, 2vw, 16px);
}

.logo-img {
    width: clamp(48px, 8vw, 100px);
  height: clamp(48px, 8vw, 100px);
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
    font-size: clamp(12px, 1vw, 16px);
  text-transform: uppercase;
}

.logo-text .bold {
  font-weight: 700;
}

.logo-text .small {
  font-size: clamp(10px, 1.8vw, 12px);
  color: #000000;
}


/* Nav menu center */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
   transition: color 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active  {
  color: #3550AF;
}
.nav-dropdown.active > button {
  color: #3550AF;
  font-weight: 600;
}

/* Hamburger button */
.menu-btn {
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

/* ANIMASI SAAT AKTIF */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}


/* Hero section */
.hero {
  position: relative;
    height: 100vh;            /* full layar */
  min-height: 100vh;        
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* kolom kiri */
.img-content-skij {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.hero-bg {
  min-height: 100vh; 
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}
.hero-bg-02 {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.hero-bg.active {
  opacity: 1;
}
.hero-bg-02.active {
  opacity: 1;
}

.hero-about .hero-bg {
  background-image: url('../img/hero/hero-about.jpg');
}
.hero-tk .hero-bg {
  background-image: url('../img/hero/hero-tk.jpg');
}
.hero-sd .hero-bg {
  background-image: url('../img/hero/hero-sd-01.jpg');
}
.hero-smp .hero-bg {
  background-image: url('../img/hero/hero-smp.jpg');
}
.hero-sma .hero-bg {
  background-image: url('../img/hero/hero-sma.jpg');
}
.hero-berita .hero-bg-02{
  background-image: url('../img/hero/hero-berita-desktop.jpg');
}
.hero-saran .hero-bg-02{
  background-image: url('../img/hero/hero-saran-desktop.png');
}


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

.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-justify {
  text-align: justify;
}
.hero-content, .about-content, .pmb-content  {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.btn-berita-wa-skij {
  position: absolute;
  bottom: 250px;          /* lebih aman daripada top */
  left: 75%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 900px;
  text-align: left;
  padding: 0 20px;
}

.btn-berita-wa-skij a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(20px, 4vw, 42px);
  text-decoration: none;
  line-height: 1.2;      /* ❗ jangan 0 */
  color: #fff;
}
.btn-berita-wa-skij {
  animation: fadeInOut 1s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%   { opacity: 0.1; }
  50%  { opacity: 1; }
  100% { opacity: 0.1; }
}

.icon-wa-berita {
  width: clamp(28px, 5vw, 50px);
  height: auto;
}


.hero-subtitle {
  font-size: clamp(25px, 2vw, 18px);
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-desc {
  font-size: clamp(25px, 2.2vw, 20px);
  line-height: 1.6;
  opacity: 0.9;
}

.btn {
  padding: 12px 28px;
  background: #3550AF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}


.content {
  padding: 100px 20px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}
.pmb-skij{
  padding: 20px clamp(16px, 5vw, 50px);
  background: url('../../assets/img/bg/bg-pmb-desktop-skij.webp');
   background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}
.img-skij-style {
  max-width: 100%;
  height: auto;
  display: block;
}
.center-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-overlay {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.img-skij-style {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Text di atas gambar */
.overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;


  font-size: 1.4rem; /* MOBILE default */
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #fff;
  /* background: rgba(0, 0, 0, 0.35); */
  text-align: center;

  transition: background 0.3s ease;
}

/* Hover effect (optional) */
.img-overlay:hover .overlay-text {
  background: rgba(0, 0, 0, 0.55);
}

.about-skij{
  padding: 20px clamp(16px, 5vw, 50px);
  background: url('../../assets/img/bg/bg-about-us-homepage.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #fff;
}
.pmb-skij h3, .about-skij h3 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pmb-skij h2, .about-skij h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-skij-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}
.about-skij::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #141489e5;
}

.text-secondary{
  color: #F5F01B;
}

.visi-misi {
  position: relative;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.visi-misi > * {
  position: relative;
  z-index: 1;
}


.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
 padding: 0px 100px;
}

.visi-misi-container {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.visi, .misi {
  color: #000;
  padding: 30px;
  border-radius: 12px;
}

.tema-yayasan {
  color: #000;
  padding: 40px;
  border-radius: 12px;
}

.visi h3, .misi h3, .tema-yayasan h3 {
  color: #3550AF;
  margin-bottom: 16px;
}

.misi ul {
  list-style: disc inside;
  text-align: left;
}

/* Navigation buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3550AF;
  color: white;
  border: none;
  /* width: 70px; */
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  opacity: 0.9;
}

.slider-btn.prev { left: 100px; }
.slider-btn.next { right: 100px; }

.slider-btn:hover { opacity: 1; }

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 10px;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots span.active { background: #3550AF; }
/* Visi & Misi headings */
.visi-misi .visi h3,
.visi-misi .misi h3,
.visi-misi .tema-yayasan h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  margin-bottom: 16px;
  color: #3550AF;
}

/* Visi paragraph */
.visi-misi .visi p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

/* Misi list */
.visi-misi .misi p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}
.visi-misi .misi ul {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

/* Tema Yayasan text */
.visi-misi .tema-yayasan p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }
.fw-light { font-weight: 300; }
.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }
.fw-light { font-weight: 300; }


/* Semua sisi */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Horizontal */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* Vertical */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Sisi spesifik */
.pt-0 { padding-top: 0; }   .pt-1 { padding-top: 0.25rem; } /* … dst */
.pb-0 { padding-bottom: 0; } .pb-1 { padding-bottom: 0.25rem; }
.pl-0 { padding-left: 0; }  .pl-1 { padding-left: 0.25rem; }
.pr-0 { padding-right: 0; } .pr-1 { padding-right: 0.25rem; }
.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: swipe 18s linear infinite;
}

.testimonial-card {
  min-width: 300px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial-card h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Auto swipe animation */
@keyframes swipe {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer-skij {
  background: #0f172a;
  color: #fff;
  padding: 60px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;

  /* MOBILE default */
  grid-template-columns: 1fr;
}


.timeline-wrapper {
  padding: 10px 20px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

/* item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* kiri */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

/* kanan */
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* content */
.timeline-content {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 16px;
}

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

/* dot */
.timeline-item .dot {
  position: absolute;
  top: 32px;
  width: 14px;
  height: 14px;
  background: #f9fafb;
  border: 2px solid #60a5fa;
  border-radius: 50%;
  z-index: 2;
}

/* dot position */
.timeline-item:nth-child(odd) .dot {
  right: -7px;
}

.timeline-item:nth-child(even) .dot {
  left: -7px;
}

/* show animation */
.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.base-template {
  width: 100%;
  overflow: hidden;
}

.slider-section {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* background */
.slider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.05);
  transition: background-image 0.6s ease;
}

.slider-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.slider-center {
  position: relative;
  width: 420px;
  max-width: 90vw;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

/* IMAGE */
.slider-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY HITAM */
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTENT DI DEPAN */
.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;

  padding: 10px 18px;
  text-align: left;

  /* efek gradient agar teks kebaca */
  background: linear-gradient(
    to top,
    rgba(0,0,0,1),
    rgba(0,0,0,0)
  );
}

.slider-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.slider-content p {
  font-size: 18px;
  color: #e5e7eb;
}
/* buttons */
.slider-btn {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 24px;
  cursor: pointer;

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

  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn svg {
  display: block;
}
.slider-btn:hover svg {
  transform: scale(1.15);
  transition: transform 0.2s ease;
}
/* ============================= */
/* DROPDOWN AKADEMIK */
/* ============================= */

.nav-dropdown {
  position: relative;
}

/* tombol akademik */
.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* icon */
.dropdown-toggle .chevron {
  font-size: 14px;
  transition: transform 0.3s ease;
}


/* submenu */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 16px;
  color: #000;
}

.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #3550AF;
}
/* ICON CHEVRON MODERN */
.chevron-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

/* rotate saat aktif */
.nav-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

/* mobile open */
.nav-dropdown.open .chevron-icon {
  transform: rotate(180deg);
}
.skij-icon {
  width: 1.35em;
  height: 1.35em;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  flex-shrink: 0;
  transition: transform .25s ease, color .25s ease;
}

/* layout */
.skij-edu a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: #111827;
}
/* TK */
.skij-edu .edu-tk .skij-icon {
  color: #F5C518; /* kuning ceria */
}

/* SD */
.skij-edu .edu-sd .skij-icon {
  color: #3550AF; /* biru SKIJ */
}

/* SMP */
.skij-edu .edu-smp .skij-icon {
  color: #16A34A; /* hijau */
}

/* SMA */
.skij-edu .edu-sma .skij-icon {
  color: #7C3AED; /* ungu */
}

/* Hover universal */
.skij-edu a:hover {
  color: #3550AF;
}

.skij-edu a:hover .skij-icon {
  color: #3550AF;
  transform: scale(1.2);
}
.news-section {
  background: #f8fafc;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 50px;
  color: #3550AF;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.news-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3550AF;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-badge.event {
  background: #F59E0B;
}

/* CONTENT */
.news-content {
  padding: 24px;
}

.news-date {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
  margin-bottom: 8px;
}

.news-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.news-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 16px;
}

/* LINK */
.news-link {
  font-weight: 600;
  color: #3550AF;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}
/* Kolom umum */
.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #facc15;
}

/* Logo */
.footer-logo {
  max-width: 100px;
  margin-bottom: 16px;
}

/* Alamat */
.footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Sosial Media */
.footer-social {
  display: flex;
  gap: 12px;
  /* justify-content: center; */
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Kontak */
.footer-contact li {
 display: flex;
  align-items: center;   /* sejajar vertikal */
  
  gap: 8px;              
}
.footer-contact .icon {
  width: 18px;
  height: 18px;
  fill: currentColor; /* mengikuti warna teks */
  flex-shrink: 0;
}

/* Bottom */
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
}
.news-main img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tablet and Mobile */
@media (min-width: 576px) {
  
  .container {
    max-width: 540px;
  } 
     .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social{
    justify-content: center;
  }

 
  .p-sm-0 { padding: 0; }
  .p-sm-1 { padding: 0.25rem; }
  .p-sm-2 { padding: 0.5rem; }
  .p-sm-3 { padding: 1rem; }
  .p-sm-4 { padding: 1.5rem; }
  .p-sm-5 { padding: 3rem; }

  .px-sm-3 { padding-left: 1rem; padding-right: 1rem; }
  .py-sm-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

@media (max-width: 768px) {
.hero-about .hero-bg {
  background-image: url('../img/hero/mobile/hero-about-mobile.webp');
}
.hero-tk .hero-bg {
  background-image: url('../img/hero/mobile/hero-tk-mobile-skij.webp');
}
.hero-sd .hero-bg {
  background-image: url('../img/hero/mobile/hero-sd-mobile-skij.webp');
}
.hero-smp .hero-bg {
  background-image: url('../img/hero/mobile/hero-smp-mobile-skij.webp');
}
.hero-sma .hero-bg {
  background-image: url('../img/hero/mobile/hero-sma-mobile-skij.webp');
}
.pmb-skij{
  background: url('../../assets/img/bg/bg-pmb-mobile-skij.webp');
}
  .visi-misi {
    background-image: url('../../assets/img/bg/visi-misi-mobile.webp');
    min-height: 85vh;
    padding: 48px 20px 64px;
    background-position: center top;
  }

  .visi-misi-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact li {
justify-content: center;         
}
    .btn-berita-wa-skij {
    bottom: 20px;
    left: 50%;
    text-align: center;
  }

  .btn-berita-wa-skij a {
    justify-content: center;
    font-size: clamp(18px, 5vw, 28px);
  }
  .hero-berita .hero-bg-02 {
  background-image: url('../img/hero/hero-berita-mobile.jpg');
}
  .hero-saran .hero-bg-02 {
  background-image: url('../img/hero/hero-saran-mobile.png');
} 
.skij-icon {
    width: 1.5em;
    height: 1.5em;
  }
  .slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
   .slider-content h2 {
    font-size: 24px;
  }
    .timeline::before {
    left: 20px;
  }
  .timeline-item:nth-child(even) .dot {
  left: 14px;
}

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left;
    left: 0 !important;
  }

  .timeline-item .dot {
    left: 14px;
    right: auto;
  }
    .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social{
    justify-content: center;
  }

    .testimonial-card {
    min-width: 85vw;
  }
   .overlay-text {
    font-size: 1.6rem;
  }
    .pmb-skij h3, .about-skij h3 {
    font-size: 1.1rem;
  }

  .pmb-skij h2, .about-skij h2 {
    font-size: 2rem;
  }

  .about-skij-desc {
    font-size: 1rem;
    line-height: 1.8;
  }
  .container {
    max-width: 720px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }


  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
    .navbar .btn {
    display: none;
  }
  .nav-links li {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav-links.show {
    max-height: 300px;
  }
  .p-md-0 { padding: 0; }
  .p-md-1 { padding: 0.25rem; }
  .p-md-2 { padding: 0.5rem; }
  .p-md-3 { padding: 1rem; }
  .p-md-4 { padding: 1.5rem; }
  .p-md-5 { padding: 3rem; }

  .px-md-3 { padding-left: 1rem; padding-right: 1rem; }
  .py-md-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .logo-container {
    gap: 6px;
  }

  .logo-text {
    line-height: 1.2;
  }
}

@media (max-width: 992px) {
.dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 300px;
    padding: 8px 0;
  }

  .nav-dropdown.open .chevron {
    transform: rotate(180deg);
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }
  .overlay-text {
    font-size: 1.8rem;
  }
   .pmb-skij h3, .about-skij h3 {
    font-size: 1.2rem;
  }

  .pmb-skij h2, .about-skij h2 {
    font-size: 2.4rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .about-skij-desc {
    font-size: 1.05rem;
    padding: 2.5rem;
  }
   .container {
    max-width: 960px;
  }
    .p-lg-0 { padding: 0; }
  .p-lg-1 { padding: 0.25rem; }
  .p-lg-2 { padding: 0.5rem; }
  .p-lg-3 { padding: 1rem; }
  .p-lg-4 { padding: 1.5rem; }
  .p-lg-5 { padding: 3rem; }
    .visi-misi-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visi, .misi, .tema-yayasan { padding: 20px; }

  /* .navbar {
    grid-template-columns: auto auto;
  } */

  .navbar .btn {
    display: none; /* hide Daftar Sekarang */
  }

  .menu-btn {
    display: block;
    color: #000; /* FIX: supaya kelihatan */
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links li {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .nav-links a {
    font-size: 20px;
  }

  /* Saat hamburger diklik */
  .nav-links.active {
    max-height: 400px;
  }
  .menu-btn {
    display: block;
  }
  .slide {
    padding: 0px 50px;
    }
}
@media (min-width: 1200px) {
    .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

    .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }

  .nav-dropdown:hover .chevron {
    transform: rotate(180deg);
  }
     .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
    text-align: left;
  }

  .footer-social{
    justify-content: start;
  }
   .overlay-text {
    font-size: 2.6rem;
  }
   .pmb-skij h2, .about-skij h2 {
    font-size: 2.8rem;
  }

  .about-skij-desc {
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .container {
    max-width: 1140px;
  }
    .p-xl-0 { padding: 0; }
  .p-xl-1 { padding: 0.25rem; }
  .p-xl-2 { padding: 0.5rem; }
  .p-xl-3 { padding: 1rem; }
  .p-xl-4 { padding: 1.5rem; }
  .p-xl-5 { padding: 3rem; }
}
@media (min-width: 1400px) {
    .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .container { max-width: 1320px; }
 .p-xxl-0 { padding: 0; }
  .p-xxl-1 { padding: 0.25rem; }
  .p-xxl-2 { padding: 0.5rem; }
  .p-xxl-3 { padding: 1rem; }
  .p-xxl-4 { padding: 1.5rem; }
  .p-xxl-5 { padding: 3rem; }
}

/* Default mobile-first: 1 kolom */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col {
  width: 100%;  /* mobile: 1 kolom */
  padding-left: 12px;
  padding-right: 12px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Small ≥576px */
@media (min-width: 576px) {
  .col-sm-1 { width: 8.333333%; }
  .col-sm-2 { width: 16.666667%; }
  .col-sm-3 { width: 25%; }
  .col-sm-4 { width: 33.333333%; }
  .col-sm-5 { width: 41.666667%; }
  .col-sm-6 { width: 50%; }
  .col-sm-7 { width: 58.333333%; }
  .col-sm-8 { width: 66.666667%; }
  .col-sm-9 { width: 75%; }
  .col-sm-10 { width: 83.333333%; }
  .col-sm-11 { width: 91.666667%; }
  .col-sm-12 { width: 100%; }
}

/* Medium ≥768px */
@media (min-width: 768px) {
  .col-md-1 { width: 8.333333%; }
  .col-md-2 { width: 16.666667%; }
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-5 { width: 41.666667%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-9 { width: 75%; }
  .col-md-10 { width: 83.333333%; }
  .col-md-11 { width: 91.666667%; }
  .col-md-12 { width: 100%; }
}

/* Large ≥992px */
@media (min-width: 992px) {
  .col-lg-1 { width: 8.333333%; }
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .col-lg-11 { width: 91.666667%; }
  .col-lg-12 { width: 100%; }
}

@media (min-width: 769px) {
  .visi-misi {
    background-image: url('../../assets/img/bg/bg-visi-misi-desktop.webp');
    min-height: 530px;
    padding: 40px clamp(32px, 6vw, 120px);
    background-position: center center;
  }

  .slider-wrapper {
    max-width: 1440px;
    margin: 0 auto;
  }

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