/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      5.2.0 (Aesthetic Features Card Redesign)
*/

/* --- Global Styles & Variables --- */
:root {
  --primary-color: #003366;
  --secondary-color: #ffc107;
  --hover-color: #fdb803;
  --bg-color: #f8f9fa;
  --text-color: #333333;
  --white-color: #ffffff;
  --font-family: "montsterrat", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  margin: 0;
}
.panel {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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;
}
.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);
}
.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);
}
.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;
}
#testimonial-section {
  background-color: #dcddde;
}
.testimonial-container {
  display: grid;
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
}
.avatar-container {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9ecef, #ced4da);
  position: relative;
}
.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.avatar-container::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    #ffc107,
    #ffde7a,
    #fff3cd,
    transparent 80%
  );
  animation: rotate-spinner 1.5s linear infinite;
}
.user-info {
  display: flex;
  flex-direction: column;
}
.user-info .name {
  font-size: 1.2em;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.user-info .role {
  font-size: 14px;
  color: #495057;
  margin-top: 4px;
}
.card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.join-class {
  font-size: 1em;
  font-weight: 600;
  background-color: #e9ecef;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  margin: 0 20px;
}
.scores-container {
  display: flex;
  align-items: stretch;
  gap: 10px;
  background-color: #fff3cd;
  padding: 10px 15px;
  margin-top: 15px;
}
.score-box {
  background-color: #d9534f;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.score-box .label {
  font-size: 0.75em;
  margin-bottom: 5px;
  opacity: 0.9;
}
.score-box .value {
  font-size: 1.8em;
  font-weight: 700;
}
.quote-wrapper {
  margin: 20px;
  margin-top: 15px;
}
.testimonial-quote {
  font-size: 0.9em;
  color: #495057;
  line-height: 1.5;
  margin: 0;
}
.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
}
.toggle-quote-btn {
  background: 0;
  border: 0;
  color: #d9534f;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 10px;
  text-align: left;
}
.score-arrow {
  display: none;
}
@keyframes rotate-spinner {
  to {
    transform: rotate(1turn);
  }
}
@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;
  }
}
@media (max-width: 768px) {
  .testimonial-container {
    grid-template-columns: 1fr;
  }
  .scores-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .score-arrow {
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 10px;
  }
  .score-arrow::after {
    content: "→";
  }
}
#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;
}
@keyframes spin-kelasjogja {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.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;
}
@keyframes fadeIn-kelasjogja {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut-kelasjogja {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.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;
  }
}
@keyframes pulse-shadow-estetik {
  0% {
    text-shadow: 0 0 0 #fff0;
  }
  50% {
    text-shadow: 0 0 12px rgb(238 193 15 / 0.9);
  }
  100% {
    text-shadow: 0 0 0 #fff0;
  }
}
#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;
  }
}
.main-container-footer {
  background-color: rgb(13 36 76 / 0.8);
  color: #fff;
  padding: 60px 40px 20px 40px;
  font-family: "Poppins", sans-serif;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.sisi-kiri-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 280px;
}
.sisi-tengah-footer,
.sisi-kanan-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}
.logo-image-footer {
  width: 200px;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.logo-image-footer.loaded-footer {
  opacity: 1;
}
.instagram-link-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}
.instagram-link-footer:hover {
  color: orange;
}
.instagram-icon-footer {
  width: 14px;
  height: 14px;
  stroke: #fff;
  transition: stroke 0.3s ease, transform 0.3s ease;
}
.instagram-link-footer:hover .instagram-icon-footer {
  stroke: orange;
  transform: scale(1.1) rotate(-15deg);
}
.maps-container-footer {
  width: 100%;
  height: 200px;
  background-color: #1a3a6e;
  border-radius: 8px;
  overflow: hidden;
}
.maps-iframe-footer {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.address-title-footer {
  font-size: 15px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}
.sisi-kanan-footer {
  gap: 15px;
}
.nav-link-footer {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  align-self: flex-start;
}
.nav-link-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: orange;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link-footer:hover::after {
  width: 100%;
}
.copyright-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #1a3a6e;
  color: #a0a0a0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .content-wrapper-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sisi-kiri-footer,
  .sisi-tengah-footer,
  .sisi-kanan-footer {
    align-items: center;
  }
  .nav-link-footer {
    align-self: center;
  }
}
@keyframes instagram-gradient-footer {
  0% {
    filter: drop-shadow(0 0 1px #fdcb52) drop-shadow(0 0 3px #fdcb52);
  }
  25% {
    filter: drop-shadow(0 0 1px #fd1d1d) drop-shadow(0 0 3px #fd1d1d);
  }
  50% {
    filter: drop-shadow(0 0 1px #c13584) drop-shadow(0 0 3px #c13584);
  }
  75% {
    filter: drop-shadow(0 0 1px #833ab4) drop-shadow(0 0 3px #833ab4);
  }
  100% {
    filter: drop-shadow(0 0 1px #fdcb52) drop-shadow(0 0 3px #fdcb52);
  }
}
.instagram-link-footer:hover .instagram-icon-footer {
  stroke: #fff;
  transform: scale(1.1);
  animation: instagram-gradient-footer 2s linear infinite;
}
.sisi-kanan-footer {
  align-items: flex-end;
  text-align: right;
}
.nav-link-footer {
  align-self: auto;
}
.copyright-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.copyright-footer a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .sisi-kanan-footer {
    align-items: center;
    text-align: center;
  }
}
.whatsapp-fab-container-minol {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out,
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
}
.whatsapp-fab-container-minol.visible-minol {
  opacity: 1;
  transform: scale(1);
}
.fab-link-minol {
  display: block;
  animation: shake-and-glow-minol 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.fab-link-minol:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}
.fab-image-minol {
  display: block;
  width: 150px;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 10px rgb(0 0 0 / 0.25));
  transition: filter 0.3s ease;
}
.fab-link-minol:hover .fab-image-minol {
  filter: drop-shadow(0 6px 15px rgb(0 0 0 / 0.35)) brightness(1.05);
}
@keyframes shake-and-glow-minol {
  0%,
  100% {
    transform: rotate(0deg);
    filter: drop-shadow(0 4px 10px rgb(13 71 161 / 0.3));
  }
  5%,
  15% {
    transform: rotate(4deg);
  }
  10%,
  20% {
    transform: rotate(-4deg);
  }
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(0deg);
    filter: drop-shadow(0 8px 25px rgb(13 71 161 / 0.7));
  }
}
#features-section,
#testimonial-section,
#kelasjogja-section-kelasjogja,
#last-section {
  visibility: hidden;
}

/* ==============================================
   ==============================================
   ==      KODE HOMEPAGE.CSS DIMULAI DI SINI   ==
   ==============================================
   ============================================== */

/* ==============================================
   GLOBAL & UTILITIES (homepage.css)
   ============================================== */

/* Variabel Warna & Font */
:root {
  --hp-primary: #0d244c;
  --hp-secondary-card: #dfff6a73; /* bg card 'kenapa' */
  --hp-green-wa: #25d366;
  --hp-white: #ffffff;
  --hp-text-dark: #333333;
  --hp-text-light: #f8f9fa;
  --hp-border: #eeeeee;
  --hp-font: "Montserrat", sans-serif;
  --hp-btn-color1: #0d244c;
  --hp-btn-color1-hover: #ffc107; /* Contoh warna hover kontras */
  --hp-btn-color2-border: #0d244c;
  --hp-btn-color2-hover-bg: #0d244c;
  --hp-btn-color2-hover-text: #ffffff;
}

/* Reset Universal & Font */
.homepage-container *,
.homepage-container *::before,
.homepage-container *::after {
  box-sizing: border-box;
  font-family: var(--hp-font);
  margin: 0;
  padding: 0;
}

.homepage-container {
  width: 100%;
  overflow-x: hidden; /* Mencegah horizontal scroll dari animasi */
  color: var(--hp-text-dark);
}

.hp-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Utility Class untuk Judul Section */
.hp-section-title-card {
  background-color: var(--hp-primary);
  color: var(--hp-white);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(13, 36, 76, 0.1);
}

.hp-section-title-card h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--hp-white);
}

