 /* Reset and base */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      background: #ffffff;
      color: #222222;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    img {
      max-width: 100%;
      display: block;
      height: auto;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 12px;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-weight: 700;
      line-height: 1.2;
    }
    p {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #444444;
    }
    button {
      font-family: inherit;
      cursor: pointer;
    }

    /* Header Styles */
    header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      position: relative;
    }

    .logo img {
      height: 40px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .logo:hover img {
      transform: scale(1.05);
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-desktop a {
      text-decoration: none;
      color: #374151;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
    }

    .nav-desktop a:hover {
      color: #4F46E5;
    }

    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #4F46E5, #4F46E5);
      transition: width 0.3s ease;
    }

    .nav-desktop a:hover::after {
      width: 100%;
    }

    /* Dropdown Styles */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .dropdown-toggle::after {
      display: none !important;
    }

    .dropdown-arrow {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 200px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.1);
      overflow: hidden;
        display: none;

    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
        display: block;

    }

    .dropdown-menu a {
      display: block;
      padding: 0.75rem 1.25rem;
      color: #374151;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu a:last-child {
      border-bottom: none;
    }

    .dropdown-menu a:hover {
      background: linear-gradient(90deg, #4F46E5, #4F46E5);
      color: white;
    }

    /* User Icon */
    .user-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: white;
      transition: all 0.3s ease;
    }
    /* Language Selector */
    .language-select {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    .language-select:hover {
      background: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .language-select img {
      width: 20px;
      height: 15px;
      border-radius: 2px;
    }

    .language-text {
      font-size: 0.9rem;
      font-weight:700;
      color: #374151;
    }

    .language-arrow {
      font-size: 1.2rem;
      color: #6B7280;
      transition: transform 0.3s ease;
    }

    .language-select:hover .language-arrow {
      transform: rotate(180deg);
    }

    .language-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      min-width: 150px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-top: 0.5rem;
    }

    .language-select:hover .language-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .language-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .language-option:last-child {
      border-bottom: none;
    }

    .language-option:hover {
      background: linear-gradient(90deg, #4F46E5, #4F46E5);
      color: white;
    }

    .language-option.active {
      background: rgba(79, 70, 229, 0.1);
      color: #4F46E5;
    }

    .language-option img {
      width: 20px;
      height: 15px;
      border-radius: 2px;
    }

    /* Mobile Toggle */
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .mobile-toggle:hover {
      background: rgba(79, 70, 229, 0.1);
      color: #4F46E5;
    }

    .mobile-toggle .material-icons {
      font-size: 1.5rem;
    }

    /* Mobile Navigation */
    .nav-mobile {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
        z-index: 9999 !important;
    }

    .nav-mobile.active {
      max-height: none;
    }

    .nav-mobile a {
      display: block;
      padding: 1rem 1.5rem;
      color: #374151;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
/* 
    .nav-mobile a:hover {
      background: linear-gradient(90deg, #4F46E5, #7C3AED);
      color: white;
    } */

    .nav-mobile .dropdown {
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-mobile .dropdown-toggle {
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #374151;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      width: 100%;
    }

    .nav-mobile .dropdown-toggle:hover {
      background: rgba(79, 70, 229, 0.1);
      color: #4F46E5; 
    }

    .nav-mobile .dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      border-radius: 0;
      background: rgba(0, 0, 0, 0.02);
      opacity: 1;
      visibility: visible;
      transform: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

.nav-mobile .dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  position: relative;
  display: block !important;
    max-height: 1000px; /* Tambahkan ini */

}

    .nav-mobile .dropdown-menu a {
      padding-left: 2.5rem;
      font-size: 0.9rem;
    }


    /* Main Content */
    .main-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
      min-height: 60vh;
    }

    .hero-section {
      text-align: center;
      padding: 4rem 0;
      color: white;
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-section p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header-container {
        padding: 1rem;
      }

      .nav-desktop {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .nav-mobile {
        display: block;
      }

      .language-select {
        margin-right: 0.5rem;
      }

      .language-text {
        display: none;
      }

      .hero-section h1 {
        font-size: 2rem;
      }

      .hero-section p {
        font-size: 1rem;
      }

      .main-content {
        padding: 1rem;
      }
 }

    @media (max-width: 480px) {
      .header-container {
        padding: 0.75rem;
      }

      .logo img {
        height: 32px;
      }

      .hero-section {
        padding: 2rem 0;
      }

      .hero-section h1 {
        font-size: 1.75rem;
      }
    }

    /* Animation Classes */
    .fade-in {
      animation: fadeIn 0.6s ease-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slide-up {
      animation: slideUp 0.6s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
/* ---------- HERO / SLIDER ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 120px;
  max-height: auto;
  overflow: hidden;
  margin-bottom: -8px;
}

/* ---------- BASE SLIDE STYLES ---------- */
.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: left 0.7s ease, opacity 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background-size: contain; /* Gambar tidak akan di-crop */
    background-position: center center;
    background-repeat: no-repeat;
}

.slide.active {
  left: 0;
  opacity: 1;
}

/* ---------- SLIDE WITH IMAGE ELEMENT ---------- */
.slide-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ---------- HERO BANNER WITH BACKGROUND IMAGE ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 440px;
  max-height: 480px;
  overflow: hidden;
  margin-bottom: -8px;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-slide h2 {
  font-size: 2rem;
  max-width: 560px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 2;
}

.banner-slide p {
  color: #f0f0f0;
  font-size: 1rem;
  max-width: 600px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

/* Content wrapper untuk banner */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Content overlay - dapat digunakan untuk kedua jenis slide */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.slide h2 {
  font-size: 2rem;
  max-width: 560px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.slide p {
  color: #f0f0f0;
  font-size: 1rem;
  max-width: 600px; /* Diperbaiki dari 60px */
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- NAVIGATION BUTTONS ---------- */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    box-sizing: border-box;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
}
.slider-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    outline: none;
    backdrop-filter: blur(10px);
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.slider-nav button:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.slider-nav button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Modern SVG arrows with perfect centering */
.prev svg,
.next svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: #333333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Positioning adjustments */
.slider-nav .prev {
    left: 0;
}

.slider-nav .next {
    right: 0;
}

/* Add subtle animation for better UX */
@keyframes slideNavFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to {
        opacity: 0.9;
        transform: translateY(-50%) scale(1);
    }
}

.slider-nav {
    animation: slideNavFadeIn 0.5s ease-out;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
    .slider-nav {
        padding: 0 1rem;
    }
      .hero-banner {
    height: 125px;
      margin-bottom: -10px;

  }


    .slider-nav button {
        width: 36px;
        height: 36px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 
            0 3px 10px rgba(0, 0, 0, 0.2),
            0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .slider-nav button:hover {
        transform: scale(1.05);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.25),
            0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .prev svg,
    .next svg {
        width: 14px;
        height: 14px;
        color: #333333;
    }

    .slide h2,
    .banner-slide h2 {
        font-size: 1.5rem;
    }

    .slide-content,
    .banner-content {
        padding: 1.5rem;
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .slider-nav {
        padding: 0 0.5rem;
    }

    .slider-nav button {
        width: 34px;
        height: 34px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.95) !important;
        opacity: 0.95;
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.2),
            0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .prev svg,
    .next svg {
        width: 12px;
        height: 12px;
        color: #222222;
    }
}

/* Mobile - Tetap tampilkan navigation tapi dengan ukuran lebih kecil */
@media (max-width: 480px) {
    .slider-nav {
        padding: 0 0.25rem;
        /* TIDAK lagi display: none; */
    }

    .slider-nav button {
        width: 32px;
        height: 32px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1.5px solid rgba(0, 0, 0, 0.15);
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.25),
            0 1px 3px rgba(0, 0, 0, 0.15);
        opacity: 0.95;
    }

    .slider-nav button:hover,
    .slider-nav button:focus {
        background: rgba(255, 255, 255, 1) !important;
        opacity: 1;
        transform: scale(1.05);
    }

    .prev svg,
    .next svg {
        width: 12px;
        height: 12px;
        color: #111111;
    }
}

/* For screens larger than tablet */
@media (min-width: 1024px) {
    .slider-nav {
        padding: 0 2rem;
    }

    .slider-nav button {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .prev svg,
    .next svg {
        width: 18px;
        height: 18px;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .slider-nav button {
        background: rgba(0, 0, 0, 0.8) !important;
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .slider-nav button:hover,
    .slider-nav button:focus {
        background: rgba(0, 0, 0, 0.9) !important;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .prev svg,
    .next svg {
        color: #ffffff;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .slider-nav button {
        background: rgba(255, 255, 255, 1) !important;
        border: 2px solid #000000;
        color: #000000;
    }

    .slider-nav button:hover,
    .slider-nav button:focus {
        background: rgba(0, 0, 0, 1) !important;
        color: #ffffff;
    }

    .prev svg,
    .next svg {
        color: inherit;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .slider-nav button {
        transition: none;
    }

    .slider-nav button:hover {
        transform: none;
    }

    .slider-nav {
        animation: none;
    }
}

/* Untuk layar sangat kecil - buat tombol lebih mudah disentuh */
@media (max-width: 360px) {
    .slider-nav {
        padding: 0;
    }

    .slider-nav button {
        width: 30px;
        height: 30px;
        /* Tambahkan area sentuh yang lebih besar tanpa menambah ukuran visual */
        position: relative;
    }

    .slider-nav button::after {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        /* Area sentuh invisible yang lebih besar */
    }

    .prev svg,
    .next svg {
        width: 10px;
        height: 10px;
    }
}    /* ---------- SECTION: Mulai perjalanan Anda bersama Kami ---------- */
    section.intro {
      padding: 64px 0 48px;
      text-align: center;
    }
    section.intro > h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    section.intro > p {
      font-weight: 400;
      font-size: 1rem;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
      color: #444444;
    }
    .cards-row {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      max-width: 1080px;
      margin-left: auto;
      margin-right: auto;
    }
    .card-square {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 5px 12px rgba(0 0 0 / 0.1);
      transition: transform 0.3s ease;
      height: 220px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.25rem;
      text-align: center;
      padding: 20px;
      background-position: center;
      background-size: cover;
      box-shadow:
      0 8px 20px rgb(0 0 0 / 0.25);
    }
    .card-square::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 90%);
      z-index: 0;
      transition: background 0.3s ease;
    }
    .card-square > span {
      position: relative;
      z-index: 1;
    }
    .card-square:hover,
    .card-square:focus {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0 0 0 / 0.4);
    }

     /* ---------- SECTION: Apa yang Kami Lakukan ---------- */
        section.what-we-do {
            padding: 72px 16px 64px;
            background: #ffffff;
            transition: background-color 0.4s ease;
        }
        section.what-we-do > h2 {
            font-size: 1.75rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 8px;
            color: #222222;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        section.what-we-do > p {
            font-weight: 400;
            font-size: 1rem;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            color: #4a4a4a;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        section.what-we-do:hover > p {
            transform: translateY(-1px);
            color: #333333;
        }

        .what-we-do-list {
            max-width: 900px;
            margin: 48px auto 0;
            display: grid;
            gap: 28px;
        }

        .what-we-do-item {
            border-radius: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            padding: 24px 24px 24px 24px;
            align-items: center;
            background: #F3F4F6;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .what-we-do-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.6s ease;
        }

        .what-we-do-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .what-we-do-item:hover::before {
            left: 100%;
        }

        .what-we-do-item div.img-wrapper {
            flex: 0 0 140px;
            max-width: 140px;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .what-we-do-item div.img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .what-we-do-item-content {
            flex: 1;
            min-width: 220px;
            transition: transform 0.3s ease;
        }

        .what-we-do-item-content h3 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #222222;
            transition: color 0.3s ease;
        }

        .what-we-do-item-content p {
            font-size: 0.95rem;
            font-weight: 400;
            color: #444444;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .what-we-do-item:hover .what-we-do-item-content p {
            color: #333333;
        }

        .what-we-do-item.reverse {
            flex-direction: row-reverse;
        }

        .what-we-do-item.reverse:hover .what-we-do-item-content {
            transform: translateX(-5px);
        }

        .btn-secondary {
            display: inline-block;
            padding: 8px 20px;
            background-color: #2648b9;
            color: white;
            font-weight: 600;
            border-radius: 12px;
            text-align: center;
            font-size: 0.9rem;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
            user-select: none;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover,
        .btn-secondary:focus {
            background-color: #1a2f81;
            outline: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(38, 72, 185, 0.3);
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .what-we-do-item {
                flex-direction: column;
                text-align: center;
            }
            
            .what-we-do-item.reverse {
                flex-direction: column;
            }
            
            .what-we-do-item:hover .what-we-do-item-content,
            .what-we-do-item.reverse:hover .what-we-do-item-content {
                transform: translateY(-5px);
            }
        }


        .services {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .services-item {
            border-radius: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            padding: 24px 24px 24px 24px;
            align-items: center;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .services-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.6s ease;
        }

        .services-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .services-item:hover::before {
            left: 100%;
        }
        
        .services-item:focus {
            outline: 2px solid #007bff;
            outline-offset: 2px;
            background-color: #ffffff;
        }

        .services-item div.img-wrapper {
            flex: 0 0 140px;
            max-width: 140px;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease;
            order: 1;
        }

        .services-item div.img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .services-item-content {
            flex: 1;
            min-width: 220px;
            transition: transform 0.3s ease;
            order: 2;
        }

        .services-item-content h3 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #222222;
            transition: color 0.3s ease;
        }

        .services-item-content p {
            font-size: 0.95rem;
            font-weight: 400;
            color: #000000;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
            margin: 0;
        }

        .services-item-content ul {
            list-style-type: disc;
            padding-left: 20px;
            margin: 0;
            color: #000000;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .services-item-content li {
            margin-bottom: 4px;
        }

        .services-item:hover .services-item-content p {
            color: #333333;
        }

        .services-item.reverse {
            flex-direction: row-reverse;
        }

        .services-item.reverse:hover .services-item-content {
            transform: translateX(-5px);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .services-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 12px;
            }
            
            .services-item div.img-wrapper {
                order: 1;
                flex: 0 0 100px;
                max-width: 100px;
            }
            
            .services-item-content {
                order: 2;
                min-width: auto;
            }
            
            .services-item-content ul {
                text-align: left;
            }
        }
/* ---------- SECTION: Media & Informasi ---------- */
section.media-info {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 12px 72px;
}
section.media-info > h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  color: #222222;
}
  
.media-tabs {
 display: flex;
 justify-content: center;
 gap: 20px;
 margin-bottom: 32px;
 flex-wrap: wrap;
}
.media-tab {
  flex: 1 0 auto;
  text-align: center; 
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none; 
  color: #333;
  transition: all 0.3s ease;
}
.media-tab.active {
  background-color: #1E3A8A;
  border-color: #1E3A8A;
  color: white;
}
.media-tab:not(.active):hover,
.media-tab:not(.active):focus {
  border-color: #EF4444;
  outline: none;
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}
.media-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease;
  background-color: #222;
  color: white;
  height: 140px;
}
.media-card:hover,
.media-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0 0 0 / 0.25);
  outline: none;
}
.media-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}
.media-card:hover img {
  filter: brightness(0.9);
}
.media-card-content {
  position: absolute;
  bottom: 0;
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
}
.media-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}
.media-card-date {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.announcement {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #374151;
  user-select: none;
}

/* Image section */
.announcement__image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.announcement__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  user-select: none;
}

/* Tag on top right */
.announcement__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #334B93; /* blue */
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 8px rgb(51 75 147 / 0.3);
  user-select: none;
  pointer-events: none;
}

