/*========================================
  CSS VARIABLES
========================================*/
:root {
  /* Warna Utama */
  --primary-color: #0d47a1;
  --secondary-color: #26a69a;
  --accent-color: #5c6bc0;

  /* Warna Tambahan */
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --whatsapp-color: #25d366;
  --whatsapp-hover: #128c7e;

  /* Warna Tema Islami */
  --islamic-green: #00695c;
  --islamic-blue: #1565c0;

  /* Warna Teks */
  --text-color: #263238;
  --light-text: #546e7a;

  /* Background */
  --bg-light: #f5f5f5;
  --white: #ffffff;

  /* Efek */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Unit Colors */
  --primary-blue: #1a5f3f;
  --medium-blue: #2d8659;
  --light-blue: #4caf50;
  --very-light-blue: #81c784;
  --pale-blue: #e8f5e9;
  --dark-blue: #0d47a1;
}

/*========================================
  GLOBAL STYLES
========================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
  background-color: #f5f7fa;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*========================================
  PRELOADER
========================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.logo-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo-slider {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Welcome Text */
.welcome-text {
  text-align: center;
  margin-top: 25px;
  animation: slideUp 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  font-family: "Montserrat", sans-serif;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.small-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.small-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 50%;
  background-color: #94a3b8;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.welcome-text:hover .small-text::after {
  width: 100%;
  left: 0;
}

.large-text {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 15px rgba(30, 64, 175, 0.25);
  letter-spacing: 1px;
  position: relative;
  animation: gradientShift 4s ease infinite;
  margin-top: 5px;
}

.large-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
  animation: underline 2s forwards;
  animation-delay: 1s;
  border-radius: 2px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes underline {
  to {
    width: 100%;
  }
}

.welcome-text:hover .large-text {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/*========================================
  LANGUAGE SWITCHER
========================================*/
.language-switcher {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(250, 250, 250, 0.9)
  );
  max-width: max-content;
}

.language-btn {
  width: auto;
  min-width: 65px;
  height: 48px;
  border-radius: 30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  padding: 0 16px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.language-btn.id {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-btn.id.active {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
  transform: scale(1.05);
}

.language-btn.en {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-btn.en.active {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  transform: scale(1.05);
}

.language-btn.active {
  z-index: 2;
}

.language-btn:not(.active):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.language-btn.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  border-radius: 30px;
}

.language-btn .flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.language-btn .id-flag {
  background: linear-gradient(to bottom, #e74c3c 50%, #ffffff 50%);
}

.language-btn .id-flag::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #f8c300;
  border-radius: 50%;
}

.language-btn .en-flag {
  background: linear-gradient(to bottom, #012169 50%, #ffffff 50%);
}

.language-btn .en-flag::before,
.language-btn .en-flag::after {
  content: "";
  position: absolute;
  background-color: #c8102e;
}

.language-btn .en-flag::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
}

.language-btn .en-flag::after {
  top: 40%;
  left: 0;
  width: 100%;
  height: 20%;
}

.language-btn span {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.language-btn.active {
  animation: activePulse 2s infinite;
}

@keyframes activePulse {
  0% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
}

.language-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.language-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.7;
  }
  100% {
    transform: scale(40, 40);
    opacity: 0;
  }
}

.language-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.language-btn:hover::before {
  left: 100%;
}

/*========================================
  WHATSAPP BUTTON
========================================*/
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--whatsapp-color), #128c7e);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button i {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.whatsapp-button span {
  position: relative;
  z-index: 1;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #128c7e, #0d685f);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.whatsapp-button:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover::before {
  opacity: 1;
}

.whatsapp-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.whatsapp-button .notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff2e4d;
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.whatsapp-button .ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.whatsapp-button .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.whatsapp-button:hover .shine {
  left: 100%;
}

.whatsapp-float .dropdown-menu {
  background-color: #fff !important;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  bottom: 60px !important;
  top: auto !important;
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  min-width: 220px;
  padding: 10px;
}

.whatsapp-float .dropdown-item {
  color: #333 !important;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.whatsapp-float .dropdown-item:last-child {
  margin-bottom: 0;
}

.whatsapp-float .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--whatsapp-hover) !important;
  transform: translateX(5px);
}

.whatsapp-float .dropdown-item i {
  font-size: 18px;
  color: var(--whatsapp-color);
}

