:root {
  --primary-color: #073c7d;
  --secondary-color: #eec302;
  --dark-color: #002147;
  --light-color: #f8fafc;
  --accent-color: #fdc800;
  --text-color: #002147;
  --text-light: #d0d6dd;
  --text-muted: #6c757d;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #073c7d 0%, #0a4d9e 100%);
  --gradient-secondary: linear-gradient(135deg, #eec302 0%, #fdc800 100%);
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
  --shadow-light: 0 2px 20px rgba(7, 60, 125, 0.08);
  --shadow-medium: 0 8px 30px rgba(7, 60, 125, 0.12);
  --shadow-heavy: 0 15px 40px rgba(7, 60, 125, 0.15);
  --shadow-glow: 0 0 30px rgba(253, 200, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  height: auto;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-color);
  overflow-x: hidden;
  background: var(--light-color);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a:hover {
  text-decoration: none;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.content-wrapper {
  flex: 1;
}

/* ==========================================================================
     LOADING SCREEN STYLES
     ========================================================================== */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../../images/push.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(7, 60, 125, 0.85) 0%,
      rgba(0, 33, 71, 0.9) 100%);
  backdrop-filter: blur(2px);
}

.loading-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

.loading-logo {
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.loading-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  padding: 8px;
}

.loading-spinner {
  margin-bottom: 30px;
}

.loading-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 4px;
  border-color: var(--secondary-color);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

.loading-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.loading-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-secondary);
  width: 0%;
  border-radius: 2px;
  animation: loadingProgress 2.5s ease-in-out infinite;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
     SCROLL TO TOP BUTTON STYLES
     ========================================================================== */

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background: var(--gradient-secondary);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.scroll-to-top-btn:active {
  transform: translateY(-2px) scale(1.05);
}