/* ==============================================
   ANIMASI (homepage.css)
   ============================================== */

/* Base state (hidden) */
.hp-animate {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animasi Fade In */
.hp-animate[data-animation="fade-in"] {
  transform: translateY(10px);
}
.hp-animate[data-animation="fade-in"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animasi Fade In Up */
.hp-animate[data-animation="fade-in-up"] {
  transform: translateY(30px);
}
.hp-animate[data-animation="fade-in-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animasi Slide In Left */
.hp-animate[data-animation="slide-in-left"] {
  transform: translateX(-50px);
}
.hp-animate[data-animation="slide-in-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animasi Slide In Right */
.hp-animate[data-animation="slide-in-right"] {
  transform: translateX(50px);
}
.hp-animate[data-animation="slide-in-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animasi Flip In (Hero Image) */
@keyframes hp-flip-in {
  from {
    transform: perspective(1000px) rotateY(90deg) scale(0.9);
    opacity: 0;
  }
  to {
    transform: perspective(1000px) rotateY(0deg) scale(1);
    opacity: 1;
  }
}
.hp-animate[data-animation="flip-in"].is-visible {
  animation: hp-flip-in 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 1; /* Set opacity agar 'forwards' bekerja */
}

/* ==============================================
   SECTION HERO (homepage.css)
   ============================================== */
#hp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--hp-white);
  padding-top: 100px; /* Jarak dari header */
  padding-bottom: 60px;
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile first: 1 kolom */
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hp-hero-content {
  text-align: center; /* Mobile first: center */
}

.hp-hero-content h1 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  color: var(--hp-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hp-hero-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--hp-text-dark);
}

.hp-hero-content h2 a {
  color: var(--hp-primary);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(
    to top,
    var(--hp-btn-color1-hover) 50%,
    transparent 50%
  );
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease-out;
}

.hp-hero-content h2 a:hover {
  background-position: 0 100%;
}

.hp-hero-cta-group {
  display: flex;
  flex-direction: column; /* Mobile first: tumpuk */
  gap: 1rem;
  align-items: center;
}

.hp-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--hp-primary);
  transition: all 0.3s ease-out;
  cursor: pointer;
  width: 100%;
  max-width: 250px; /* Batas lebar tombol di mobile */
}

.hp-btn-primary {
  background-color: var(--hp-btn-color1);
  color: var(--hp-white);
}

.hp-btn-primary:hover {
  background-color: var(--hp-btn-color1-hover);
  border-color: var(--hp-btn-color1-hover);
  color: var(--hp-primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 15px rgba(13, 36, 76, 0.2);
}

.hp-btn-secondary {
  background-color: transparent;
  color: var(--hp-btn-color1);
}

.hp-btn-secondary:hover {
  background-color: var(--hp-btn-color2-hover-bg);
  color: var(--hp-btn-color2-hover-text);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 15px rgba(13, 36, 76, 0.2);
}

.hp-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-hero-image img {
  width: 80%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
}

/* Hero - Tablet & Desktop */
@media (min-width: 768px) {
  #hp-hero {
    padding-top: 60px;
  }

  .hp-hero-grid {
    grid-template-columns: 1fr 0.8fr; /* 2 kolom */
  }

  .hp-hero-content {
    text-align: left; /* Desktop: rata kiri */
  }

  .hp-hero-cta-group {
    flex-direction: row; /* Desktop: berdampingan */
    justify-content: flex-start;
  }

  .hp-btn {
    width: auto; /* Lebar tombol auto di desktop */
  }

  .hp-hero-image img {
    width: 100%;
  }
}

/* ==============================================
   SECTION TENTANG (homepage.css)
   ============================================== */
#hp-tentang {
  background-color: var(--hp-white);
}

.hp-tentang-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile first: 1 kolom */
  gap: 40px;
  align-items: center;
}