.whatsapp-float .dropdown-menu.show {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*========================================
  NAVBAR
========================================*/
.navbar {
  background: linear-gradient(135deg, #00796b, #0288d1);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  transition:
    padding 0.3s ease,
    background-color 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color, #fff);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  background-color: rgba(26, 82, 118, 0.95);
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  margin-top: 10px;
  z-index: 1000;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.dropdown-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Sub-dropdown styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 10px 10px 10px;
  background-color: rgba(26, 82, 118, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  min-width: 180px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

/* Tampilkan sub-menu saat hover di desktop */
@media (min-width: 992px) {
  .dropdown-submenu:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Untuk mobile, kita gunakan class .show untuk menampilkan sub-menu */
@media (max-width: 991.98px) {
  .dropdown-submenu .dropdown-menu {
    position: static;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: rgba(26, 82, 118, 0.8);
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .dropdown-submenu .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 10px 0 10px 20px;
  }

  /* Ubah panah untuk mobile */
  .dropdown-submenu > .dropdown-toggle::before {
    content: "\f078"; /* Icon panah bawah */
  }

  /* Efek visual saat menu ditutup */
  .navbar-collapse.collapsing {
    height: auto !important;
    transition: all 0.3s ease;
  }
}

/* Tambahkan panah untuk menu yang memiliki sub-menu */
.dropdown-submenu > .dropdown-toggle::after {
  display: none; /* Sembunyikan panah default Bootstrap */
}

.dropdown-submenu > .dropdown-toggle::before {
  content: "\f054"; /* Icon panah kanan dari Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Warna untuk karakteristik */
.navbar .dropdown-menu .k-red {
  color: #e74c3c;
}

.navbar .dropdown-menu .k-yellow {
  color: #f1c40f;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.navbar .dropdown-menu .k-green {
  color: #27ae60;
}

.navbar .dropdown-menu .k-blue {
  color: #3498db;
}

/* Efek hover untuk item menu */
.navbar .dropdown-menu a {
  transition: all 0.2s ease;
  position: relative;
}

.navbar .dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}

/* Efek hover untuk karakteristik dengan border kiri */
.navbar .dropdown-menu a.k-red:hover {
  color: #fff;
  background-color: rgba(231, 76, 60, 0.2);
  border-left: 3px solid #e74c3c;
  padding-left: 17px;
}

.navbar .dropdown-menu a.k-yellow:hover {
  color: #fff;
  background-color: rgba(241, 196, 15, 0.2);
  border-left: 3px solid #f1c40f;
  padding-left: 17px;
}

.navbar .dropdown-menu a.k-green:hover {
  color: #fff;
  background-color: rgba(39, 174, 96, 0.2);
  border-left: 3px solid #27ae60;
  padding-left: 17px;
}

.navbar .dropdown-menu a.k-blue:hover {
  color: #fff;
  background-color: rgba(52, 152, 219, 0.2);
  border-left: 3px solid #3498db;
  padding-left: 17px;
}

/* Tambahkan transisi untuk navbar collapse */
.navbar-collapse {
  transition: all 0.3s ease;
}

/*========================================
  HERO SECTION
========================================*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero .carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .carousel-item {
  height: 100vh;
  background-color: #000;
}

.hero .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero .carousel-item img.loaded {
  opacity: 1;
}

.hero .carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
  max-width: 80%;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-content h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  margin-top: 2rem;
}

/* ==============================
   SECTION TITLE (FINAL & CLEAN)
================================ */

.section-title {
  display: inline-block;
  text-align: center;
  margin: 0 auto 40px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;            /* default: hitam */
  position: relative;
  padding-bottom: 15px;
  z-index: 2;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #f1c40f, #2ecc71, #3498db);
  border-radius: 2px;
}
#about {
  position: relative;
  z-index: 1;
  overflow: visible;
}

#about .container {
  position: relative;
  overflow: visible;
}

#about .section-title {
  position: relative;
  z-index: 9999;
  color: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
body {
  padding-top: 90px;
}
/*========================================
  KIMS SECTION
========================================*/
.kims-section {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%);
}

/* Perbaikan untuk judul */
.kims-section .container {
  text-align: center;
}
/* Perbaikan untuk tabel */
.kims-table .table {
  background-color: #3498db;
  color: #000;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
  transition: all 0.3s;
  table-layout: auto;
  width: 100%;
}

.kims-table .table td {
  font-weight: 600;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.9rem;
  border: none;
  white-space: normal;
  overflow: visible;
  line-height: 1.4;
  text-overflow: unset;
  word-wrap: break-word;
  hyphens: auto;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
  perspective: 1000px;
  margin-bottom: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  overflow: auto;
}

.flip-card-front {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  transform: rotateY(180deg);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: auto;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.flip-card-front:hover .card-img {
  transform: scale(1.05);
}

.card-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 25px 20px;
  text-align: center;
  transition: background 0.3s;
}

.flip-card-front:hover .card-title-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-title-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.kims-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  overflow: auto;
}

.kims-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  padding: 8px 15px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.kims-letter {
  font-size: 2rem;
  margin: 0 3px;
  font-weight: bold;
  transition:
    transform 0.3s,
    opacity 0.3s;
  cursor: pointer;
  display: inline-block;
}

.kims-letter:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.kims-definitions {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: auto;
}

.kims-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  width: 100%;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.kims-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.kims-letter-bold {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
  transition:
    transform 0.3s,
    opacity 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}

.kims-letter-bold:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.kims-word-italic {
  font-size: 1.1rem;
  font-style: italic;
  color: #000;
  text-align: left;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kims-table {
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.table-link {
  text-decoration: none;
  display: block;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.table-link:hover {
  transform: translateY(-3px);
}

/*========================================
  FEATURED SECTION
========================================*/
.featured-section-enhanced {
  padding: 140px 0;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 50%, #dde2ed 100%);
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(70, 90, 120, 0.05);
}

.featured-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(70, 90, 120, 0.03) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(120, 140, 170, 0.03) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(70, 90, 120, 0.02) 0%,
      transparent 40%
    );
  z-index: 1;
}

.principal-speeches {
  position: relative;
  z-index: 5;
  margin: 20px 0 40px;
  text-align: center;
}

.speech-badge-enhanced {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  box-shadow:
    0 10px 25px rgba(63, 81, 181, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  text-align: center;
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

.badge-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ffffff;
}

.director-speech-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 5;
}

.image-column-enhanced {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
}

.image-container-enhanced {
  position: relative;
  width: 100%;
  max-width: 520px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.image-frame-enhanced {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: rotate(-3deg) translateY(0);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #fff;
  padding: 15px;
  clip-path: polygon(
    0% 15%,
    15% 0%,
    85% 0%,
    100% 15%,
    100% 85%,
    85% 100%,
    15% 100%,
    0% 85%
  );
  border: 8px solid transparent;
  border-image: linear-gradient(135deg, #3f51b5, #5c6bc0, #3f51b5) 1;
}

.image-container-enhanced:hover .image-frame-enhanced {
  transform: rotate(0deg) translateY(-10px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.image-shadow {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(63, 81, 181, 0.1),
    rgba(92, 107, 192, 0.1)
  );
  border-radius: 25px;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.7;
  transition: all 0.5s ease;
  clip-path: polygon(
    0% 15%,
    15% 0%,
    85% 0%,
    100% 15%,
    100% 85%,
    85% 100%,
    15% 100%,
    0% 85%
  );
}

.image-container-enhanced:hover .image-shadow {
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  opacity: 0.9;
}

.featured-image-enhanced {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 0;
  clip-path: polygon(
    0% 15%,
    15% 0%,
    85% 0%,
    100% 15%,
    100% 85%,
    85% 100%,
    15% 100%,
    0% 85%
  );
}

.image-container-enhanced:hover .featured-image-enhanced {
  transform: scale(1.05);
}

.image-decoration-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(63, 81, 181, 0.15) 0%,
    rgba(92, 107, 192, 0.15) 100%
  );
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.5s ease;
  clip-path: polygon(
    0% 15%,
    15% 0%,
    85% 0%,
    100% 15%,
    100% 85%,
    85% 100%,
    15% 100%,
    0% 85%
  );
}

.image-container-enhanced:hover .image-decoration-enhanced {
  opacity: 1;
}

.image-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.5rem;
  box-shadow:
    0 10px 25px rgba(63, 81, 181, 0.3),
    0 0 0 5px rgba(255, 255, 255, 0.3);
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-container-enhanced:hover .image-accent {
  transform: scale(1) rotate(5deg);
}

.image-caption-enhanced {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(63, 81, 181, 0.1);
  white-space: nowrap;
  z-index: 4;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.image-container-enhanced:hover .image-caption-enhanced {
  bottom: -50px;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(63, 81, 181, 0.2);
  transform: translateX(-50%) translateY(-5px);
}

.caption-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(63, 81, 181, 0.3);
}

.image-caption-enhanced p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
}

.speech-column-enhanced {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
}

.speech-container-enhanced {
  width: 100%;
  max-width: 520px;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.speech-content-enhanced {
  background-color: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(63, 81, 181, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.speech-container-enhanced:hover .speech-content-enhanced {
  transform: translateY(-15px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(63, 81, 181, 0.1);
}

.speech-content-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #3f51b5, #5c6bc0);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.quote-mark-enhanced {
  color: rgba(63, 81, 181, 0.15);
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  display: inline-block;
}

.speech-container-enhanced:hover .quote-mark-enhanced {
  color: rgba(63, 81, 181, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.speech-text-container {
  position: relative;
  margin-bottom: 40px;
}

#speech-content-enhanced {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333333;
  font-weight: 400;
  position: relative;
  z-index: 1;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 15px;
}

#speech-content-enhanced::-webkit-scrollbar {
  width: 8px;
}

#speech-content-enhanced::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

#speech-content-enhanced::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #3f51b5, #5c6bc0);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#speech-content-enhanced::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #303f9f, #3f51b5);
}

.speech-text-container::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #3f51b5, #5c6bc0);
  border-radius: 2px;
}

.speaker-info-enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.speaker-avatar {
  margin-right: 20px;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow:
    0 5px 15px rgba(63, 81, 181, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.speaker-info-enhanced:hover .avatar-circle {
  transform: scale(1.1) rotate(5deg);
}

.speaker-details-enhanced {
  flex-grow: 1;
}

.speaker-details-enhanced h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
  transition: all 0.3s ease;
}

.speaker-info-enhanced:hover .speaker-details-enhanced h4 {
  color: #3f51b5;
}

.speaker-details-enhanced p {
  font-size: 1rem;
  color: #666666;
  margin: 0 0 5px 0;
  font-weight: 500;
}

.section-title-container {
  text-align: center;
  margin: 80px 0 50px;
  position: relative;
  z-index: 5;
}
.principals-section,
.branches-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 5;
}

.principal-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(63, 81, 181, 0.1);
  margin-bottom: 30px;
}

.principal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.principal-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.principal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
  border-radius: 10px;
}

.principal-card:hover .principal-img {
  transform: scale(1.05);
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  border-radius: 10px;
}

.placeholder-image i {
  font-size: 4rem;
  color: rgba(63, 81, 181, 0.3);
}

.principal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
  z-index: 2;
}

.principal-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.principal-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
  text-align: center;
}

.principal-position {
  font-size: 1.1rem;
  color: #3f51b5;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.principal-speech {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.speech-scroll {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 20px;
}

.speech-scroll::-webkit-scrollbar {
  width: 8px;
}

.speech-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.speech-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #3f51b5, #5c6bc0);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.speech-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #303f9f, #3f51b5);
}

.speech-scroll p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  text-align: justify;
}

.decorative-circle-1,
.decorative-circle-2,
.decorative-triangle,
.decorative-dots {
  position: absolute;
  z-index: 1;
  opacity: 0.7;
}

.decorative-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(63, 81, 181, 0.1) 0%,
    rgba(92, 107, 192, 0.05) 70%,
    transparent 100%
  );
  top: -150px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.decorative-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(63, 81, 181, 0.1) 0%,
    rgba(92, 107, 192, 0.05) 70%,
    transparent 100%
  );
  bottom: -100px;
  left: -50px;
  animation: float 12s ease-in-out infinite reverse;
}

.decorative-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid rgba(63, 81, 181, 0.05);
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(15deg);
  animation: rotate 20s linear infinite;
}