/* Content container */
.announcement__content {
  padding: 16px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Date line */
.announcement__date {
  display: flex;
  align-items: center;
  color: #4f46e5; /* indigo-ish */
  font-weight: 600;
  font-size: 0.9rem;
  gap: 6px;
  user-select: text;
}

.announcement__date svg {
  width: 18px;
  height: 18px;
  stroke: #4f46e5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  user-select: none;
}

/* Title */
.announcement__title {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  line-height: 1.3;
  user-select: text;
}

/* Description */
.announcement__description {
  font-weight: 500;
  font-size: 0.87rem;
  line-height: 1.5;
  color: #4b5563;
  user-select: text;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Link */
.announcement__link {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1d4ed8;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  user-select: text;
  transition: color 0.18s ease;
}
.announcement__link:hover,
.announcement__link:focus {
  color: #2563eb;
  outline: none;
  text-decoration: underline;
}

/* Tabs */
.tabs-container {
  max-width: 800px;
  margin: 32px auto 48px auto;
  background: #f8f8f8;
  border-radius: 40px;
  padding: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
  user-select: none;
}
.tab {
  flex: 1 0 auto;
  text-align: center;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.tab.active {
  background: #1E3A8A;
  color: #fff;
  border-color: #1E3A8A;
}
.tab:not(.active):hover,
.tab:not(.active):focus {
  border-color: #EF4444;
  outline: none;
}

/* --------- SECTION: Pencapaian --------- */
section.achievement-section {
  background-color: #e8ecfc;
  padding: 56px 0 72px;
  text-align: center;
}
.achievement-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.achievement-tab {
  flex: 1 0 auto;
  text-align: center; 
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none; 
  color: #333;
  transition: all 0.3s ease;
}
.achievement-tab.active {
  border-color: #283c8c;
  background-color: #283c8c;
  color: white;
}
.achievement-tab:not(.active):hover,
.achievement-tab:not(.active):focus {
  border-color: #EF4444;
  outline: none;
}

.achievement-content {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  border: 2px solid #d32f2f;
  text-align: left;
  font-weight: 500;
  font-size: 0.9rem;
  color: #222222;
  line-height: 1.4;
  white-space: pre-wrap;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 767px) {
  main {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }
  .large-card, .small-cards-grid {
    width: 100%;
    max-width: 100%;
  }
  .small-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 16px;
  }
  .mobile-menu-button {
    display: flex;
  }
  nav.desktop-nav {
    display: none;
  }
  .breadcrumb {
    display: flex;
  }

  /* Media Tabs - Mobile Responsive */
  .media-tabs {
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto 32px auto;
  }
  .media-tab {
    flex: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Achievement Tabs - Mobile Responsive */
  .achievement-tabs {
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto 32px auto;
  }
  .achievement-tab {
    flex: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* General Tabs Container - Mobile Responsive */
  .tabs-container {
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 32px auto 48px auto;
    background: transparent;
    padding: 0;
  }
  .tab {
    flex: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    background: #f8f8f8;
    border-radius: 12px;
  }
  .tab.active {
    background: #1E3A8A;
  }

  /* Achievement Content - Mobile Responsive */
  .achievement-content {
    margin: 0 16px;
    padding: 20px 24px;
    font-size: 0.85rem;
  }

  /* Media Grid - Mobile Responsive */
  .media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Announcement - Mobile Responsive */
  .announcement {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Tablet breakpoint for better tab handling */
@media (max-width: 1024px) and (min-width: 768px) {
  /* Media Tabs - Tablet */
  .media-tabs {
    gap: 16px;
  }
  .media-tab {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Achievement Tabs - Tablet */
  .achievement-tabs {
    gap: 16px;
  }
  .achievement-tab {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* General Tabs - Tablet */
  .tabs-container {
    gap: 12px;
    padding: 6px;
  }
  .tab {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .media-tabs,
  .achievement-tabs,
  .tabs-container {
    max-width: 280px;
  }
  
  .media-tab,
  .achievement-tab,
  .tab {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .achievement-content {
    margin: 0 8px;
    padding: 16px 20px;
  }
}

        /* --------- SECTION: Links --------- */
        /* Partner Section Styles */
        section#partner {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Partner Horizontal Slider */
        .partner-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            margin-bottom: -50px;
            mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
        }
        
        .partner-slider {
            display: flex;
            animation: scrollX 30s linear infinite;
            width: max-content;
        }
        
        .partner-slider:hover {
            animation-play-state: paused;
        }
        
        .partner-slide {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            /* width: 50%; Each slide takes 50% of the doubled width */
        }
        
        .partner-logo-item {
            flex: 0 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 300px;
        }
        
        .partner-logo {
            max-height: 200px;
            max-width: 200px;
            object-fit: contain;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }
        
        @keyframes scrollX {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Section Title Styles */
        .partner-title {
          margin-top: 100px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .partner-logo-item {
                padding: 0 15px;
                height: 80px;
            }
            
            .partner-logo {
                max-height: 60px;
                max-width: 120px;
            }

            .partner-title {
                font-size: 2rem;
                padding-top: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .partner-logo-item {
                padding: 0 10px;
                height: 200px;
            }
            
            .partner-logo {
                max-height: 100px;
                max-width: 100px;
            }
            
            .partner-slider {
                animation: scrollX 25s linear infinite;
            }

            .partner-title {
                font-size: 1.5rem;
                padding-top: 30px;
                padding-bottom: 15px;
            }
        }
 /* --------- SECTION: Contact Form --------- */
section.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 16px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  box-sizing: border-box;
}

section.contact-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222222;
  grid-column: 1 / 3;
  text-align: center;
}

section.contact-section p.subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: 1rem;
  color: #4a4a4a;
  text-align: center;
  grid-column: 1 / 3;
  margin-bottom: 40px;
  margin-top: -50px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.form-row-horizontal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
 

button.submit-btn {
  width: 200px;
  padding: 10px 20px;
  background-color: #2648b9;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  user-select: none;
  cursor: pointer;
  align-self: flex-start;
}

button.submit-btn:hover,
button.submit-btn:focus {
  background-color: #1a2f81;
  outline: none;
}

/* Map */
.contact-map {
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgb(0 0 0 / 0.15);
  box-sizing: border-box;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* --------- RESPONSIVE FIX --------- */
@media (max-width: 768px) {
  section.contact-section {
    grid-template-columns: 1fr;
    padding: 48px 16px;
  }

  section.contact-section h2,
  section.contact-section p.subtitle {
    grid-column: 1 / 2;
  }

  .form-row-horizontal {
    flex-direction: column;
  }

  button.submit-btn {
    align-self: center;
  }
}


  /* --------- FOOTER --------- */ 
    /* Footer base */
.footer {
  background-color: #1d3a8a;
  color: #f0f5ff;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 2.5rem 4rem; /* Gunakan rem agar skalanya ikut zoom */
  width: 100%; /* Lebar penuh */
  max-width: 100vw; /* Maksimal sesuai viewport */
  box-sizing: border-box; /* Pastikan padding tidak melebihi lebar */
  margin: 0 auto;
}


    .footer__logo-section {
      flex: 1 1 280px;
      max-width: 280px;
    }

    .footer__logo-container {
      background-color: #ffffff;
      border-radius: 24px;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      margin-bottom: 18px;
    }

    .footer__logo-container img {
      height: 40px;
      width: 200px;
      object-fit: contain;
    }

    .footer__address {
      font-size: 14px;
      line-height: 1.5;
      color: #cfd9f7;
      max-width: 250px;
      text-align: justify;
    }

    .footer__column {
      flex: 1 1 140px;
      font-size: 14px;
      line-height: 1.5;
      color: #cfd9f7;
      min-width: 140px;
    }

    .footer__column h3 {
      color: #e5e7eb;
      font-weight: 700;
      margin: 0 0 14px 0;
      font-size: 16px;
      user-select: none;
    }

    .footer__list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer__list li {
      margin-bottom: 8px;
      cursor: default;
      user-select: none;
    }

    .footer__list li a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer__list li a:hover {
      color: #a5b4fc;
      text-decoration: underline;
    }

    .footer__contact-info {
      margin-bottom: 22px;
    }

    .footer__contact-item {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
      user-select: text;
    }
      .footer__contact-item.location {
      display: flex;
      align-items:  flex-start;
      gap: 6px;
      margin-bottom: 8px;
      user-select: text;
    }

    .footer__contact-item svg {
      width: 16px;
      height: 16px;
      fill: #f0f5ff;
      flex-shrink: 0;
    }
        .footer__contact-item.location svg {
      width: 16px;
      height: 16px;
      fill: #f0f5ff;
      flex-shrink: 0;
    }

    .footer__socials {
      display: flex;
      gap: 16px;
    }

    .footer__social-link {
      background-color: #fff;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      color: #1d3a8a;
      text-decoration: none;
      transition: background-color 0.3s ease;
      user-select: none;
      box-shadow: 0 2px 6px rgb(0 0 0 / 0.2);
    }
    .footer__social-link:hover {
      background-color: #a5b4fc;
      color: #1d3a8a;
    }

    /* Icons styling */
    .icon {
      display: inline-block;
      vertical-align: middle;
      pointer-events: none;
    }

    /* Contact info list */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 0.9rem;
      color: #cbd5e1;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .contact-item .material-icons {
      font-size: 20px;
      color: #93c5fd;
      flex-shrink: 0;
    }
    .contact-item a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s ease;
      word-break: break-word;
    }
    .contact-item a:hover,
    .contact-item a:focus {
      color: #93c5fd;
      text-decoration: underline;
    }

    /* Social media icons container */
    .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 16px;
    }
    .social-icon {
      background-color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      color: #1a3a8f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
      text-decoration: none;
    }
    .social-icon:hover,
    .social-icon:focus {
      background-color: #93c5fd;
      color: #1a3a8f;
      outline: none;
    }

    /* Responsive layout adjustments */
    @media (max-width: 767px) {
      .footer-container {
        flex-direction: column;
        gap: 48px;
      }
      .footer-col {
        max-width: 100%;
      }
      .footer-logo-container {
        margin-bottom: 16px;
      }
    }

  /* Desktop: 768px - 1439px */
  @media (min-width: 768px) {
    nav.nav-desktop {
      display: flex;
      align-items: center;
    }
    button.mobile-toggle {
      display: none;
    }
    .nav-mobile {
      display: none !important;
    }
    .hero-slider {
      height: 440px;
      padding-left: 6rem;
    }
  }
  /* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px #25d366;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.whatsapp-float__link:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-float__text {
  /* Text removed - icon only */
}

/* Pulse animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float__link {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 10px;
    right: 10px;
  }
  
  .whatsapp-float__link {
    width: 52px;
    height: 52px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .whatsapp-float__link {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  
  .whatsapp-float__link:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }
}

/* Accessibility improvements */
.whatsapp-float__link:focus {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
  
  .whatsapp-float__link {
    transition: none;
  }
  
  .whatsapp-float__link:hover {
    transform: none;
  }
}

  /* LEFT LARGE CARD */
  .large-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    min-height: 300px;
    height: 500px;
  }
  .large-card:hover,
  .large-card:focus-visible {
    outline: none;
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgb(0 0 0 / 0.2);
  }
  .large-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }
  .large-card-content {
    padding: 24px 24px 32px 24px;
    color: white;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    margin-top: -110px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.4;
    backdrop-filter: contrast(85%);
  }
  .large-card-content .date {
    font-weight: 400;
    margin-top: 8px;
    font-size: 0.875rem;
    opacity: 0.8;
  }
  /* Overlay on image for large card */
  .large-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
    mix-blend-mode: multiply;
  }
  .large-card-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* RIGHT SMALL CARDS GRID */
  .small-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .small-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
  }
  .small-card:hover,
  .small-card:focus-visible {
    outline: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
  }
  .small-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
  }
  .small-card-content {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    color: white;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    margin-top: -40px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0 0 16px 16px;
    backdrop-filter: contrast(90%);
  }
  .small-card-content .date {
    font-weight: 400;
    margin-top: 6px;
    font-size: 0.75rem;
    opacity: 0.8;
  }

  /* Responsive mobile layout adjustments */
  @media (max-width: 767px) {
    main {
      display: flex;
      flex-direction: column;
      padding: 16px;
    }
    .large-card, .small-cards-grid {
      width: 100%;
      max-width: 100%;
    }
    .small-cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 16px;
    }
    .mobile-menu-button {
      display: flex;
    }
    nav.desktop-nav {
      display: none;
    }
    .breadcrumb {
      display: flex;
    }
  }

  /* Content Section */
  .content-section {
    max-width: 1000px;
    margin: 0 auto 0 auto;
    padding: 0 16px;
  }
    .content-section-study {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    padding: 0 16px;
  }
    .content-section-class-korean {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 16px;
  }
  h2.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  p {
    margin-bottom: 1.3em;
    font-size: 1rem;
    color: #222;
  }
  /* Hero Section */
  .hero {
    position: relative;
    height: 300px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-text {
    position: absolute;
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
    user-select: none;
    width: 100%;
    max-width: 100px;
    padding: 0 16px;
  }
  /* Red border line below hero */
  .hero-border {
    height: 5px;
    background: #d32f2f;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 3px;
  }
  .hero-border-blue {
    height: 2px;
    background: #0082C9;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 3px;
  }
.hero-border-grey {
    height: 1px;
    background: #888888; /* Ganti sementara dengan merah untuk testing */
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 3px;
    display: block;
    width: 100%;
}
 
    main h2 {
      font-size: 1.6rem;
      font-weight: 700;
      padding-bottom: 8px;
    }
  /* Table styling */
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;

    }
    thead tr {
      background: #fff;
      color: #444;
    }
    th, td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid #ccc;
      vertical-align: middle;
    }
    tbody tr:nth-child(even) {
      background: #f7f7f7;
    }
    tbody tr:nth-child(odd) {
      background: #eaeaea;
    }

      /* Contact Section Address*/
  section.contact-section-address {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
  }
  section.contact-section-address iframe {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  section.contact-section-address h2 {
    margin-bottom: 1rem;
  }
  .address-contact {
    font-size: 0.95rem;
    color: #222;
  }
  .address-contact strong {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
  }
  .address-contact ul {
    margin-top: 0.5rem;
  }
  .address-contact ul li {
    margin-left: 1.25rem;
    margin-bottom: 0.3rem;
  }

  /* Consultation Banner */
  /* .consult-banner {
    background: linear-gradient(90deg, #1a237e 0%, #3949ab 100%);
    border-radius: 15px;
    color: #fff;
    max-width: 900px;
    margin: 3rem auto 4rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
  }
  .consult-banner img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  }
  .consult-text {
    flex-grow: 1;
    min-width: 240px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
  }
  .consult-btn {
    padding: 0.75rem 1.5rem;
    background: #e0e7ff;
    border-radius: 32px;
    font-weight: 700;
    color: #3949ab;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .consult-btn:hover, .consult-btn:focus {
    background-color: #c5cae9;
    outline: none;
  } */

          .section-consultation {
            padding: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .container-consult-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 100px;
            border-radius: 20px;
            background: linear-gradient(90deg, #1a237e 0%, #3949ab 100%);
            position: relative;
            overflow: visible;
            padding: 1rem 3rem 1rem 0;
            margin: 50px 0 50px 0;
        }

        .cs-image {
          position: absolute;
          bottom: 0;
          left: 4%;
          height: 146px;
          z-index: 1;
        }

        .container-consult_content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            z-index: 2;
            padding: 0 2rem 0 200px;
        }

        .consult-label {
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            line-height: 1.3;
            margin: 0;
            text-align: center;
            flex: 1;
        }

        .cta-button {
          padding: 0.75rem 1.5rem;
          background: #e0e7ff;
          border-radius: 32px;
          font-weight: 700;
          color: #3949ab;
          border: none;
          cursor: pointer;
          white-space: nowrap;
          transition: background-color 0.3s ease, color 0.3s ease;
          margin-left: -2rem;
          margin-right: -2rem;
        }

        .cta-button:hover {
          background-color: #c5cae9;
          outline: none;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .container-consult-box {
                min-height: 120px;
                padding: 1rem 2rem 1rem 0;
            }
            
            .container-consult_content {
                padding-left: 170px;
                padding-right: 1.5rem;
            }
            
            .cs-image, .demo-image {
                height: 140px;
                left: 1rem;
                max-width: 150px;
            }
            
            .consult-label {
                font-size: 1.2rem;
            }
            
            .cta-button {
                margin-left: 1rem;
                padding: 0.7rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .container-consult-box {
                height: auto;
                min-height: auto;
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
                overflow: visible;
            }
            
            .container-consult_content {
                flex-direction: column;
                padding: 0;
                gap: 1.5rem;
                align-items: center;
                order: 1;
                width: 100%;
                margin-bottom: 1.5rem;
            }
            
            .cs-image, .demo-image {
                position: relative !important;
                left: auto !important;
                bottom: auto !important;
                height: auto;
                max-height: 180px;
                width: auto;
                max-width: 200px;
                order: 2;
                margin: 0 auto;
                display: block;
            }
            .consult-label {
                text-align: center;
                margin: 0;
            }
            
            .cta-button {
                margin-left: 0;
                display: block;
                margin: 0 auto; /* agar tombol di tengah */
            }
        }

        @media (max-width: 480px) {
            .container-consult-box {
                padding: 1.5rem 1rem;
                flex-direction: column;
            }
            
            .container-consult_content {
                order: 1;
                margin-bottom: 1.5rem;
            }
            
            .cs-image, .demo-image {
                order: 2;
                max-height: 150px;
                max-width: 180px;
                margin: 0 auto;
                position: relative !important;
                left: auto !important;
                bottom: auto !important;
                margin-bottom: -24px;
            }
            
            .consult-label {
                font-size: 1.1rem;
            }
            
            .consult-label br {
                display: none;
            }
            
            .cta-button {
                font-size: 0.9rem;
                padding: 0.7rem 1.5rem;
                display: block;
                margin: 0 auto; /* agar tombol tetap di tengah di HP kecil */
            }
        }

    /* NEWS GRID */
    .news-grid {
      display: grid;
      gap: 32px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 16px 64px;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      justify-content: center;
    }
    .news-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 6px 16px rgb(0 0 0 / 0.08);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
      height: 500px;
      min-height: 400px;
    }
    .news-card:hover,
    .news-card:focus-within {
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
      outline: none;
    }

    .news-image {
      border-radius: 16px 16px 0 0;
      width: 100%;
      height: 180px;
      object-fit: cover;
      object-position: center;
    }
    .news-content {
      padding: 16px 20px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 8px;
      line-height: 1.2;
      color: #1c1c1c;
    }
    .news-desc {
      font-weight: 400;
      font-size: 0.875rem;
      color: #555;
      flex-grow: 1;
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .news-date {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #444;
      user-select: none;
    }
    .news-date .material-icons {
      font-size: 18px;
      color: #0073e6;
    }
/* News grid foto*/
        .news-grid-foto {
            display: grid;
            gap: 24px;
            padding-bottom: 64px;
        }
    /* Card FOTOstyle for news */
        .news-card-foto {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgb(0 0 0 / 0.06);
            color: white;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 18px 16px 18px 18px;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            user-select: none;
        }
        .news-card-foto:hover,
        .news-card-foto:focus-within {
            transform: translateY(-6px);
            outline: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        }
        .news-card-foto::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent 48%, rgba(0, 0, 0, 0.7) 100%);
            transition: background 0.3s ease;
            border-radius: var(--border-radius-cards);
            z-index: 0;
        }
        .news-card-foto:hover::before,
        .news-card-foto:focus-within::before {
            background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.85) 100%);
        }
        .news-card-content-foto {
            position: relative;
            z-index: 1;
        }
        .news-card-title-foto {
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.3;
            margin-bottom: 6px;
            text-shadow: 0 0 6px rgba(0,0,0,0.8);
        }
        .news-card-date-foto {
            font-weight: 500;
            font-size: 0.75rem;
            opacity: 0.8;
            text-shadow: 0 0 6px rgba(0,0,0,0.6);
        }

 /* Mobile (320px to 767px) */
        @media (max-width: 767px) {
            nav.main-nav {
                display: none;
            }
            header .header-inner {
                justify-content: space-between;
            }
            /* We can add a hamburger - but since not requested, skip for simplicity */

            .hero {
                height: 160px;
            }
            .hero-title {
                font-size: 1.5rem;
                left: 16px;
                bottom: 16px;
            }
            .tabs {
                flex-wrap: wrap;
                max-width: 360px;
                gap: 8px;
                padding: 8px;
            }
            .tab-button {
                flex: none;
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .news-grid {
                grid-template-columns: 1fr;
                padding-bottom: 48px;
                gap: 16px;
            }
            .news-card {
                height: 450px;
            }
            footer {
                padding: 2rem var(--padding-horizontal);
                font-size: 0.85rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-logo-section {
                align-items: center;
                text-align: center;
            }
            .footer-address {
                max-width: 100%;
            }
        }

        /* Desktop (768px to 1439px) */
        @media (min-width: 768px) and (max-width: 1439px) {
            nav.main-nav {
                display: flex;
            }
            .hero {
                height: 240px;
            }
            .hero-title {
                font-size: 2rem;
                left: 24px;
                bottom: 24px;
            }
            .tabs {
                max-width: 520px;
                gap: 12px;
            }
            .tab-button {
                font-size: 0.95rem;
                padding: 8px 24px;
            }
            .news-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                padding-bottom: 64px;
            }
            .news-card {
                height: 220px;
            }
            footer {
                padding: 3rem var(--padding-horizontal);
                font-size: 0.9rem;
            }
            .footer-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Large desktop 1440px and wider */
        @media (min-width: 1440px) {
            .container {
                max-width: 1360px;
            }
            .hero {
                height: 280px;
            }
            .hero-title {
                font-size: 2.25rem;
                left: 40px;
                bottom: 40px;
            }
            .news-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
                padding-bottom: 80px;
            }
            .news-card {
                height: 240px;
            }
        }
        /* MAIN BANNER */
  .banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
  }
  .banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .banner-title {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 34, 44, 0.7);
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    padding: 12px 24px;
    border-radius: 32px;
    letter-spacing: 1.2px;
  }
  .banner-border {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 0;
  }
  .banner-border > div {
    width: 50%;
    height: 4px;
    border-radius: 0;
  }
  .banner-border .blue { background: #1E3A8A; }
  .banner-border .red { background: #EF4444; }
  .banner-border .white { background: #F0F0F0; }
 /* MAIN CONTENT SECTION */
  main {
    padding: 48px var(--spacing-base) 72px;
  }
.intro-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto 64px;
  }
  .intro-text {
    flex: 1 1 480px;
    font-size: 1rem;
    color: var(--color-text);
    max-width: 600px;
    line-height: 1.5;
  }
  .intro-text strong {
    font-weight: 700;
  }
  .intro-logo {
    flex: 0 0 220px;
    max-width: 220px;
    text-align: center;
  }
  .intro-logo img {
    max-width: 220px;
    border-radius: 8px;
  }
  .info-text {
  text-align: center;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0; /* Hilangkan jarak antar card */
}

.content-text {
  flex: 1 1 60%;
  margin-right: 2rem;
}

.content-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-image {
  flex: 1 1 35%;
  text-align: right;
}

.content-image img {
  height: auto !important;
  width: auto !important;
  border-radius: 8px;
}


 /* Cards grid */
    .cards-grid {
      display: grid;
      gap: 32px;
      grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
      justify-content: center;
    }
    .card {
      background: white;
      border-radius: var(--border-radius);
      box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      max-width: 320px;
      margin-left: 30px;
      margin-right: 30px;
    }
      .card-login {
      background: white;
      border-radius: var(--border-radius);
      box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      max-width: 460px;
      margin-left: 30px;
      margin-right: 30px;
    }
    .card img {
      height: 180px;
      object-fit: cover;
      border-top-left-radius: var(--border-radius);
      border-top-right-radius: var(--border-radius);
      flex-shrink: 0;
    }
    .card-content {
      padding: 16px 24px 24px;
      flex-grow: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

    }

    .card-content-topik {
      padding: 16px 24px 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
    }
    .card-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 4px;
    }
    .card-rating {
      color: #fbbf24; /* gold */
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
    }
    /* Star span smaller */
    .card-rating .material-icons {
      font-size: 18px;
    }
    .card-rating-text {
      font-size: 0.8rem;
      color: var(--text-light);
    }
   /* .card-description {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 16px;
      text-align: left;
      line-height: 1.4;
      min-height: 78px;
    }*/
    .card-description-topik {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 16px;
      margin-top: 10px;
      text-align: left;
      line-height: 1.4;
      min-height: 78px;
      text-align: center;
    }
    /* checklist list inside card */
    .card-list {
      list-style: none;
      margin: 0 0 20px 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: var(--blue);
      font-weight: 600;
      font-size: 1rem;
    }
    .card-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-color);
    }
    .card-list li .material-icons {
      color: #10b981; /* green */
      font-size: 20px;
      min-width: 20px;
    }
    /* Card button */
     :root {
      --blue: #223978;
      --red: #ef4444;
      --blue-light: #3e58bb;
      --bg-gray: #f7f7f7;
      --border-radius: 16px;
      --text-color: #111827;
      --text-light: #374151;
      --btn-blue: #2c4dbf;
      --btn-blue-hover: #2042a9;
      --font-family: 'Inter', sans-serif;
      --transition: 0.3s ease;
    }
 /* Card button */
    .btn-detail {
      background-color: var(--btn-blue);
      color: white;
      padding: 10px 0;
      text-align: center;
      border-radius: 14px;
      font-weight: 600;
      box-shadow: 0 5px 15px rgb(44 77 191 / 0.4);
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      transition: background-color var(--transition);
      user-select: none;
    }
    .btn-detail:hover,
    .btn-detail:focus {
      background-color: var(--btn-blue-hover);
      outline: none;
    }
    /* CTA Banner */
    .cta-banner {
      margin-bottom: 64px;
      border-radius: var(--border-radius);
      overflow: hidden;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      background: linear-gradient(90deg, var(--blue-light) 15%, #6b8ad6 100%);
      box-shadow: 0 10px 24px rgb(0 0 0 / 0.15);
      gap: 12px;
      flex-wrap: wrap;
    }
    .cta-banner img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .cta-text {
      flex: 1 1 200px;
      font-weight: 600;
      font-size: 1.1rem;
      min-width: 160px;
      text-align: center;
    }
    .cta-btn {
      background-color: var(--btn-blue);
      padding: 10px 20px;
      border-radius: 20px;
      font-weight: 700;
      cursor: pointer;
      transition: background-color var(--transition);
      user-select: none;
      border: none;
      min-width: 140px;
      white-space: nowrap;
      color: white;
    }
    .cta-btn:hover,
    .cta-btn:focus {
      background-color: var(--btn-blue-hover);
      outline: none;
    }
     /* Section: Contoh Video Kelas */
    .section-videos {
      max-width: 1200px;
      margin: 0 auto 100px;
      padding: 0 16px;
    }

    .section-videos h3 {
      text-align: center;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 32px;
    }

    .video-list {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      justify-content: center;
    }

    .video-wrapper {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 12px rgb(0 0 0 / 0.1);
      background: #000;
    }

    .video-wrapper iframe,
    .video-wrapper video {
      width: 30%;
      height: 170px;
      display: block;
      border: none;
      border-radius: 12px 12px 0 0;
      background: #000;
    }

    .video-caption {
      padding: 8px 12px 16px;
      text-align: center;
      font-weight: 600;
      font-size: 0.95rem;
      color: #161616;
      background-color: #f9f9f9;
      border-radius: 0 0 12px 12px;
    }
    .program-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px; /* jarak antar item */
}