.hp-tentang-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-tentang-image img {
  width: 80%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
}

.hp-tentang-content p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hp-tentang-content p:last-child {
  margin-bottom: 0;
}

.hp-tentang-content b {
  color: var(--hp-primary);
  font-weight: 700;
}

/* Tentang - Tablet & Desktop */
@media (min-width: 768px) {
  .hp-tentang-grid {
    grid-template-columns: 0.8fr 1fr; /* 2 kolom */
  }
  .hp-tentang-image img {
    width: 100%;
  }
}

/* ==============================================
   REVISI 2: SECTION ALUMNI (homepage.css)
   (Perbaikan Animasi Border - Menggunakan @property)
   ============================================== */

/* (BARU) Daftarkan properti --hp-gradient-angle 
   agar bisa dianimasikan. Ini kuncinya! */
@property --hp-gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

#hp-alumni {
  background-color: var(--hp-white);
  overflow: hidden; /* Mencegah gradien keluar */
}
.hp-alumni-grid-container {
  position: relative;
}
.hp-alumni-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 kolom */
  gap: 30px;
  max-width: 300px; /* Batasi lebar di mobile */
  margin: 0 auto;
  perspective: 2000px;
}

.hp-alumni-card {
  width: 100%;
  aspect-ratio: 1 / 1.4; /* Lebih tinggi untuk memuat konten */
  position: relative;
}