.decorative-dots {
  width: 150px;
  height: 150px;
  background-image: radial-gradient(
    rgba(63, 81, 181, 0.2) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  bottom: 10%;
  right: 10%;
  border-radius: 10px;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes rotate {
  0% {
    transform: translateY(-50%) rotate(15deg);
  }
  100% {
    transform: translateY(-50%) rotate(375deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

/*========================================
  K-WARRIOR VALUES
========================================*/
.board-header {
  text-align: center;
  margin: 60px 0 50px;
  position: relative;
  padding: 0 15px;
}

.board-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.5vw, 3px);
  position: relative;
  display: inline-block;
  filter: drop-shadow(0px 4px 6px rgba(102, 126, 234, 0.2));
  transition: all 0.3s ease;
  line-height: 1.2;
}

.board-title:hover {
  transform: scale(1.03);
  filter: drop-shadow(0px 6px 8px rgba(102, 126, 234, 0.3));
}

.title-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
  border-radius: 50%;
}

.board-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.khalifa-acronym {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(5px, 1.5vw, 15px);
  max-width: 100%;
  margin: 30px auto 0;
}

.acronym-letter {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  border-radius: 8px;
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}

/* Warna berdasarkan pola Merah, Kuning, Hijau, Biru */
.acronym-letter:nth-child(1) {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
} /* K - Merah */
.acronym-letter:nth-child(2) {
  background: linear-gradient(45deg, #f1c40f, #f39c12);
} /* H - Kuning */
.acronym-letter:nth-child(3) {
  background: linear-gradient(45deg, #27ae60, #229954);
} /* A - Hijau */
.acronym-letter:nth-child(4) {
  background: linear-gradient(45deg, #3498db, #2980b9);
} /* L - Biru */
.acronym-letter:nth-child(5) {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
} /* I - Merah */
.acronym-letter:nth-child(6) {
  background: linear-gradient(45deg, #f1c40f, #f39c12);
} /* F - Kuning */
.acronym-letter:nth-child(7) {
  background: linear-gradient(45deg, #27ae60, #229954);
} /* A - Hijau */
.acronym-letter:nth-child(8) {
  background: linear-gradient(45deg, #3498db, #2980b9);
} /* I - Biru */
.acronym-letter:nth-child(9) {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
} /* M - Merah */
.acronym-letter:nth-child(10) {
  background: linear-gradient(45deg, #f1c40f, #f39c12);
} /* S - Kuning */

.acronym-letter:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.values-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  width: 350px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--card-color);
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 20px rgba(var(--card-color-rgb), 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.value-card:hover .value-icon {
  transform: scale(1.05);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 30px rgba(var(--card-color-rgb), 0.2);
}

.value-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(var(--card-color-rgb), 0.1) 0%,
    rgba(var(--card-color-rgb), 0.05) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover .value-icon::before {
  opacity: 1;
}

.value-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-title {
  font-size: 28px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.value-title .first-letter {
  font-weight: 900;
  font-size: 36px;
  color: var(--card-color);
  display: inline-block;
  margin-right: 2px;
  -webkit-text-stroke: 1px black;
  text-shadow: 1px black;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}

.value-content p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.value-content .en-text {
  font-weight: 500;
  color: #34495e;
}

.keen {
  --card-color: #e74c3c;
  --card-color-rgb: 231, 76, 60;
}

.honesty {
  --card-color: #ffff00;
  --card-color-rgb: 255, 255, 0;
}

.excellence {
  --card-color: #27ae60;
  --card-color-rgb: 39, 174, 96;
}

.law-abiding {
  --card-color: #3498db;
  --card-color-rgb: 52, 152, 219;
}

.innovation {
  --card-color: #e74c3c;
  --card-color-rgb: 231, 76, 60;
}

.teamwork {
  --card-color: #ffff00;
  --card-color-rgb: 255, 255, 0;
}

.alive {
  --card-color: #27ae60;
  --card-color-rgb: 39, 174, 96;
}

.incredible-at-planing {
  --card-color: #3498db;
  --card-color-rgb: 52, 152, 219;
}

.memorable-for-doing {
  --card-color: #e74c3c;
  --card-color-rgb: 231, 76, 60;
}

.strong-at-checking {
  --card-color: #ffff00;
  --card-color-rgb: 255, 255, 0;
}

.center-card {
  margin: 0 auto;
}

/*========================================
  STATISTICS SECTION
========================================*/
.stats-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.stat-number::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -20px;
  font-size: 2rem;
  opacity: 0.7;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/*========================================
  PAGE SECTIONS
========================================*/
.page-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
  position: relative;
}
/*========================================
  ABOUT US SECTION
========================================*/
:root {
  --vision-color: #4cc9f0;
  --mission-color: #f72585;
  --spiritual-color: #7209b7;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#about-title {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
}

.story-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--box-shadow);
  height: 100%;
  width: 100%;
  transition: all var(--transition-speed);
  max-height: 600px;
  overflow-y: auto;
}

.story-container:hover {
  box-shadow: var(--box-shadow-hover);
}

.story-container h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  font-size: 1.8rem;
}

.story-container h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  transform: translateX(-50%);
  border-radius: 3px;
}

.story-section {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed);
}

.story-section:hover {
  transform: translateY(-3px);
}

.story-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.story-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all var(--transition-speed);
}

.story-section:hover .story-icon {
  background-color: rgba(67, 97, 238, 0.2);
  transform: scale(1.1);
}

.story-content {
  flex: 1;
}

.story-content h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.story-content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.story-content p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
  font-size: 0.95rem;
}

.timeline {
  position: relative;
  margin: 15px 0;
  padding-left: 25px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
  transition: all var(--transition-speed);
}

.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent-color);
  transition: all var(--transition-speed);
}

.timeline-item:hover::before {
  transform: scale(1.2);
  border-color: var(--primary-color);
}

.timeline-date {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 20px;
}

.timeline-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #555;
}

.carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  transition: all var(--transition-speed);
}

.carousel:hover {
  box-shadow: var(--box-shadow-hover);
}

.carousel-item img {
  height: 350px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-indicators li {
  background-color: var(--accent-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all var(--transition-speed);
  opacity: 0.7;
}

.carousel-indicators li.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.7;
  transition: all var(--transition-speed);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 15px;
  transition: all var(--transition-speed);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.ornament-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}

.ornament-icon {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin: 0 10px;
  transition: all var(--transition-speed);
}

.ornament-icon:hover {
  transform: scale(1.3) rotate(15deg);
  color: var(--primary-color);
}

.ornament-divider {
  height: 2px;
  width: 50px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-color),
    transparent
  );
  flex-grow: 1;
  max-width: 100px;
  transition: all var(--transition-speed);
}

.ornament-line:hover .ornament-divider {
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-color),
    transparent
  );
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
}

.feature-row .about-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-feature {
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  transition: all var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.about-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  transition: all var(--transition-speed);
}

.about-feature:hover::before {
  height: 8px;
}

.vision-box::before {
  background: var(--vision-color);
}

.mission-box::before {
  background: var(--mission-color);
}

.spiritual-box::before {
  background: var(--spiritual-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all var(--transition-speed);
}

.about-feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.vision-box .feature-icon {
  background-color: rgba(76, 201, 240, 0.15);
  color: var(--vision-color);
}

.mission-box .feature-icon {
  background-color: rgba(247, 37, 133, 0.15);
  color: var(--mission-color);
}

.spiritual-box .feature-icon {
  background-color: rgba(114, 9, 183, 0.15);
  color: var(--spiritual-color);
}

.about-feature h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.about-feature h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
  transition: all var(--transition-speed);
}

.about-feature:hover h4::after {
  width: 70px;
}

.vision-box h4::after {
  background: var(--vision-color);
}

.mission-box h4::after {
  background: var(--mission-color);
}

.spiritual-box h4::after {
  background: var(--spiritual-color);
}

.feature-content {
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-content p {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

.feature-content ol {
  padding-left: 20px;
  margin-top: 0;
  flex-grow: 1;
}

.feature-content ol li {
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 5px;
  font-size: 0.95rem;
  transition: all var(--transition-speed);
  color: #000;
  font-weight: normal;
}

.feature-content ol li:hover {
  transform: translateX(5px);
  color: var(--primary-color);
}

.poem-content {
  text-align: left;
  line-height: 1.8;
  flex-grow: 1;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
  background-color: rgba(114, 9, 183, 0.03);
  border-left: 4px solid var(--spiritual-color);
  border-radius: 0 8px 8px 0;
  font-family: "Georgia", serif;
  font-style: italic;
  color: #333;
  margin-top: 0;
  font-size: 0.95rem;
  transition: all var(--transition-speed);
}

.poem-content:hover {
  background-color: rgba(114, 9, 183, 0.06);
}

.poem-content p {
  margin-bottom: 15px;
  font-weight: normal;
  transition: all var(--transition-speed);
}

.poem-content p:hover {
  transform: translateX(5px);
}

.poem-content p span {
  display: block;
  margin-top: 8px;
  margin-bottom: 5px;
  font-weight: bold;
}

.poem-content::-webkit-scrollbar {
  width: 8px;
}

.poem-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.poem-content::-webkit-scrollbar-thumb {
  background: var(--spiritual-color);
  border-radius: 10px;
  transition: all var(--transition-speed);
}

.poem-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.story-container::-webkit-scrollbar {
  width: 8px;
}

.story-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.story-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
  transition: all var(--transition-speed);
}

.story-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/*========================================
  STUDENT SECTION
========================================*/
#student {
  text-align: center;
}

