/* ==============================================
   SECTION HERO (program_v2.html)
   ============================================== */
.section-hero {
  background: linear-gradient(to right, var(--primary-color), #00509e);
  color: var(--white-color);
}
.main-container-hero {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
/* REVISI HERO SECTION (program_khusus.html) */
.main-container-hero.hp-hero-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default Mobile */
    gap: 40px;
}
@media (min-width: 768px) {
    .main-container-hero.hp-hero-grid {
        grid-template-columns: 1fr 0.8fr; /* Desktop: 2 kolom */
        text-align: left;
    }
    .main-container-hero .content-wrapper-hero {
        align-items: flex-start;
        text-align: left;
    }
}
/* END REVISI HERO */

.content-wrapper-hero {
  max-width: 600px;
}
.image-wrapper-hero img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
}
.title-hero {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white-color) !important;
}
.subtitle-hero {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}
.cta-button-hero {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  border: 2px solid var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-button-hero:hover {
  color: var(--white-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgb(255 193 7 / 0.3);
}
.cta-button-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hover-color);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transform-origin: top;
  transform: scaleY(0);
  z-index: -1;
}
.cta-button-hero:hover::before {
  transform-origin: bottom;
  transform: scaleY(1);
}
@media (min-width: 769px) {
  .panel {
    min-height: 100vh;
  }
  .main-container-hero {
    flex-direction: row;
    text-align: left;
  }
  .content-wrapper-hero {
    max-width: none;
    flex: 1.2;
  }
  .image-wrapper-hero {
    flex: 0.8;
  }
  .image-wrapper-hero img {
    max-height: 80vh;
  }
  .title-hero {
    font-size: 2.8rem;
  }
}

/* ==============================================
   SECTION FEATURES (Counter)
   ============================================== */
.section-features {
  background-color: #eec10f;
}
.main-container-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
}
.features-logo {
  max-width: 300px;
  margin-bottom: 2rem;
}
.counter {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin: 0;
}
.counter-label {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.section-title-features {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100%;
}
.feature-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgb(0 51 102 / 0.12);
}
.card-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary-color);
  background-color: rgb(0 51 102 / 0.08);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}
.feature-card:hover .card-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.feature-card p {
  margin: 0;
  color: #495057;
}

/* ==============================================
   SECTION TESTIMONI (program_v2.html) - Logic Flip Baru
   ============================================== */

/* Container & Intro */
#section-testimoni {
  background-color: var(--testi-accent1-transparent); 
  text-align: center;
  padding-bottom: 80px; 
  overflow: hidden;
  position: relative;
}

.hp-container_v2 { 
  padding: 0 5%; 
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hp-alumni-intro_v2 { 
  font-size: 1.1rem; 
  line-height: 1.6; 
  color: var(--testi-primary);
  max-width: 700px; 
  margin: 0 auto 40px auto; 
  text-align: center !important;
}

.hp-section-title-card_v2 {
  background-color: var(--testi-primary); 
  color: var(--testi-bg-light);
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 0;
  margin-bottom: 40px; 
  box-shadow: 0 4px 15px rgba(24, 47, 92, 0.2);
  
  max-width: 100%; 
  margin-left: auto;
  margin-right: auto;
  width: 90%; 
}

.hp-section-title_v2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center; 
  color: white;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .hp-section-title-card_v2 {
    padding: 20px 30px;
  }
  .hp-section-title_v2 {
    font-size: 2.2rem;
  }
}

/* Grid & Loading */
.hp-testimoni-grid {
  display: grid; 
  grid-template-columns: 1fr; 
  justify-items: center; 
  gap: 35px; 
  min-height: 400px; 
  position: relative; 
  perspective: 1200px;
}
.hp-testimoni-loading { 
  position: absolute; 
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%); 
  font-size: 1.1rem;
  color: var(--testi-primary); 
  opacity: 0.6;
}

/* Styling Kartu Testimoni */
.hp-testimoni-card {
  width: 80%; 
  max-width: 300px; 
  aspect-ratio: 1 / 1.4; 
  position: relative; 
  border-radius: 12px;
  overflow: hidden; 
  padding: 6px; 
}