/* REVISI PADA ::before */
.hp-alumni-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: 1; /* DI BELAKANG KONTEN KARTU */
  border-radius: 16px; /* Sedikit lebih besar dari border kartu */

  /* (REVISI) Gunakan var() untuk 'from' angle */
  background: conic-gradient(
    from var(--hp-gradient-angle),
    #ffc107,
    #ffde7a,
    #fff3cd,
    transparent 80%
  );

  /* (REVISI) Animasikan properti --hp-gradient-angle */
  /* Ini TIDAK menggunakan 'transform' */
  animation: hp-rotate-border-property 2s linear infinite;
}

/* (BARU) Keyframe ini menganimasikan variabel, bukan elemen */
@keyframes hp-rotate-border-property {
  0% {
    --hp-gradient-angle: 0deg;
  }
  100% {
    --hp-gradient-angle: 360deg;
  }
}

/* KODE SISA DI BAWAH INI TETAP SAMA DARI REVISI SEBELUMNYA 
  (z-index, flip, front, back, etc.)
*/

.hp-alumni-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1); /* Animasi flip smooth */
  z-index: 1; /* z-index sama dgn border */
}
.hp-alumni-card-inner.is-flipped {
  transform: rotateY(180deg);
}

.hp-alumni-card-front,
.hp-alumni-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2; /* DI ATAS border */
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--hp-white);
}

/* Sisi Depan Kartu (Konten Info) */
.hp-alumni-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #fff 40%, #fffbe6 100%);
}
.hp-alumni-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Round frame */
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid var(--hp-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.hp-alumni-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hp-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hp-alumni-quote {
  font-size: 0.9rem;
  color: var(--hp-text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
  flex-grow: 1;
  min-height: 40px;
}
.hp-alumni-read-more {
  background: none;
  border: none;
  color: var(--hp-primary);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 5px;
  flex-shrink: 0;
}

/* Sisi Belakang Kartu (Logo Baru) */
.hp-alumni-card-back {
  transform: rotateY(180deg);
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-alumni-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots Indicator */
.hp-alumni-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hp-alumni-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hp-alumni-dots span.active {
  background-color: var(--hp-primary);
  transform: scale(1.2);
}

/* Media Queries */
@media (min-width: 600px) {
  .hp-alumni-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 630px;
  }
}
@media (min-width: 992px) {
  .hp-alumni-grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }
}

/* ==============================================
   REVISI: SECTION PROGRAM (homepage.css - Swiper Carousel)
   ============================================== */
#hp-program {
  background-color: var(--hp-white);
  /* Tambahkan padding bawah agar navigasi tidak terlalu mepet */
  padding-bottom: 80px;
}

/* Container utama Swiper */
.hp-program-swiper {
  width: 100%;
  overflow: hidden; /* Penting untuk Swiper */
  padding: 20px 0; /* Beri sedikit ruang atas/bawah */
}

/* Masing-masing slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out; /* */
  opacity: 0.7;
  transform: scale(0.85);
}

/* Style untuk kartu program (tetap sama) */
.hp-program-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  width: 100%; /* Lebar kartu mengikuti slide */
  min-height: 350px;
  background-size: cover;
  background-position: center;
  transition: box-shadow 0.4s ease-out; /* Hanya transisi shadow */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hapus hover transform dari kartu, karena dikontrol Swiper */