#about-title {
  text-align: center;
  margin: 0 auto 30px;
  padding: 10px 20px;
  display: inline-block;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(249.3px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.student-card {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.student-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: #f8f9fa;
  padding: 10px;
  box-sizing: border-box;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px 8px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-height: 200px;
  overflow-y: auto;
  z-index: 5;
}

.student-card.active .caption {
  transform: translateY(0);
}

.plus-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus-btn:hover {
  background-color: #4caf50;
  color: white;
  transform: scale(1.1);
}

.student-card.active .plus-btn {
  background-color: #4caf50;
  color: white;
  transform: rotate(45deg);
}

.hashtag-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.student-card.active .hashtag-overlay {
  opacity: 0;
}

.hashtag {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 30px 0 20px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*========================================
  NEWS/SOCIAL MEDIA SECTION
========================================*/
#news {
  padding: 100px 0 50px;
  background-color: #f8f9fa;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

#news:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #f8f9fa, transparent);
  z-index: 5;
  pointer-events: none;
}

#news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 6;
}

.news-section {
  margin-bottom: 50px;
  position: relative;
  z-index: 7;
}

.section-subtitle {
  font-size: 22px;
  color: #34495e;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  font-weight: 600;
}

.gallery {
  display: grid;
  gap: 25px;
  position: relative;
  z-index: 7;
}

.gallery-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-3 {
  grid-template-columns: repeat(3, 1fr);
}

.news-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.img-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-color: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
  padding: 10px;
  background-color: white;
}

.news-item:hover .img-container img {
  transform: scale(1.05);
}

.news-caption {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Instagram Link Styles */
.instagram-link {
  display: inline-block;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  padding: 2px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3);
  position: relative;
  overflow: hidden;
}

.instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(225, 48, 108, 0.4);
}

.instagram-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.instagram-link:hover::before {
  left: 100%;
}

/* Instagram Table Styles */
.instagram-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 48px;
  overflow: hidden;
}

.instagram-table td {
  padding: 12px 20px;
  vertical-align: middle;
}

.icon-cell {
  width: 30px;
  text-align: center;
}

/* Instagram Logo */
.instagram-logo {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E4405F'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zM5.838 12a6.162 6.162 0 1 1 12.324 0 6.162 6.162 0 0 1-12.324 0zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm4.965-10.405a1.44 1.44 0 1 1 2.881.001 1.44 1.44 0 0 1-2.881-.001z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.text-cell {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-align: left;
}

/*========================================
  UNIT TABLE FOOTER
========================================*/
.container {
  width: 100%;
  max-width: 800px;
}

.title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.table-container {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

/* Desktop: Tabel Horizontal */
.desktop-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.desktop-table tr {
  display: table-row;
}

.desktop-table td {
  display: table-cell;
  padding: 20px 15px;
  text-align: center;
  border-right: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  width: 25%;
}

.desktop-table td:last-child {
  border-right: none;
}

/* Mobile: Tabel Vertikal */
.mobile-table {
  display: none;
}

.mobile-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-item:last-child {
  border-bottom: none;
}

.mobile-item:hover {
  background-color: #f8f9fa;
}

.mobile-icon {
  font-size: 24px;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.mobile-label {
  font-weight: bold;
  color: #333;
  font-size: 16px;
  flex-grow: 1;
  text-align: left;
}

.mobile-arrow {
  color: #999;
}

/* Ikon Styles */
.tk-icon {
  color: #ea4335;
}
.sd-icon {
  color: #fbbc05;
}
.smp-icon {
  color: #34a853;
}
.sma-icon {
  color: #4285f4;
}

.icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.label {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s;
}

.desktop-table td:hover .hover-effect {
  background-color: #4285f4;
}

/*========================================
  MISSION IMAGE
========================================*/
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mission-image {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-image:hover {
  transform: scale(1.02);
}

.text-center p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/*========================================
  UNIT TK
========================================*/
#k-kinder,
#i-kinder,
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Content Blocks */
.content-block {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
  font-size: 1.4rem;
  color: #34495e;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ecf0f1;
}

/* Spiritual Anchors */
.spiritual-anchors {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.anchor-item {
  background: #f1f8ff;
  border-left: 4px solid #3498db;
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
}

.anchor-item p {
  margin: 0;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.6;
}

/* Text Elements */
.key-theme,
.goals,
.focus-meaning,
.focus,
.casel-focus,
.sel-growth,
.thinking-development {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #34495e;
  padding: 10px 0;
}

.key-theme {
  font-weight: 600;
  color: #2980b9;
}

.goals {
  background: #eafaf1;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #2ecc71;
}

.focus-meaning {
  font-style: italic;
  color: #8e44ad;
}

/* Signature Programmes */
.signature-programmes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signature-programmes li {
  background: #f8f9fa;
  margin-bottom: 15px;
  padding: 18px 20px;
  border-radius: 8px;
  border-left: 4px solid #e74c3c;
  transition: background 0.3s ease;
}

.signature-programmes li:hover {
  background: #f1f2f6;
}

.signature-programmes li strong {
  display: block;
  color: #c0392b;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Special Section Colors */
#k-kinder .section-title::after {
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

#i-kinder .section-title::after {
  background: linear-gradient(90deg, #9b59b6, #e74c3c);
}

#m-kinder .section-title::after {
  background: linear-gradient(90deg, #f39c12, #d35400);
}

#s-kinder .section-title::after {
  background: linear-gradient(90deg, #1abc9c, #16a085);
}

/*========================================
  UNIT SD
========================================*/
/* Base Styles for All Pages */
.curricula-header {
  margin-bottom: 40px;
}

.curricula-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #000000;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.curricula-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

/* Gaya untuk subjudul di bawah h2 */
.curricula-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #1a5276;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

/* Mission Image - 40% Width */
.mission-image {
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 3px solid white;
}

.mission-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Knowledgeable Page Styles */
.knowledgeable-page .curricula-title::after {
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

.knowledgeable-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  margin-top: 30px;
  overflow: hidden;
}

.knowledgeable-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.1),
    rgba(46, 204, 113, 0.1)
  );
  border-radius: 0 0 0 150px;
  z-index: -1;
}

.knowledgeable-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.knowledgeable-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 80%;
  background: linear-gradient(to bottom, #3498db, #2ecc71);
  border-radius: 4px;
}

.knowledgeable-content .mb-4 {
  margin-bottom: 30px;
  position: relative;
}

.knowledgeable-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ecf0f1;
  position: relative;
  display: flex;
  align-items: center;
}

.knowledgeable-content h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3498db;
  border-radius: 50%;
  margin-right: 10px;
}

.knowledgeable-content h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #3498db;
}

.knowledgeable-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 0;
}

.knowledgeable-content p::before {
  display: none;
}

.blockquote {
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 20px 25px;
  background: #f8f9fa;
  border-left: 4px solid #3498db;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  position: relative;
  font-size: 1.05rem;
  color: #000000;
}

.blockquote p {
  margin-bottom: 0;
  color: #000000;
  padding-left: 0;
}

.blockquote::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: rgba(52, 152, 219, 0.2);
}

.knowledgeable-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.knowledgeable-content li {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid #ecf0f1;
  transition: all 0.3s ease;
  padding-left: 0;
  color: #000000;
}

.knowledgeable-content li:hover {
  background: rgba(52, 152, 219, 0.05);
  padding-left: 0;
}

.knowledgeable-content li::before {
  display: none;
}

.knowledgeable-content > div:nth-child(2) h4,
.knowledgeable-content > div:nth-child(3) h4,
.knowledgeable-content > div:nth-child(4) h4 {
  background: linear-gradient(90deg, rgba(52, 152, 219, 0.1), transparent);
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
}

.knowledgeable-content > div:nth-child(2) p,
.knowledgeable-content > div:nth-child(3) p,
.knowledgeable-content > div:nth-child(4) p {
  font-size: 1.15rem;
  color: #000000;
  font-weight: 500;
}

.interdependent-link {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.interdependent-link a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interdependent-link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.interdependent-link a:hover::before {
  left: 0;
}

.interdependent-link a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interdependent-link a::after {
  content: "→";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.interdependent-link a:hover::after {
  transform: translateX(5px);
}

/* Interdependent Page Styles */
.interdependent-page .curricula-title::after {
  background: linear-gradient(90deg, #3949ab, #5c6bc0);
}

.interdependent-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  margin-top: 30px;
  overflow: hidden;
}

.interdependent-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(63, 81, 181, 0.1),
    rgba(92, 107, 192, 0.1)
  );
  border-radius: 0 0 0 150px;
  z-index: -1;
}

.interdependent-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.interdependent-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 80%;
  background: linear-gradient(to bottom, #3949ab, #5c6bc0);
  border-radius: 4px;
}

.interdependent-content .mb-4 {
  margin-bottom: 30px;
  position: relative;
}

.interdependent-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #e8eaf6;
  position: relative;
  display: flex;
  align-items: center;
}

.interdependent-content h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3949ab;
  border-radius: 50%;
  margin-right: 10px;
}