/* Animated Border (::before) */
.hp-testimoni-card::before {
  content: ""; 
  position: absolute; 
  top: -3px; 
  left: -3px; 
  right: -3px; 
  bottom: -3px;
  z-index: 1; 
  border-radius: 16px; 
  background: conic-gradient(
    from var(--hp-gradient-angle),
    var(--testi-secondary), 
    var(--testi-accent1),   
    var(--testi-primary),   
    var(--testi-secondary)  
  );
  animation: hp-rotate-border-property 4s linear infinite; 
}


/* Card Inner & Flip */
.hp-testimoni-card-inner { 
  position: relative; 
  width: 100%; 
  height: 100%; 
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  transform-style: preserve-3d; 
  z-index: 2; 
}
.hp-testimoni-card-inner.is-flipped { 
  transform: rotateY(180deg); 
}

/* Card Front & Back Base */
.hp-testimoni-card-front, .hp-testimoni-card-back { 
  position: absolute; 
  width: 100%; 
  height: 100%; 
  backface-visibility: hidden;
  border-radius: 8px; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column;
  align-items: center; 
}

/* Card Front Content (Testimoni) */
.hp-testimoni-card-front { 
  background-color: var(--testi-bg-light); 
  color: var(--testi-text-dark); 
  padding: 30px 20px;
  text-align: center;
  padding-top: 40px; 
}
.hp-testimoni-card-front .testi-avatar {
  width: 100px; 
  height: 100px; 
  object-fit: cover; 
  border-radius: 50%;
  margin-bottom: 15px;
}
.hp-testimoni-card-front .testi-name {
  font-size: 1.25rem; 
  font-weight: 700; 
  color: var(--testi-primary);
  margin-bottom: 5px;
}
.hp-testimoni-card-front .testi-role {
  font-size: 0.9rem; 
  font-weight: 500; 
  color: #555;
  margin-bottom: 20px;
}