.hp-program-card:hover {
  /* transform: translateY(-10px) scale(1.03); */ /* Dihapus */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.hp-program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: background 0.4s ease;
}
.hp-program-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.hp-program-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: var(--hp-white);
  z-index: 1;
}
.hp-program-content h2 {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  font-weight: 600; /* Sedikit lebih tipis */
  line-height: 1.3;
  color: var(--hp-white);
  margin-bottom: 0.5rem;
}
.hp-program-content span {
  /* (BARU) Menjadikannya "card" / tombol */
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px; /* Sesuai permintaan Anda */

  /* (REVISI) Warna kontras */
  font-size: 1rem;
  font-weight: 600;
  color: var(--hp-btn-color1-hover); /* Teks: Kuning */
  background-color: var(--hp-primary); /* Latar: Biru tua */

  /* (REVISI) Transisi untuk hover yang mulus */
  transition: letter-spacing 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.hp-program-card:hover .hp-program-content span {
  letter-spacing: 0.5px;
  
  /* (BARU) Efek hover: Balik warnanya agar tetap kontras */
  color: var(--hp-primary); /* Teks: Biru tua */
  background-color: var(--hp-btn-color1-hover); /* Latar: Kuning */
}

/* Styling Tombol Navigasi Swiper */
.hp-swiper-button-prev,
.hp-swiper-button-next {
  color: var(--hp-primary); /* Warna panah */
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hp-swiper-button-prev::after,
.hp-swiper-button-next::after {
  font-size: 20px; /* Ukuran panah */
  font-weight: bold;
}
.hp-swiper-button-prev:hover,
.hp-swiper-button-next:hover {
  background-color: var(--hp-white);
  transform: scale(1.1);
}

/* --- RESPONSIVE CAROUSEL --- */

/* Mobile (Default): 1 slide, tanpa zoom */
.swiper-slide {
   opacity: 1; /* Tampilkan full opacity */
   transform: scale(1); /* Tanpa scale down */
}

/* Tablet ( >= 768px): 3 slides, centered, active zoom */
@media (min-width: 768px) {
  .swiper-slide {
     opacity: 0.7; /* Kembalikan opacity redup */
     transform: scale(0.85); /* Kembalikan scale down */
  }
  /* Slide yang aktif di tengah */
  .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1); /* Zoom ke ukuran normal */
    z-index: 1; /* Pastikan di atas slide lain */
  }
  .hp-program-swiper {
     padding: 20px 40px; /* Beri ruang untuk slide samping */
  }
}

/* Desktop ( >= 1024px) - Mungkin sama dengan tablet, bisa disesuaikan */
@media (min-width: 1024px) {
    /* Aturan sama dengan tablet, tapi mungkin padding lebih besar */
     .hp-program-swiper {
       padding: 20px 60px;
    }
}

/* ==============================================
   REVISI: SECTION KENAPA (homepage.css - Menggunakan Inline SVG)
   ============================================== */
#hp-kenapa {
  background-color: var(--hp-white);
  text-align: center;
}

#hp-kenapa h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--hp-primary);
  margin-bottom: 40px;
}

.hp-kenapa-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 kolom */
  gap: 20px;
}

.hp-kenapa-card {
  background-color: var(--hp-secondary-card);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.hp-kenapa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* REVISI: Target SVG, bukan i */
.hp-kenapa-card .hp-kenapa-icon {
  /* Ukuran dari width/height di SVG tag */
  color: var(--hp-primary);
  margin-bottom: 1rem;
  /* Atur stroke jika ikon outline, atau fill jika ikon fill */
  stroke: var(--hp-primary); /* Untuk ikon outline */
  fill: none; /* Pastikan fill none untuk ikon outline */
}
/* Jika ada ikon yang pakai fill, tambahkan rule spesifik jika perlu */
/* Contoh: .hp-kenapa-card .hp-kenapa-icon-filled { fill: var(--hp-primary); stroke: none; } */

.hp-kenapa-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hp-primary);
  margin-bottom: 0.5rem;
}

.hp-kenapa-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.hp-kenapa-bingung {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 1rem;
  color: var(--hp-primary);
}

.hp-kenapa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--hp-green-wa);
  color: var(--hp-white);
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.hp-kenapa-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* REVISI: Target SVG WhatsApp */
.hp-kenapa-cta .hp-whatsapp-icon {
  /* Ukuran dari width/height di SVG tag */
  /* Fill sudah diatur di SVG path, jadi tidak perlu di sini */
  vertical-align: middle; /* Sejajarkan dengan teks */
}