.interdependent-content h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #3949ab;
}

.interdependent-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 0;
}

.verse {
  font-family: "Georgia", serif;
  font-style: italic;
  padding: 15px 20px;
  background: #e8eaf6;
  border-left: 4px solid #3949ab;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
  position: relative;
  font-size: 1.05rem;
  color: #000000;
}

.verse::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: rgba(63, 81, 181, 0.2);
}

.verse-source {
  font-size: 0.9rem;
  color: #000000;
  text-align: right;
  margin-top: 5px;
  font-weight: 600;
}

.verse-tags {
  display: inline-block;
  background: #c5cae9;
  color: #000000;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 600;
}

.programme-category {
  margin-bottom: 25px;
  background: #f5f7ff;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #3949ab;
}

.programme-category h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.programme-category h5::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #3949ab;
  border-radius: 50%;
  margin-right: 8px;
}

.programme-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.programme-list li {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
  position: relative;
  border: 1px solid #e8eaf6;
  border-radius: 8px;
  color: #000000;
  background-color: #ffffff;
  transition: all 0.2s ease;
  text-align: center;
}

.programme-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #3949ab;
  font-weight: bold;
}

.programme-list li:hover {
  background-color: #e8eaf6;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.interdependent-content > div:nth-child(2) h4,
.interdependent-content > div:nth-child(3) h4,
.interdependent-content > div:nth-child(4) h4,
.interdependent-content > div:nth-child(5) h4,
.interdependent-content > div:nth-child(6) h4 {
  background: linear-gradient(90deg, rgba(63, 81, 181, 0.1), transparent);
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
}

.interdependent-content > div:nth-child(2) p,
.interdependent-content > div:nth-child(3) p,
.interdependent-content > div:nth-child(4) p,
.interdependent-content > div:nth-child(5) p,
.interdependent-content > div:nth-child(6) p {
  font-size: 1.15rem;
  color: #000000;
  font-weight: 500;
}

.muttaqiin-link {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.muttaqiin-link a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.muttaqiin-link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.muttaqiin-link a:hover::before {
  left: 0;
}

.muttaqiin-link a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.muttaqiin-link a::after {
  content: "→";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.muttaqiin-link a:hover::after {
  transform: translateX(5px);
}

/* Muttaqiin Page Styles */
.muttaqiin-page .curricula-title::after {
  background: linear-gradient(90deg, #2e7d32, #43a047);
}

.muttaqiin-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  margin-top: 30px;
  overflow: hidden;
}

.muttaqiin-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.1),
    rgba(67, 160, 71, 0.1)
  );
  border-radius: 0 0 0 150px;
  z-index: -1;
}

.muttaqiin-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.muttaqiin-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 80%;
  background: linear-gradient(to bottom, #2e7d32, #43a047);
  border-radius: 4px;
}

.muttaqiin-content .mb-4 {
  margin-bottom: 30px;
  position: relative;
}

.muttaqiin-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #e8f5e9;
  position: relative;
  display: flex;
  align-items: center;
}

.muttaqiin-content h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #2e7d32;
  border-radius: 50%;
  margin-right: 10px;
}

.muttaqiin-content h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #2e7d32;
}

.muttaqiin-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 0;
}

.muttaqiin-content .verse {
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
  color: #000000;
}

.muttaqiin-content .verse::before {
  color: rgba(46, 125, 50, 0.2);
}

.muttaqiin-content .verse-source {
  color: #000000;
}

.muttaqiin-content .programme-category {
  background: #f1f8e9;
  border-left: 4px solid #2e7d32;
}

.muttaqiin-content .programme-category h5 {
  color: #000000;
}

.muttaqiin-content .programme-category h5::before {
  background: #2e7d32;
}

.muttaqiin-content .programme-list li {
  border: 1px solid #e8f5e9;
  color: #000000;
}

.muttaqiin-content .programme-list li::before {
  color: #2e7d32;
}

.muttaqiin-content .programme-list li:hover {
  background-color: #e8f5e9;
}

.muttaqiin-content > div:nth-child(2) h4,
.muttaqiin-content > div:nth-child(3) h4,
.muttaqiin-content > div:nth-child(4) h4,
.muttaqiin-content > div:nth-child(5) h4 {
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.1), transparent);
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
}

.muttaqiin-content > div:nth-child(2) p,
.muttaqiin-content > div:nth-child(3) p,
.muttaqiin-content > div:nth-child(4) p,
.muttaqiin-content > div:nth-child(5) p {
  font-size: 1.15rem;
  color: #000000;
  font-weight: 500;
}

.smart-link {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.smart-link a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  background: linear-gradient(135deg, #2e7d32, #43a047);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.smart-link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.smart-link a:hover::before {
  left: 0;
}

.smart-link a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.smart-link a::after {
  content: "→";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.smart-link a:hover::after {
  transform: translateX(5px);
}

/* SMART Page Styles */
.smart-page .curricula-title::after {
  background: linear-gradient(90deg, #f57c00, #ffb300);
}

.smart-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  margin-top: 30px;
  overflow: hidden;
}

.smart-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(245, 124, 0, 0.1),
    rgba(255, 179, 0, 0.1)
  );
  border-radius: 0 0 0 150px;
  z-index: -1;
}

.smart-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.smart-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 80%;
  background: linear-gradient(to bottom, #f57c00, #ffb300);
  border-radius: 4px;
}

.smart-content .mb-4 {
  margin-bottom: 30px;
  position: relative;
}

.smart-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #fff8e1;
  position: relative;
  display: flex;
  align-items: center;
}

.smart-content h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #f57c00;
  border-radius: 50%;
  margin-right: 10px;
}

.smart-content h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f57c00;
}

.smart-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 0;
}

.smart-content .verse {
  background: #fff8e1;
  border-left: 4px solid #f57c00;
  color: #000000;
}

.smart-content .verse::before {
  color: rgba(245, 124, 0, 0.2);
}

.smart-content .verse-source {
  color: #000000;
}

.smart-content .programme-category {
  background: #fffde7;
  border-left: 4px solid #f57c00;
}

.smart-content .programme-category h5 {
  color: #000000;
}

.smart-content .programme-category h5::before {
  background: #f57c00;
}

.smart-content .programme-list li {
  border: 1px solid #fff8e1;
  color: #000000;
}

.smart-content .programme-list li::before {
  color: #f57c00;
}

.smart-content .programme-list li:hover {
  background-color: #fff8e1;
}

.smart-content > div:nth-child(2) h4,
.smart-content > div:nth-child(3) h4,
.smart-content > div:nth-child(4) h4,
.smart-content > div:nth-child(5) h4 {
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.1), transparent);
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
}

.smart-content > div:nth-child(2) p,
.smart-content > div:nth-child(3) p,
.smart-content > div:nth-child(4) p,
.smart-content > div:nth-child(5) p {
  font-size: 1.15rem;
  color: #000000;
  font-weight: 500;
}

/* Navigation Table */
.nav-table-container {
  margin-top: 50px;
  position: relative;
  z-index: 2;
  overflow-x: auto;
}

.nav-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px;
}

.nav-cell {
  background: white;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid transparent;
  vertical-align: top;
}

.nav-cell:nth-child(1) {
  border-top-color: #3498db;
}

.nav-cell:nth-child(2) {
  border-top-color: #3949ab;
}

.nav-cell:nth-child(3) {
  border-top-color: #2e7d32;
}

.nav-cell:nth-child(4) {
  border-top-color: #f57c00;
}

.nav-cell:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-content {
  padding: 25px 15px;
  text-align: center;
}

.nav-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.nav-cell:nth-child(1) .nav-icon {
  color: #3498db;
}

.nav-cell:nth-child(2) .nav-icon {
  color: #3949ab;
}

.nav-cell:nth-child(3) .nav-icon {
  color: #2e7d32;
}

.nav-cell:nth-child(4) .nav-icon {
  color: #f57c00;
}

.nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}

.nav-desc {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.nav-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.nav-cell:nth-child(1) .nav-link {
  background: #3498db;
}

.nav-cell:nth-child(2) .nav-link {
  background: #3949ab;
}

.nav-cell:nth-child(3) .nav-link {
  background: #2e7d32;
}

.nav-cell:nth-child(4) .nav-link {
  background: #f57c00;
}

.nav-link:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/*========================================
  UNIT SMP
========================================*/
.curricula-header {
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
  border-radius: 15px;
  padding: 30px;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.curricula-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.curricula-subtitle {
  font-size: 1.2rem;
  color: var(--very-light-blue);
  max-width: 800px;
  margin: 0 auto;
}

.section-divider {
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--light-blue),
    transparent
  );
  margin: 40px 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.curricula-section {
  margin-bottom: 60px;
  padding: 30px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--medium-blue);
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--pale-blue);
  padding-bottom: 15px;
}