/* Card Back Content (Logo/Branding) */
.hp-testimoni-card-back { 
  transform: rotateY(180deg);
  background: var(--testi-primary); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.hp-testimoni-card-back .testi-logo {
  width: 70%; 
  max-width: 200px; 
  height: auto; 
  object-fit: contain; 
}

/* Quote di belakang card (Revisi: Font lebih kecil, warna putih) */
.hp-testimoni-card-back .testi-quote {
    color: white; 
    font-size: 12px;
    margin-top: 20px;
    padding: 0 10px;
    font-style: italic;
}

/* Dot Indicators */
.hp-testimoni-dots { 
  display: flex;
  justify-content: center; 
  gap: 8px; 
  margin-top: 40px;
}
.hp-testimoni-dots span { 
  display: inline-block; 
  width: 10px; 
  height: 10px; 
  background-color: rgba(13, 36, 76, 0.3);
  border-radius: 50%; 
  cursor: pointer; 
  transition: background-color 0.3s ease, transform 0.3s ease; 
}
.hp-testimoni-dots span.active { 
  background-color: var(--testi-primary); 
  transform: scale(1.2); 
}


/* Responsive Testimoni */
@media (min-width: 600px) {
  .hp-testimoni-grid { 
    grid-template-columns: 1fr 1fr; 
    max-width: 630px;
  }
}
@media (min-width: 992px) {
  .hp-testimoni-grid { 
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }
}


/* ==============================================
   SECTION KELAS JOGJA (#kelasjogja-section-kelasjogja)
   ============================================== */
#kelasjogja-section-kelasjogja {
  --primary-color-kelasjogja: #4f46e5;
  --secondary-color-kelasjogja: #10b981;
  --accent-color-kelasjogja: #f59e0b;
  --dark-color-kelasjogja: #1f2937;
  --light-color-kelasjogja: #ffffff;
  --grey-color-kelasjogja: #f3f4f6;
  --text-color-kelasjogja: #4b5563;
  --danger-color-kelasjogja: #ef4444;
  --success-color-kelasjogja: #22c55e;
  --border-radius-kelasjogja: 16px;
  --shadow-kelasjogja: 0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg-kelasjogja: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-hover-kelasjogja: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
#kelasjogja-section-kelasjogja {
  background: linear-gradient(to right, var(--primary-color), #00509e);
}
.loader-container-kelasjogja {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 3rem 0;
}
.loader-kelasjogja {
  border: 5px solid var(--grey-color-kelasjogja, #f3f4f6);
  border-top: 5px solid var(--primary-color-kelasjogja, #4f46e5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin-kelasjogja 1s linear infinite;
}
.card-utama-container-kelasjogja {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
#content-container-kelasjogja .title-kelasjogja h2 {
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 3.5rem;
}
#content-container-kelasjogja .main-card-kelasjogja {
  background: var(--light-color-kelasjogja, #ffffff);
  border-radius: var(--border-radius-kelasjogja, 16px);
  box-shadow: var(
    --shadow-lg-kelasjogja,
    0 10px 15px -3px rgb(0 0 0 / 0.1)
  );
  width: 360px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #fff0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.main-card-kelasjogja:hover {
  transform: translateY(-12px);
  box-shadow: var(
    --shadow-hover-kelasjogja,
    0 20px 25px -5px rgb(0 0 0 / 0.1)
  );
  border-color: var(--primary-color-kelasjogja, #4f46e5);
}
#content-container-kelasjogja .main-card-kelasjogja h3 {
  color: #0d244c;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
  animation: pulse-shadow-estetik 3s infinite ease-in-out;
}
.main-card-kelasjogja .features-list-kelasjogja {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  margin-left: 0;
}
.main-card-kelasjogja .features-list-kelasjogja li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-color-kelasjogja, #4b5563);
  font-size: 0.95rem;
  line-height: 1.6;
}
.main-card-kelasjogja .features-list-kelasjogja li .icon-kelasjogja {
  color: var(--success-color-kelasjogja, #22c55e);
  flex-shrink: 0;
  margin-top: 4px;
}
.main-card-kelasjogja .action-buttons-kelasjogja {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.main-card-kelasjogja .btn-kelasjogja {
  flex-grow: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  border: 2px solid var(--primary-color-kelasjogja, #4f46e5);
  background-color: var(--grey-color-kelasjogja, #f3f4f6);
  color: var(--primary-color-kelasjogja, #4f46e5);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.main-card-kelasjogja .btn-kelasjogja:hover {
  background-color: var(--primary-color-kelasjogja, #4f46e5);
  color: var(--light-color-kelasjogja, #ffffff);
  box-shadow: 0 4px 20px rgb(79 70 229 / 0.2);
}
.detail-container-kelasjogja {
  display: none;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
  animation: fadeIn-kelasjogja 0.7s ease-in-out;
}
.detail-grid-kelasjogja {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.detail-card-kelasjogja {
  background: var(--light-color-kelasjogja, #ffffff);
  border-radius: var(--border-radius-kelasjogja, 16px);
  box-shadow: var(
    --shadow-lg-kelasjogja,
    0 10px 15px -3px rgb(0 0 0 / 0.1)
  );
  padding: 2.5rem;
  position: relative;
  border: 1px solid #e5e7eb;
}
#kelasjogja-section-kelasjogja .close-btn-kelasjogja {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grey-color-kelasjogja, #f3f4f6);
  border: none;
  border-radius: 50%;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-color-kelasjogja, #4b5563);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
#kelasjogja-section-kelasjogja .close-btn-kelasjogja:hover {
  background-color: #e5e7eb;
  transform: rotate(90deg);
}
.detail-card-kelasjogja h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color-kelasjogja, #1f2937);
  margin-bottom: 2rem;
}
.detail-card-kelasjogja h4 {
  font-size: 1rem;
  color: var(--dark-color-kelasjogja, #1f2937);
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}
.slider-kelasjogja {
  display: flex;
  background: var(--grey-color-kelasjogja, #f3f4f6);
  border-radius: 10px;
  padding: 5px;
  flex-wrap: wrap;
}
.slider-kelasjogja input[type="radio"] {
  display: none;
}
.slider-kelasjogja label {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-color-kelasjogja, #4b5563);
  transition: all 0.3s ease;
  user-select: none;
  font-size: 0.9rem;
}
.slider-kelasjogja input[type="radio"]:checked + label {
  background: var(--primary-color-kelasjogja, #4f46e5);
  color: var(--light-color-kelasjogja, #ffffff);
  box-shadow: 0 4px 10px rgb(79 70 229 / 0.25);
  font-weight: 600;
}
.dropdown-container-kelasjogja {
  padding: 0;
  background: none;
}
.dropdown-kelasjogja {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #d1d5db;
  background-color: var(--light-color-kelasjogja, #ffffff);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dropdown-kelasjogja:focus {
  outline: none;
  border-color: var(--primary-color-kelasjogja, #4f46e5);
  box-shadow: 0 0 0 3px rgb(79 70 229 / 0.2);
}
#kelasjogja-section-kelasjogja .price-coret-kelasjogja {
  text-decoration: line-through;
  color: var(--danger-color-kelasjogja, #ef4444);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
  text-align: center;
}
#kelasjogja-section-kelasjogja .price-diskon-kelasjogja {
  color: var(--primary-color-kelasjogja, #4f46e5);
  font-size: 2rem;
  font-weight: 800;
  margin-top: -2rem;
  letter-spacing: -1px;
  text-align: center;
}
.dp-info-kelasjogja {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dp-info-kelasjogja p {
  font-size: 1rem;
  color: var(--text-color-kelasjogja, #4b5563);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
.dp-info-kelasjogja .dp-price-kelasjogja {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color-kelasjogja, #10b981);
}
.countdown-container-kelasjogja {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.countdown-item-kelasjogja {
  background-color: var(--grey-color-kelasjogja, #f3f4f6);
  padding: 1rem;
  border-radius: 12px;
  min-width: 70px;
  border: 1px solid #e5e7eb;
}
.countdown-number-kelasjogja {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color-kelasjogja, #1f2937);
}
.countdown-label-kelasjogja {
  font-size: 0.7rem;
  color: var(--text-color-kelasjogja, #4b5563);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.daftar-btn-kelasjogja {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(
    45deg,
    var(--secondary-color-kelasjogja, #10b981),
    #14d1a9
  );
  color: var(--light-color-kelasjogja, #ffffff);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgb(16 185 129 / 0.3);
}
.daftar-btn-kelasjogja:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgb(16 185 129 / 0.4);
}
.jadwal-info-kelasjogja {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--dark-color-kelasjogja, #1f2937);
}
.info-list-kelasjogja {
  list-style: none;
  margin-top: 1.5rem;
}
.info-list-kelasjogja li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: var(--text-color-kelasjogja, #4b5563);
}
.info-list-kelasjogja .icon-kelasjogja {
  color: var(--primary-color-kelasjogja, #4f46e5);
  margin-top: 4px;
  flex-shrink: 0;
}
.hidden-kelasjogja {
  display: none !important;
}
.fade-out-kelasjogja {
  animation: fadeOut-kelasjogja 0.5s ease-out forwards;
}
.carousel-container-kelasjogja {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track-kelasjogja {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-track-kelasjogja .main-card-kelasjogja {
  flex-shrink: 0;
  width: 100%;
}
.carousel-btn-kelasjogja {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(255 255 255 / 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-kelasjogja, 0 4px 6px -1px rgb(0 0 0 / 0.1));
}
.carousel-prev-kelasjogja {
  left: 16px;
  color: #000;
}
.carousel-next-kelasjogja {
  right: 16px;
  color: #000;
}
@media (max-width: 1200px) {
  .detail-grid-kelasjogja {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  #kelasjogja-section-kelasjogja .carousel-container-kelasjogja {
    display: block;
  }
  #kelasjogja-section-kelasjogja .card-utama-container-kelasjogja {
    display: none;
  }
  .detail-grid-kelasjogja {
    padding: 0.5rem;
  }
  .detail-card-kelasjogja {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 769px) {
  #kelasjogja-section-kelasjogja .carousel-container-kelasjogja {
    display: none;
  }
}

/* ==============================================
   SECTION LAST
   ============================================== */
#last-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem;
  font-family: "Poppins", sans-serif;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  padding-bottom: 0;
}
.image-container-last {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-last {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.uraian-last {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  color: #333;
}
.uraian-last h4 {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  color: #4a4a4a;
}
.uraian-last h4 a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to top, #007bff30, #007bff30);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.3s ease-in-out;
}
.uraian-last h4 a:hover {
  background-size: 100% 100%;
}
.button-wrapper-last {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 1rem;
}
.button-last {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(95deg, #ff6b6b, #ff8e53);
  box-shadow: 0 4px 15px rgb(255 120 80 / 0.3);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-out;
}
.button-last:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgb(255 120 80 / 0.4);
}
@media (max-width: 768px) {
  #last-section {
    flex-direction: column-reverse;
    padding: 2rem 1rem;
  }
  .uraian-last {
    align-items: center;
    text-align: center;
  }
}