/* Kenapa - Tablet */
@media (min-width: 600px) {
  .hp-kenapa-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  }
}

/* Kenapa - Desktop */
@media (min-width: 992px) {
  .hp-kenapa-grid {
    grid-template-columns: repeat(5, 1fr); /* 5 kolom */
  }
}

/* --- Revisi Animasi Card 'Kenapa' (Mobile) --- */

/* 1. Definisikan animasi keyframe */
/* Kita akan menggerakkan track sejauh 5 card (karena ada 5 card asli) */
/* 5 card x 4 detik/card = 20 detik total durasi animasi */
@keyframes hp-kenapa-scroll {
  0% {
    transform: translateX(0);
  }
  /* Kita menggerakkan sejauh 50% dari total lebar track.
    (Track = 5 card asli + 5 card clone = 10 card. 50% = 5 card)
  */
  100% {
    transform: translateX(-50%);
  }
}

/* 2. Terapkan HANYA di mobile (di bawah 600px) */
@media (max-width: 599px) {
  /* Ubah .hp-kenapa-grid dari 'grid' menjadi 'viewport' 
    untuk menyembunyikan card lain
  */
  #hp-kenapa .hp-kenapa-grid {
    display: block; /* Hapus layout grid di mobile */
    overflow: hidden; /* Sembunyikan card yang di luar layar */
    padding-bottom: 20px; /* Opsional: memberi sedikit ruang di bawah */
  }

  /* Ini adalah 'track' yang akan kita animasikan.
    Class .hp-kenapa-track-active ditambahkan oleh JS 
    SETELAH card berhasil digandakan.
  */
  #hp-kenapa .hp-kenapa-grid.hp-kenapa-track-active {
    display: flex; /* Buat semua card berbaris horizontal */
    /* 5 card asli + 5 card clone = 10 card */
    /* 10 card x 100% lebar = 2000% ??? */
    /* Maaf, 10 card * 100% lebar = 1000% */
    width: calc(100% * 10); /* Total lebar track (10 card) */

    /* Jalankan animasi */
    animation: hp-kenapa-scroll 20s linear infinite;
    will-change: transform;
  }

  /* Atur setiap card di dalam track
  */
  #hp-kenapa .hp-kenapa-grid.hp-kenapa-track-active .hp-kenapa-card {
    width: 100%; /* Setiap card lebarnya 100% (1 card per layar) */
    flex-shrink: 0; /* Pastikan card tidak mengecil */
    padding: 0 10px; /* Opsional: beri jarak antar card */

    /* Matikan animasi fade-in-up bawaan di mobile 
      agar tidak konflik dengan animasi scroll
    */
    opacity: 1;
    transform: none;
    animation: none;
    data-animation: none;
  }
}

/* --- Revisi Slider 'Kenapa' (Mobile) --- */

/* 1. Styling Swiper (Mobile-first) */
#hp-kenapa .hp-kenapa-swiper {
  overflow: hidden; /* Wajib untuk Swiper */
  padding-bottom: 40px; /* Ruang untuk dots */
  width: 100%;
}

/* 2. Styling Card di dalam slide */
#hp-kenapa .swiper-slide.hp-kenapa-card {
  height: auto; /* Biarkan Swiper atur tinggi */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Pastikan konten rata atas */

  /* Matikan animasi bawaan agar tidak konflik */
  opacity: 1;
  transform: none;
  animation: none;
}

/* 3. Styling Dots */
#hp-kenapa .hp-kenapa-pagination {
  bottom: 10px; /* Posisi dots */
}
#hp-kenapa .hp-kenapa-pagination .swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
}
#hp-kenapa .hp-kenapa-pagination .swiper-pagination-bullet-active {
  background-color: var(--hp-primary); /* Warna dari root */
}

/* 4. Restore Grid Layout di Desktop (>= 600px) */
@media (min-width: 600px) {
  /* Matikan Swiper, kembalikan ke Grid */
  #hp-kenapa .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom tablet */
    gap: 20px;
    /* Hapus style swiper-wrapper */
    transform: none !important;
  }

  /* Kembalikan style card seperti semula */
  #hp-kenapa .swiper-slide.hp-kenapa-card {
    width: auto !important; /* Hapus width Swiper */
    height: 100%; /* Biarkan grid mengatur tinggi */
  }
}