.section-icon {
  font-size: 2.5rem;
  margin-right: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.knowledgeable-icon {
  background-color: var(--pale-blue);
  color: var(--primary-blue);
  border: 2px solid var(--light-blue);
}

.interdependent-icon {
  background-color: var(--pale-blue);
  color: var(--primary-blue);
  border: 2px solid var(--light-blue);
}

.muttaqiin-icon {
  background-color: var(--pale-blue);
  color: var(--primary-blue);
  border: 2px solid var(--light-blue);
}

.smart-icon {
  background-color: var(--pale-blue);
  color: var(--primary-blue);
  border: 2px solid var(--light-blue);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--medium-blue);
  font-style: italic;
  margin-top: 5px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.mb-4 {
  margin-bottom: 30px;
}

.mt-4 {
  margin-top: 30px;
}

.mt-5 {
  margin-top: 40px;
}

.curricula-highlight {
  background-color: var(--pale-blue);
  border-left: 4px solid var(--light-blue);
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.curricula-feature {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  border-top: 3px solid var(--light-blue);
}

.curricula-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 82, 118, 0.15);
}

.curricula-feature i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
}

.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--white);
}

.program-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--light-blue);
}

.program-card h4 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.program-card h4 i {
  margin-right: 10px;
  color: var(--light-blue);
}

.program-card ul {
  list-style-type: none;
  padding-left: 0;
}

.program-card ul li {
  padding-left: 0;
  position: relative;
}

.program-goal {
  background-color: var(--pale-blue);
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-style: italic;
  border-left: 3px solid var(--light-blue);
}

.program-method {
  background-color: var(--very-light-blue);
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  border-left: 3px solid var(--medium-blue);
}

.program-assessment {
  background-color: var(--pale-blue);
  padding: 10px 15px;
  border-radius: 5px;
  border-left: 3px solid var(--dark-blue);
}

.anchor-verses {
  background-color: var(--pale-blue);
  border-left: 3px solid var(--light-blue);
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.anchor-verses p {
  margin-bottom: 8px;
}

.anchor-verses p:last-child {
  margin-bottom: 0;
}

.big-goal {
  background: linear-gradient(135deg, var(--medium-blue), var(--light-blue));
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.big-goal h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.big-goal p {
  font-size: 1.1rem;
  color: var(--very-light-blue);
}

.kra-list {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--light-blue);
}

.kra-list h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pale-blue);
}

.signature-programs {
  margin-top: 40px;
}

.signature-programs h4 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: var(--primary-blue);
}

.signature-programs h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--light-blue);
}

/* Blue button style */
.blue-button {
  background-color: var(--medium-blue);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.blue-button:hover {
  background-color: var(--primary-blue);
}

/*========================================
  UNIT SMA
========================================*/
.curricula-header {
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
  border-radius: 15px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.curricula-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M0,100 L100,0" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  opacity: 0.1;
}

.curricula-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.curricula-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Blueprint Section Styling */
.blueprint-section {
  margin-bottom: 4rem;
  padding: 2.5rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blueprint-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blueprint-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

.blueprint-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #1a5f3f;
}

.blueprint-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
  color: white;
  border-radius: 50%;
  margin-right: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(26, 95, 63, 0.3);
}

.blueprint-icon i {
  font-size: 2rem;
}

.blueprint-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a5f3f;
  margin: 0;
  position: relative;
}

/* Highlight Box */
.curricula-highlight {
  background-color: #f8f9fa;
  border-left: 5px solid #1a5f3f;
  padding: 1.8rem;
  border-radius: 0 10px 10px 0;
  margin: 1.8rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.curricula-highlight:hover {
  transform: translateX(5px);
}

.curricula-highlight h4 {
  color: #1a5f3f;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.curricula-highlight ul,
.curricula-highlight ol {
  padding-left: 1.2rem;
  margin-top: 0.8rem;
}

.curricula-highlight ul li,
.curricula-highlight ol li {
  margin-bottom: 0.6rem;
  position: relative;
}

.curricula-highlight ul li::before {
  content: "•";
  color: #1a5f3f;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Feature Cards */
.curricula-feature {
  background: white;
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border-top: 4px solid #1a5f3f;
  position: relative;
  overflow: hidden;
}

.curricula-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a5f3f, #2d8659);
}

.curricula-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.curricula-feature i {
  font-size: 2.8rem;
  color: #1a5f3f;
  margin-bottom: 1.2rem;
  display: inline-block;
  padding: 1rem;
  background-color: rgba(26, 95, 63, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.curricula-feature:hover i {
  background-color: rgba(26, 95, 63, 0.2);
  transform: scale(1.1);
}

.curricula-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #333;
  font-weight: 600;
}

/* Programmes Breakdown Styling */
.programmes-breakdown {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.programmes-breakdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1a5f3f, #2d8659);
  border-radius: 12px 12px 0 0;
}

.programmes-breakdown h4 {
  color: #1a5f3f;
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e9ecef;
  font-weight: 600;
  position: relative;
}

.programmes-breakdown h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1a5f3f;
}

.programmes-breakdown h4:first-child {
  margin-top: 0;
}

.programmes-breakdown p {
  margin-bottom: 1.2rem;
  font-style: italic;
  color: #6c757d;
  font-size: 1.1rem;
}

.programmes-breakdown ol,
.programmes-breakdown ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
  counter-reset: item;
}

.programmes-breakdown ol li,
.programmes-breakdown ul li {
  position: relative;
  padding: 0.8rem 0 0.8rem 3rem;
  border-bottom: 1px dashed #e9ecef;
  font-size: 1.05rem;
  transition: background-color 0.3s ease;
}

.programmes-breakdown ol li:hover,
.programmes-breakdown ul li:hover {
  background-color: rgba(26, 95, 63, 0.05);
  border-radius: 5px;
}

.programmes-breakdown ol li:last-child,
.programmes-breakdown ul li:last-child {
  border-bottom: none;
}

.programmes-breakdown ol li {
  counter-increment: item;
}

.programmes-breakdown ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(26, 95, 63, 0.3);
}

.programmes-breakdown ul li::before {
  content: "•";
  color: #1a5f3f;
  font-weight: bold;
  position: absolute;
  left: 1rem;
  font-size: 1.5rem;
  line-height: 1;
}

.programmes-breakdown ol ol,
.programmes-breakdown ul ul {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
  counter-reset: subitem;
}

.programmes-breakdown ol ol li,
.programmes-breakdown ul ul li {
  padding: 0.6rem 0 0.6rem 2.5rem;
  border-bottom: 1px dashed #e9ecef;
  font-size: 1rem;
}

.programmes-breakdown ol ol li::before,
.programmes-breakdown ul ul li::before {
  content: counter(subitem, lower-alpha);
  counter-increment: subitem;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.8rem;
  top: 0.6rem;
}
/* Image Styling */
.curricula-content img {
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.curricula-content img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styling */

.page-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.03)"/></svg>');
  opacity: 0.5;
  z-index: -1;
}

/*========================================
  RECRUITMENT
========================================*/
.recruitment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.grid-item {
  perspective: 1000px;
}

.card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-image-container {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  padding: 10px;
  box-sizing: border-box;
}

.card:hover .card-image-container img {
  transform: scale(1.03);
}

.card-content {
  padding: 25px;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}

.card-content h3:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #4a90e2;
}

.card-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.detail-item {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 14px;
}

.detail-item i {
  color: #4a90e2;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.join-text {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

.join-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #5ca0f2);
  border-radius: 2px;
}

.recruitment-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-cta p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4a90e2, #5ca0f2);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
  background: linear-gradient(135deg, #3a80d2, #4a90e2);
}

/*========================================
  CONTACT SECTION
========================================*/
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.contact-info-column {
  flex: 1;
  min-width: 300px;
}

.contact-info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-info-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.contact-info-card > p {
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Locations Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.location-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.location-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.location-title {
  flex: 1;
}

.location-title h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.location-item p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.map-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.location-item:hover .map-embed iframe {
  transform: scale(1.02);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Social Media Section */
.social-media-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-media-section h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.social-media-section h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.social-media-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.social-dropdown {
  position: relative;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

.social-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 28px;
  height: 28px;
  z-index: 1;
}

.tiktok-btn {
  background: linear-gradient(135deg, #000000, #333333);
}

/* Dropup Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 240px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-radius: 12px;
  overflow: hidden;
  bottom: 70px;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.social-dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: #333;
  padding: 14px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-content a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.dropdown-content a:hover::before {
  transform: translateX(0);
}

.dropdown-content a:hover {
  background-color: #f8f9ff;
  padding-left: 22px;
}

.dropdown-content a img,
.dropdown-content a svg {
  width: 24px;
  height: 24px;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.dropdown-content a:hover img,
.dropdown-content a:hover svg {
  transform: scale(1.1);
}

.dropdown-content a span {
  font-size: 1rem;
  font-weight: 500;
}

/* Add arrow indicator for dropup */
.social-dropdown::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 11;
  filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.1));
}