.program-list li .material-icons {
  margin-right: 8px; /* jarak antara ikon dan teks */
}
        .video-container {
            display: flex;
            flex-direction: row; /* Pastikan horizontal */
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            align-items: stretch;
        }

        .video-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            flex: 1; /* Sama besar untuk semua card */
            max-width: calc(33.333% - 15px); /* 3 kolom dengan gap */
            min-width: 280px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .video-card iframe {
            width: 100%;
            height: 200px;
            border: none;
        }

        .video-title {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-card {
                flex: 1 1 100%;
                max-width: none;
                min-width: auto;
            }

            .video-card iframe {
                height: 180px;
            }

            .video-title {
                padding: 12px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .video-card iframe {
                height: 160px;
            }

            .video-title {
                padding: 10px;
                font-size: 0.9rem;
            }
        }

        /* Untuk layar besar */
        @media (min-width: 1200px) {
            .container {
                gap: 30px;
            }

            .video-card {
                max-width: 380px;
            }
        }
               /* Popup Overlay Styles */
        .image-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex !important;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .image-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Popup Content Styles */
        .image-popup-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            width: auto;
            height: auto;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .image-popup-overlay.active .image-popup-content {
            transform: scale(1);
        }

        /* Image Styles */
        .image-popup-content img {
            display: block;
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
        }

        /* Close Button Styles */
        .image-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: background-color 0.2s ease;
        }

        .image-popup-close:hover {
            background-color: #fff;
        }

        .image-popup-close:before,
        .image-popup-close:after {
            content: '';
            position: absolute;
            width: 15px;
            height: 2px;
            background-color: #333;
        }

        .image-popup-close:before {
            transform: rotate(45deg);
        }

        .image-popup-close:after {
            transform: rotate(-45deg);
        }
        .pagination .active {
            background-color: #3b82f6;
            color: white;
        }
        .pagination a:hover:not(.active) {
            background-color: #e5e7eb;
        }
        /*gallery*/
               .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s ease;
  }

  .gallery-grid img:hover {
    transform: scale(1.03);
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
  }

  .modal.show {
    display: flex;
  }
 
  .modal-content {
  display: block;
  margin: auto;
  max-width: 90vw;     /* agar tidak melebihi lebar layar */
  max-height: 80vh;     /* agar tidak melebihi tinggi layar */
  width: auto;
  height: auto;
  object-fit: contain;  /* gambar tetap proporsional */
}

  .modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
  }

  .modal-nav {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.3);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
  }

  .modal-nav.prev { left: 2rem; }
  .modal-nav.next { right: 2rem; }