@media (min-width: 992px) {
  /* Aturan 5 kolom desktop */
  #hp-kenapa .swiper-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==============================================
   SECTION TUTOR (STYLE FLIP 3D)
   ============================================== */

#hp-tutor {
  background-color: var(--hp-white);
  overflow: hidden;
}

.hp-tutor-grid-container {
  position: relative;
}

.hp-tutor-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 kolom */
  gap: 30px;
  max-width: 300px; /* Batasi lebar di mobile */
  margin: 0 auto;
  perspective: 2000px;
}

.hp-tutor-card {
  width: 100%;
  aspect-ratio: 1 / 1.4; /* Samakan rasio dengan alumni */
  position: relative;
}

/* Menggunakan style border gradien dari alumni */
.hp-tutor-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),
    #ffc107,
    #ffde7a,
    #fff3cd,
    transparent 80%
  );
  animation: hp-rotate-border-property 2s linear infinite;
}

/* Kontainer 3D flip */
.hp-tutor-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.hp-tutor-card-inner.is-flipped {
  transform: rotateY(180deg);
}

/* Sisi Depan dan Belakang Card */
.hp-tutor-card-front,
.hp-tutor-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--hp-white);
}

.hp-tutor-card-back {
  transform: rotateY(180deg);
}

/* Styling untuk gambar di dalam card */
.hp-tutor-card-front img,
.hp-tutor-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dots Indicator */
.hp-tutor-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hp-tutor-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hp-tutor-dots span.active {
  background-color: var(--hp-primary);
  transform: scale(1.2);
}

/* Media Queries untuk 3 card */
@media (min-width: 600px) {
  .hp-tutor-grid {
    grid-template-columns: 1fr 1fr 1fr; /* Tampilkan 3 card */
    max-width: 100%; /* Hapus batas lebar mobile */
  }
}

/* Sembunyikan 2 card di tablet (jika Anda hanya mau 3 di desktop) */
/* Hapus @media ini jika 3 card di tablet sudah OK */
@media (min-width: 600px) and (max-width: 991px) {
  .hp-tutor-grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
  }
}

/* === Revisi Footer: Penambahan Card ISO === */

.iso-card-footer {
    background-color: #fafafa; /* Latar belakang abu-abu gelap */
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px; /* Jarak dari link Instagram di atasnya */
    max-width: 320px; /* Sesuaikan lebar card jika perlu */
}

.iso-image-footer {
    width: 150%;
    height: auto;
    display: block;
}

/* Penyesuaian untuk tampilan mobile */
@media (max-width: 768px) {
    .iso-card-footer {
        /* Di mobile, .sisi-kiri-footer sudah diatur 'align-items: center' 
          jadi card ini akan otomatis terpusat.
          Kita tidak perlu aturan tambahan.
        */
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==============================================
CUSTOM CTA SIDEBAR MINOL (Tablet & Desktop)
==============================================
*/

/* Define the pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.minol-container img {
  position: fixed;
  bottom: 50px; /* Default bottom position */
  right: 25px; /* Default right position */
  width: 150px; /* Default width for desktop/tablet */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  /* animation: pulse 2s ease-in-out infinite;
  z-index: 999; /* Ensure it stays on top */
}

/* Hover effect for desktop/tablet */
.minol-container img:hover {
  transform: scale(1.1);
  /* animation-play-state: paused; */
}

/* ==============================================
CUSTOM CTA SIDEBAR MINOL (Mobile)
==============================================
*/
/* Apply styles for screens smaller than 768px (typical tablet breakpoint) */
@media (max-width: 767px) {
  .minol-container img {
    width: 80px; /* Smaller width for mobile */
    bottom: 60px; /* Adjust bottom position for smaller size */
    right: 15px; /* Adjust right position for smaller size */
  }

  /* Optional: Adjust hover effect if needed for mobile (touch devices don't hover) */
  /* .minol-container img:hover {
      transform: scale(1); /* Disable hover scale on mobile if desired */
  /* } */

  /* Optional: Adjust pulse animation scale for smaller size */
  /* @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); } /* Slightly smaller pulse */
    /* 100% { transform: scale(1); } */
  /* } */
}