/* ==========================================================================
     UTILITY CLASSES
     ========================================================================== */

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shadow {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
     CONTAINER AND LAYOUT
     ========================================================================== */

.container-title {
  display: flex;
  align-items: center;
  /* Mengatur ikon dan teks sejajar secara vertikal */
  gap: 15px;
  /* Mengurangi jarak antara ikon dan teks */
  margin-bottom: 50px;
  justify-content: center;
  text-align: center;
}

.title-icon {
  width: 50px;
  /* Mengurangi ukuran ikon */
  height: 50px;
  /* Mengurangi ukuran ikon */
  background: var(--gradient-secondary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  /* Mencegah ikon menyusut pada layar kecil */
}

.title-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s;
}

.title-icon:hover::before {
  left: 100%;
}

.title-icon:hover {
  transform: rotate(10deg) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.title-icon i {
  font-size: 22px;
  /* Mengurangi ukuran font ikon */
  color: var(--primary-color);
  z-index: 2;
  position: relative;
}

.title-text {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  /* Mengurangi ukuran font judul */
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  /* Mengurangi jarak antar huruf */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  text-align: center;
}

.container-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.container-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

/* ==========================================================================
     ENHANCED HERO SECTION
     ========================================================================== */

.hero-section {
  background: linear-gradient(135deg,
      rgba(7, 60, 125, 0.3) 0%,
      rgba(0, 33, 71, 0.35) 100%),
    url("../../images/push.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 315px 0 215px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(253,200,0,0.1)"/></svg>') repeat;
  background-size: 100px 100px;
  animation: float 30s infinite linear;
}

@keyframes float {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-out 0.3s both;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-btn {
  padding: 18px 40px;
  margin: 0 15px 15px;
  border-radius: var(--border-radius-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  border: 3px solid transparent;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.hero-btn::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;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn-primary {
  background: var(--gradient-secondary);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-glow);
}

.hero-btn-primary:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  text-decoration: none;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.hero-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero-btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
     ENHANCED ANIMATIONS
     ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
     SECTION STYLES
     ========================================================================== */

.section {
  padding: 100px 0;
  position: relative;
  overflow: visible;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--gradient-light);
}

.toggle-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(7, 60, 125, 0.1);
  box-shadow: var(--shadow-medium);
}

.toggle-item {
  border-bottom: 1px solid rgba(7, 60, 125, 0.1);
  transition: var(--transition);
}

.toggle-item:last-child {
  border-bottom: none;
}

.toggle-item:hover {
  background: rgba(7, 60, 125, 0.02);
}

/* Bagian yang sudah ada, hanya menampilkan yang relevan untuk modifikasi */
.toggle-title {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 25px 30px;
  margin: 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-color);
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  position: relative;
  /* Ditambahkan untuk memastikan z-index ikon bekerja */
}

.toggle-title:hover {
  /* Menghapus background gradient saat hover agar tidak menutupi ikon */
  background: rgba(7, 60, 125, 0.05);
  /* Background ringan dan transparan */
  color: var(--primary-color);
  transform: translateX(5px);
}

.toggle-title:focus {
  outline: none;
}

/* Simplified Toggle Icon Styling */
.toggle-icon {
  color: var(--primary-color);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 16px;
  margin-left: 15px;
  flex-shrink: 0;
  z-index: 2;
  /* Memastikan ikon berada di atas background hover */
}

.toggle-title:hover .toggle-icon {
  color: var(--accent-color);
  /* Warna ikon berubah saat hover */
}

.toggle-title.active .toggle-icon {
  transform: rotate(180deg);
}

.toggle-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: var(--white);
}

.toggle-content.active {
  padding: 30px;
  max-height: 400px;
}

.toggle-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ==========================================================================
     ENHANCED CAROUSEL STYLES
     ========================================================================== */

.enhanced-facilities-carousel {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.carousel-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.carousel-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-image {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      rgba(0, 33, 71, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-item:hover .carousel-overlay {
  opacity: 1;
}

.carousel-caption-enhanced {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: var(--white);
  text-align: left;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.carousel-item:hover .carousel-caption-enhanced {
  transform: translateY(0);
}

.carousel-caption-enhanced h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption-enhanced p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.enhanced-carousel-control {
  width: 20%;
  background: linear-gradient(to right, rgba(7, 60, 125, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
  border: none;
}

.enhanced-facilities-carousel:hover .enhanced-carousel-control {
  opacity: 1;
}

.carousel-control-next.enhanced-carousel-control {
  background: linear-gradient(to left, rgba(7, 60, 125, 0.3), transparent);
}

.enhanced-carousel-control:hover {
  background: linear-gradient(to right, rgba(7, 60, 125, 0.6), transparent);
}

.carousel-control-next.enhanced-carousel-control:hover {
  background: linear-gradient(to left, rgba(7, 60, 125, 0.6), transparent);
}

.enhanced-facilities-carousel .carousel-indicators {
  margin-bottom: 1.5rem;
  gap: 10px;
}

.enhanced-facilities-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  margin: 0;
  transition: var(--transition);
  opacity: 0.7;
}

.enhanced-facilities-carousel .carousel-indicators .active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.2);
  opacity: 1;
}

.enhanced-facilities-carousel .carousel-indicators button:hover {
  background-color: var(--white);
  opacity: 1;
  transform: scale(1.1);
}

/* ENHANCED ROADMAP STYLES - FIXED RESPONSIVE & CONSISTENT CARD SIZES */
.roadmap-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="rgba(7,60,125,0.05)"/><circle cx="80" cy="80" r="0.5" fill="rgba(253,200,0,0.05)"/></svg>') repeat;
  background-size: 50px 50px;
  animation: float 40s infinite linear;
}

.roadmap-container {
  position: relative;
  z-index: 2;
}

.roadmap-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-line {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 300px);
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 3px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(7, 60, 125, 0.3);
}

.roadmap-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.roadmap-step {
  flex: 1;
  text-align: center;
  max-width: 220px;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Memastikan semua card memiliki tinggi yang sama */
  background: var(--white);
  /* Menambahkan background untuk card */
  border-radius: var(--border-radius);
  /* Menambahkan border-radius */
  box-shadow: var(--shadow-light);
  /* Menambahkan shadow */
  padding: 20px;
  /* Menambahkan padding */
  transition: var(--transition);
  /* Menambahkan transisi untuk hover */
}

.roadmap-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.roadmap-step:nth-child(1) {
  animation-delay: 0.1s;
}

.roadmap-step:nth-child(2) {
  animation-delay: 0.2s;
}

.roadmap-step:nth-child(3) {
  animation-delay: 0.3s;
}

.roadmap-step:nth-child(4) {
  animation-delay: 0.4s;
}

.roadmap-step:nth-child(5) {
  animation-delay: 0.5s;
}

.step-number {
  width: 70px;
  /* Mengurangi ukuran lingkaran nomor */
  height: 70px;
  /* Mengurangi ukuran lingkaran nomor */
  background: var(--white);
  border: 4px solid var(--primary-color);
  /* Mengurangi ketebalan border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* Mengurangi margin bawah */
  font-weight: 800;
  font-size: 20px;
  /* Mengurangi ukuran font nomor */
  color: var(--primary-color);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  position: relative;
  z-index: 3;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}

.roadmap-step:hover .step-number {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--accent-color);
  transform: scale(1.1);
  /* Mengurangi efek scale */
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 17px;
  /* Mengurangi ukuran font judul langkah */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  /* Mengurangi margin bawah */
  min-height: 40px;
  /* Mengurangi min-height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  /* Menyesuaikan line-height */
}

.step-description {
  font-size: 14px;
  /* Mengurangi ukuran font deskripsi */
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  text-align: center;
  /* Memastikan teks deskripsi rata tengah */
}

/* FIXED CARD SIZES - CONSISTENT HEIGHT */
.step-details {
  margin-top: auto;
  padding: 15px;
  /* Menyesuaikan padding */
  background: var(--light-color);
  /* Mengubah background agar kontras */
  border-radius: var(--border-radius);
  box-shadow: inset 0 1px 5px rgba(7, 60, 125, 0.05);
  /* Menambahkan inner shadow */
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
  min-height: 150px;
  /* Mengurangi min-height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  /* Memastikan teks di dalam list rata kiri */
}

.roadmap-step:hover .step-details {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.step-details li {
  font-size: 12px;
  /* Mengurangi ukuran font list item */
  color: var(--text-muted);
  margin-bottom: 6px;
  /* Mengurangi margin bawah */
  padding-left: 18px;
  /* Menyesuaikan padding kiri */
  position: relative;
  line-height: 1.4;
  /* Menyesuaikan line-height */
}

.step-details li::before {
  content: "●";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 14px;
  /* Mengurangi ukuran bullet point */
}

/* FIXED MOBILE RESPONSIVE LAYOUT */
@media (max-width: 991px) {
  .roadmap-line {
    display: none;
  }

  .roadmap-steps {
    flex-direction: column;
    gap: 30px;
    /* Mengurangi jarak antar card */
    align-items: center;
    max-width: 400px;
    /* Mengurangi max-width untuk mobile */
    margin: 0 auto;
  }

  .roadmap-step {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding: 20px;
    /* Menyesuaikan padding */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* FIXED MOBILE CONNECTING LINES */
  .roadmap-step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -15px;
    /* Mengurangi jarak */
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    /* Mengurangi ketebalan garis */
    height: 30px;
    /* Mengurangi panjang garis */
    background: var(--gradient-primary);
    border-radius: 2px;
    z-index: 1;
  }

  /* FIXED MOBILE ARROWS */
  .roadmap-step:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: -15px;
    /* Mengurangi jarak */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    /* Mengurangi ukuran panah */
    border-right: 6px solid transparent;
    /* Mengurangi ukuran panah */
    border-top: 10px solid var(--primary-color);
    /* Mengurangi ukuran panah */
    z-index: 2;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .step-title {
    font-size: 15px;
    min-height: auto;
    margin-bottom: 8px;
    text-align: center;
  }

  .step-description {
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
  }

  /* FIXED MOBILE CARD SIZES */
  .step-details {
    padding: 15px;
    width: 100%;
    max-width: 350px;
    min-height: 140px;
    margin-top: 0;
  }

  .step-details li {
    font-size: 11px;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .roadmap-steps {
    max-width: 320px;
    gap: 25px;
  }

  .step-details {
    max-width: 300px;
    padding: 12px;
    min-height: 130px;
  }

  .step-title {
    font-size: 14px;
  }

  .step-description {
    font-size: 12px;
  }

  .step-details li {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .roadmap-steps {
    max-width: 280px;
    gap: 20px;
  }

  .roadmap-step {
    padding: 15px;
  }

  .step-details {
    max-width: 260px;
    padding: 10px;
    min-height: 120px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .step-title {
    font-size: 13px;
  }

  .step-description {
    font-size: 11px;
  }

  .step-details li {
    font-size: 9px;
    margin-bottom: 4px;
    padding-left: 15px;
  }

  .step-details li::before {
    font-size: 12px;
  }
}

/* Enhanced Card Styles */
.card-modern {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  height: 100%;
  margin-bottom: 40px;
  border: 1px solid rgba(7, 60, 125, 0.1);
}

.card-modern:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

/* Enhanced Dormitory Card Styles */
.dorm-card {
  background: var(--white);
  border: 1px solid rgba(7, 60, 125, 0.1);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 100%;
  margin-bottom: 40px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.dorm-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.dorm-img {
  height: 280px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.dorm-card:hover .dorm-img {
  transform: scale(1.05);
}

.dorm-content {
  padding: 35px;
}

.dorm-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-family: "Poppins", sans-serif;
}

.dorm-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.dorm-features li {
  padding: 12px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(7, 60, 125, 0.1);
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.dorm-features li:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.dorm-features li:last-child {
  border-bottom: none;
}

.dorm-features li i {
  color: var(--secondary-color);
  margin-right: 15px;
  width: 25px;
  font-size: 16px;
}

.dorm-btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  border: 2px solid var(--primary-color);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.dorm-btn:hover {
  background: var(--gradient-secondary);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.dorm-btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.dorm-btn-outline:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Enhanced Footer Styles */
.footer {
  background: var(--gradient-primary);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  margin-top: auto;
  z-index: 10;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 80px 80px;
}

.footer-top {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
  padding: 8px 0;
  opacity: 0.9;
}

.footer-link:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 10px;
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

/* Floating Action Buttons Container */
.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Base Floating Button Styles */
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

/* Button Labels */
.btn-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 60, 125, 0.95);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: "Poppins", sans-serif;
}

.btn-label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid rgba(7, 60, 125, 0.95);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.floating-btn:hover .btn-label {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Enhanced Responsive Design */
@media (max-width: 991px) {
  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-heavy);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  .main-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    flex-direction: column;
    padding: 30px 0;
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(7, 60, 125, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    display: block;
    padding: 20px;
    font-size: 16px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-actions {
    order: -1;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .title-text {
    font-size: 2.2rem;
  }

  .enhanced-facilities-carousel .carousel-image {
    height: 400px;
  }

  .carousel-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .loading-text h3 {
    font-size: 1.5rem;
  }

  .loading-text p {
    font-size: 0.9rem;
  }

  .loading-progress {
    width: 150px;
  }

  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 25px;
    left: 25px;
    font-size: 16px;
  }

  .header-top {
    padding: 8px 0;
  }

  .header-contact {
    gap: 20px;
    font-size: 13px;
  }

  .header-social {
    display: none;
  }

  .site-branding img {
    height: 45px;
  }

  .brand-text {
    font-size: 22px;
  }

  .btn-header {
    padding: 12px 20px;
    font-size: 13px;
  }

  .hero-section {
    padding: 180px 0 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-btn {
    display: block;
    margin: 15px auto;
    max-width: 280px;
    text-align: center;
  }

  .title-text {
    font-size: 2rem;
  }

  .container-content p {
    font-size: 16px;
  }

  .enhanced-facilities-carousel .carousel-image {
    height: 300px;
  }

  .carousel-image-wrapper {
    height: 300px;
  }

  .section {
    padding: 60px 0;
  }

  .enhanced-toggle-title {
    padding: 20px;
    font-size: 15px;
  }

  .enhanced-toggle-content.active {
    padding: 20px;
  }

  .enhanced-toggle-icon {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .toggle-icon-wrapper {
    width: 35px;
    height: 35px;
  }

  .toggle-feature-icon {
    font-size: 14px;
  }

  .floating-actions {
    bottom: 80px;
    right: 20px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .btn-label {
    display: none;
  }
}

@media (max-width: 576px) {
  .loading-logo-img {
    width: 60px;
    height: 60px;
  }

  .loading-text h3 {
    font-size: 1.3rem;
  }

  .loading-text p {
    font-size: 0.8rem;
  }

  .loading-progress {
    width: 120px;
  }

  .scroll-to-top-btn {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
  }

  .header-contact {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .title-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .btn-header {
    padding: 10px 16px;
    font-size: 12px;
  }

  .pdcom {
    display: none;
  }

  .container-title {
    flex-direction: column;
    gap: 15px;
  }

  .title-icon {
    width: 50px;
    height: 50px;
  }

  .title-icon i {
    font-size: 20px;
  }

  .enhanced-facilities-carousel .carousel-image {
    height: 250px;
  }

  .carousel-image-wrapper {
    height: 250px;
  }

  .carousel-caption-enhanced {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .carousel-caption-enhanced h5 {
    font-size: 1.2rem;
  }

  .carousel-caption-enhanced p {
    font-size: 13px;
  }

  .enhanced-toggle-title {
    padding: 18px;
    font-size: 14px;
  }

  .toggle-header {
    gap: 12px;
  }

  .toggle-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .toggle-feature-icon {
    font-size: 13px;
  }

  .enhanced-toggle-content.active {
    padding: 18px;
  }

  .enhanced-toggle-content p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header-container {
    flex-direction: row;
    justify-content: flex-start;
  }

  .mobile-menu-toggle {
    order: -2;
    margin-right: 15px;
    margin-left: 0;
  }

  .site-branding {
    order: -1;
  }

  .header-actions {
    order: 0;
    margin-inline: auto;
    padding-right: 30px;
  }

  .pdcom {
    display: none;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Modal entrance animation */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Smooth reveal animation for announcement items */
@keyframes revealItem {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}