.social-dropdown:hover::after {
  opacity: 1;
}

.instagram-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/*========================================
  FOOTER
========================================*/
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff; /* putih */
  text-decoration: none; /* tidak ada garis bawah */
}

.footer-widget h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: white;
}

.footer-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: white;
  padding-left: 5px;
}

/* Visitor Counter Footer Styles */
.visitor-counter-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.visitor-counter-footer .visitor-counter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.visitor-counter-footer .visitor-counter span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

/* Wrapper untuk gambar dan script counter */
.visitor-counter-footer .hitwebcounter-wrapper a {
  text-decoration: none;
}

/* CSS untuk gambar counter */
.visitor-counter-footer .hitwebcounter-wrapper img {
  display: inline-block;
  vertical-align: middle;
  border: none !important;
  max-width: 100%;
  height: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.instagram-dropdown-container {
  position: relative;
  display: inline-block;
}

.instagram-btn {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.instagram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(252, 175, 69, 0.6);
}

.instagram-icon {
  width: 26px;
  height: 26px;
  color: white;
}

.instagram-content {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 50px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.instagram-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 6px 0;
  width: 100%;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.instagram-content a:hover {
  color: #f09433;
  transform: translateX(5px);
}

.instagram-content img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.dropdown-title {
  color: #f09433;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

.instagram-dropdown-container:hover .instagram-content {
  display: flex;
}

.whatsapp-dropdown-container {
  position: relative;
  display: inline-block;
}

.whatsapp-btn {
  background: #25d366;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
}

.whatsapp-content {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 50px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 230px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.whatsapp-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 6px 0;
  width: 100%;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.whatsapp-content a:hover {
  color: #25d366;
  transform: translateX(5px);
}

.whatsapp-content img {
  width: 20px;
  height: 20px;
}

.whatsapp-dropdown-container:hover .whatsapp-content,
.whatsapp-dropdown-container:focus-within .whatsapp-content {
  display: flex;
}

.tiktok-dropdown-container {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.tiktok-btn {
  background: #000000;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tiktok-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.tiktok-icon {
  width: 26px;
  height: 26px;
  color: white;
}

.tiktok-content {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 50px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.tiktok-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 6px 0;
  width: 100%;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tiktok-content a:hover {
  color: #00f2ea;
  transform: translateX(5px);
}

.tiktok-content img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.tiktok-dropdown-container:hover .tiktok-content {
  display: flex;
}

.phone-container {
  position: relative;
  display: inline-block;
}

.phone-btn {
  background: #128c7e;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
}

.phone-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(18, 140, 126, 0.6);
}

.phone-btn svg {
  width: 26px;
  height: 26px;
  color: white;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e67e22;
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*========================================
  POPUP OVERLAY
========================================*/
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP CONTAINER */
.popup-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.6s ease;
}

.popup-overlay.active .popup-container {
  transform: translateY(0);
  opacity: 1;
}

/* DEKORASI LATAR */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #1565c0, #2196f3);
  bottom: -50px;
  left: -50px;
  animation: float 6s ease-in-out infinite reverse;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  top: 50%;
  left: 10%;
  animation: float 7s ease-in-out infinite;
}

.decorative-shape {
  position: absolute;
  opacity: 0.05;
  z-index: 0;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  transform: rotate(45deg);
  top: 20%;
  right: 15%;
  animation: rotate 15s linear infinite;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1565c0, #1976d2);
  transform: rotate(30deg);
  bottom: 25%;
  right: 30%;
  animation: rotate 12s linear infinite reverse;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #333;
}

.popup-close:hover {
  background-color: #2196f3;
  color: white;
  transform: rotate(90deg);
}

/* SLIDER */
.popup-slider {
  position: relative;
  height: 80vh;
  max-height: 700px;
  overflow: hidden;
  z-index: 1;
}

.popup-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transform: translateX(100%);
}

.popup-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.popup-slide.prev {
  transform: translateX(-100%);
}

.slide-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.slide-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.slide-image-container:hover img {
  transform: scale(1.03);
}

/* LABEL SLIDE */
.slide-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #2196f3;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* TOMBOL & AKSI */
.slide-actions {
  flex: none;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  position: relative;
  z-index: 2;
}

.wa-button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.wa-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease;
  z-index: 0;
}

.wa-button:hover::before {
  width: 100%;
}

.wa-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.wa-button span,
.wa-button svg {
  position: relative;
  z-index: 1;
}

.wa-button svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}

/* DOTS & ARROWS */
.popup-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

.popup-arrows {
  position: absolute;
  top: 50%;
  inset-inline: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.arrow {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: all;
  color: #2196f3;
}

.arrow:hover {
  background-color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* PROGRESS BAR */
.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2e7d32, #1565c0);
  width: 0;
  transition: width 5s linear;
}

.popup-slide.active .progress-bar {
  width: 100%;
}

/* ANIMATIONS */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*========================================
  RESPONSIVE DESIGN
========================================*/
/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero .carousel-item {
    height: 70vh;
  }
}

/* Language Switcher Responsive */
@media (max-width: 768px) {
  .language-switcher {
    top: 90px;
    right: 10px;
  }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Navbar Responsive */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
    margin-right: 10px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .dropdown-menu {
    background-color: rgba(26, 82, 118, 0.98);
  }
}

/* Featured Section Responsive */
@media (max-width: 992px) {
  .featured-section-enhanced {
    padding: 100px 0;
  }

  .featured-section-enhanced .row {
    min-height: 900px;
  }

  .image-column-enhanced,
  .speech-column-enhanced {
    padding: 30px 20px;
  }

  .speech-content-enhanced {
    padding: 30px;
  }

  #speech-content-enhanced {
    font-size: 1rem;
    max-height: 450px;
  }

  .decorative-circle-1,
  .decorative-circle-2 {
    transform: scale(0.8);
  }

  .principal-speeches {
    max-width: 350px;
    margin: 15px 0 30px;
  }

  .speech-badge-enhanced {
    font-size: 1.2rem;
    padding: 10px 25px;
  }

  .principal-image {
    height: 320px;
  }

  .speech-scroll {
    max-height: 320px;
  }

  .principal-badge {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .principal-info {
    padding: 25px;
  }

  .principal-info h3 {
    font-size: 1.5rem;
  }

  .principal-position {
    font-size: 1.05rem;
  }

  .speech-scroll p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .featured-section-enhanced {
    padding: 80px 0;
  }

  .featured-section-enhanced .row {
    min-height: auto;
    margin-bottom: 30px;
  }

  .image-column-enhanced,
  .speech-column-enhanced {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .speech-content-enhanced {
    padding: 25px;
  }

  #speech-content-enhanced {
    font-size: 0.95rem;
    line-height: 1.7;
    max-height: 400px;
  }

  .speaker-info-enhanced {
    flex-direction: column;
    align-items: flex-start;
  }

  .speaker-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .achievement-badge-enhanced {
    margin-top: 15px;
    align-self: flex-end;
  }

  .decorative-circle-1,
  .decorative-circle-2 {
    transform: scale(0.6);
  }

  .decorative-triangle {
    transform: translateY(-50%) rotate(15deg) scale(0.4);
  }

  .decorative-dots {
    transform: scale(0.5);
  }

  .principal-speeches {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 30px;
    max-width: 300px;
  }

  .speech-badge-enhanced {
    font-size: 1.1rem;
    padding: 10px 20px;
  }

  .title-underline {
    width: 80px;
    height: 3px;
  }

  .principals-section .row {
    margin-bottom: 30px;
  }

  .principal-card {
    margin-bottom: 30px;
  }

  .principal-image {
    height: 280px;
  }

  .speech-scroll {
    max-height: 280px;
  }

  .principal-info {
    padding: 20px;
  }

  .principal-info h3 {
    font-size: 1.4rem;
  }

  .principal-position {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .principal-badge {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .speech-scroll p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .featured-section-enhanced {
    padding: 60px 0;
  }

  .speech-badge-enhanced {
    font-size: 1rem;
    padding: 8px 15px;
  }

  .badge-icon {
    font-size: 0.9rem;
  }

  .speech-content-enhanced {
    padding: 20px;
  }

  #speech-content-enhanced {
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 350px;
  }

  .speaker-details-enhanced h4 {
    font-size: 1.1rem;
  }

  .speaker-details-enhanced p {
    font-size: 0.9rem;
  }

  .achievement-badge-enhanced {
    font-size: 0.8rem;
    padding: 8px 15px;
  }

  .badge-star {
    font-size: 0.8rem;
  }

  .decorative-circle-1,
  .decorative-circle-2 {
    transform: scale(0.4);
  }

  .decorative-triangle {
    transform: translateY(-50%) rotate(15deg) scale(0.3);
  }

  .decorative-dots {
    transform: scale(0.4);
  }

  .principal-speeches {
    max-width: 280px;
  }
  .title-underline {
    width: 70px;
  }

  .principal-image {
    height: 250px;
  }

  .principal-info {
    padding: 15px;
  }

  .principal-info h3 {
    font-size: 1.2rem;
  }

  .principal-position {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .speech-scroll {
    max-height: 250px;
    padding-right: 10px;
  }

  .speech-scroll p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .principal-badge {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .principal-card {
    margin-bottom: 20px;
  }
}

/* K-Warrior Values Responsive */
@media (max-width: 480px) {
  .board-header {
    margin: 30px 0 20px;
  }

  .board-title {
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .acronym-letter {
    width: 36px;
    height: 36px;
    font-size: 20px;
    border-width: 1.5px;
  }

  .khalifa-acronym {
    gap: 6px;
  }

  /* Perbaikan untuk kartu nilai di layar kecil */
  .value-card {
    width: 100%;
    max-width: 320px;
    padding: 25px;
  }

  .value-title {
    font-size: 24px;
  }

  .value-title .first-letter {
    font-size: 30px;
  }

  .value-icon {
    width: 70px;
    height: 70px;
  }

  .value-icon img {
    width: 50px;
    height: 50px;
  }
}

/* Statistics Section Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

/* Student Section Responsive */
@media (max-width: 768px) {
  .student-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
  }

  .student-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .student-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }

  .student-card img {
    height: 250px;
  }
}

/* News/Social Media Section Responsive */
@media (max-width: 992px) {
  .gallery-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-4,
  .gallery-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-subtitle {
    font-size: 20px;
  }

  .instagram-table td {
    padding: 10px 15px;
  }

  .text-cell {
    font-size: 14px;
  }

  .instagram-logo {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-4,
  .gallery-3 {
    grid-template-columns: 1fr;
  }
  .section-subtitle {
    font-size: 18px;
  }

  .news-item {
    margin-bottom: 20px;
  }

  .img-container {
    padding-bottom: 100%;
  }

  .instagram-table td {
    padding: 8px 12px;
  }

  .text-cell {
    font-size: 13px;
  }

  .instagram-logo {
    width: 18px;
    height: 18px;
  }
}

/* Unit Table Footer Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .desktop-table {
    display: none;
  }

  .mobile-table {
    display: block;
  }

  .mobile-item {
    padding: 15px;
  }

  .mobile-icon {
    font-size: 22px;
    margin-right: 12px;
  }

  .mobile-label {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 18px;
  }

  .mobile-item {
    padding: 12px 15px;
  }

  .mobile-icon {
    font-size: 20px;
    margin-right: 10px;
  }

  .mobile-label {
    font-size: 14px;
  }
}

/* Unit TK Responsive */
@media (max-width: 768px) {
  .content-block {
    padding: 20px;
  }

  .content-block h3 {
    font-size: 1.2rem;
  }

  .signature-programmes li {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .content-block {
    padding: 15px;
  }

  .content-block h3 {
    font-size: 1.1rem;
  }

  .signature-programmes li {
    padding: 12px;
  }
}

/* Unit SD Responsive */
@media (max-width: 992px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .curricula-title {
    font-size: 2.2rem;
  }

  .knowledgeable-content,
  .interdependent-content,
  .muttaqiin-content,
  .smart-content {
    padding: 25px;
  }

  .knowledgeable-content h3,
  .interdependent-content h3,
  .muttaqiin-content h3,
  .smart-content h3 {
    font-size: 2rem;
  }

  .knowledgeable-content h4,
  .interdependent-content h4,
  .muttaqiin-content h4,
  .smart-content h4 {
    font-size: 1.3rem;
  }

  .verse {
    padding: 12px 15px;
  }

  .programme-category {
    padding: 15px;
  }

  .programme-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }

  .programme-list li {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .nav-table {
    border-spacing: 15px;
  }

  .nav-content {
    padding: 20px 12px;
  }

  .nav-icon {
    font-size: 1.8rem;
  }

  .nav-title {
    font-size: 1.1rem;
  }

  .nav-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .nav-table {
    border-spacing: 10px;
  }

  .nav-table,
  .nav-table tbody,
  .nav-table tr {
    display: block;
    width: 100%;
  }

  .nav-cell {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .nav-cell:last-child {
    margin-bottom: 0;
  }

  .nav-content {
    padding: 20px 15px;
  }

  .interdependent-link a,
  .muttaqiin-link a,
  .smart-link a {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .programme-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Unit SMP Responsive */
@media (max-width: 992px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .curricula-title {
    font-size: 2rem;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .section-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Unit SMA Responsive */
@media (max-width: 992px) {
  .curricula-title {
    font-size: 2.4rem;
  }

  .blueprint-title {
    font-size: 1.8rem;
  }
@media (max-width: 768px) {
  .curricula-title {
    font-size: 2rem;
  }

  .curricula-subtitle {
    font-size: 1rem;
  }

  .blueprint-header {
    flex-direction: column;
    text-align: center;
  }

  .blueprint-icon {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }

  .blueprint-title {
    font-size: 1.6rem;
  }

  .programmes-breakdown {
    padding: 1.8rem;
  }

  .curricula-feature {
    margin-bottom: 1.8rem;
    padding: 1.8rem;
  }
@media (max-width: 576px) {
  .curricula-header {
    padding: 2rem 0;
  }

  .curricula-title {
    font-size: 1.8rem;
  }

  .blueprint-section {
    padding: 1.8rem;
    margin-bottom: 3rem;
  }

  .blueprint-header {
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
  }

  .blueprint-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .blueprint-icon i {
    font-size: 1.6rem;
  }

  .curricula-highlight {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .curricula-highlight h4 {
    font-size: 1.2rem;
  }

  .programmes-breakdown {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .programmes-breakdown h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .programmes-breakdown ol li,
  .programmes-breakdown ul li {
    padding: 0.7rem 0 0.7rem 2.5rem;
    font-size: 1rem;
  }

  .programmes-breakdown ol li::before {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.8rem;
    top: 0.7rem;
  }

  .programmes-breakdown ol ol li,
  .programmes-breakdown ul ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    font-size: 0.95rem;
  }

  .programmes-breakdown ol ol li::before,
  .programmes-breakdown ul ul li::before {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.75rem;
    top: 0.5rem;
  }
  .page-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
  }
}

@media (max-width: 480px) {
  .curricula-title {
    font-size: 1.6rem;
  }

  .blueprint-title {
    font-size: 1.4rem;
  }

  .curricula-feature i {
    font-size: 2.2rem;
  }

  .curricula-feature h4 {
    font-size: 1.1rem;
  }

  .programmes-breakdown ol li,
  .programmes-breakdown ul li {
    padding-left: 2rem;
  }

  .programmes-breakdown ol li::before {
    left: 0;
  }
}

/* Recruitment Responsive */
@media (max-width: 768px) {
  .recruitment-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .join-text {
    font-size: 32px;
  }

  .card-image-container {
    padding-top: 100%;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .detail-item {
    font-size: 13px;
  }

  .recruitment-cta {
    padding: 20px;
  }

  .recruitment-cta p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .join-text {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .detail-item {
    font-size: 12px;
  }

  .detail-item i {
    width: 16px;
    margin-right: 8px;
  }

  .recruitment-cta {
    margin-top: 30px;
    padding: 15px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }

  .card-image-container img {
    padding: 8px;
  }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 25px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
  }

  .dropdown-content {
    min-width: 200px;
    bottom: 60px;
  }

  .social-dropdown::after {
    bottom: 50px;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-info-column,
  .maps-column {
    width: 100%;
  }

  .branches-maps {
    grid-template-columns: 1fr;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .instagram-content,
  .whatsapp-content {
    left: auto;
    right: 0;
  }
}

/* Popup Responsive */
@media (max-width: 768px) {
  .popup-container {
    width: 95%;
    height: 90vh;
    max-height: none;
  }

  .popup-slider {
    height: 90vh;
    max-height: none;
  }

  .slide-label {
    font-size: 14px;
    padding: 6px 12px;
  }

  .wa-button {
    font-size: 14px;
    padding: 10px 18px;
  }

  .arrow {
    width: 44px;
    height: 44px;
  }

  .popup-dots {
    bottom: 60px;
  }

  .slide-actions {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .popup-container {
    width: 95%;
  }

  .popup-slider {
    height: 85vh;
  }

  .slide-label {
    font-size: 14px;
    padding: 6px 12px;
  }

  .wa-button {
    font-size: 14px;
    padding: 10px 18px;
  }

  .arrow {
    width: 44px;
    height: 44px;
  }

  .popup-dots {
    bottom: 60px;
  }

  .circle-2 {
    display: none;
  }
}
