@charset "utf-8";
/* CSS Document 

TemplateMo 606 String Master

https://templatemo.com/tm-606-string-master

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex !important;
}

.mobile-sidebar {
  display: none;
}

.sidebar-backdrop {
  display: none;
}

:root {
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #e0f4ff; /* Soft light sky blue for tags and elevated backgrounds */
  --accent: #FFD41D; /* Lighter Sky Blue for hovers */
  --accent-dark: #FFD41D; /* Darker Blue for active states/gradients */
  --gold: #FFD41D;
  --text-primary: #0f172a; /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #64748b; /* Slate 500 */
  --border: #e2e8f0; /* Slate 200 */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px -15px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba();
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  color: var(--text-primary);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
   margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navigation Header Wrapper */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* Top Bar Styles */
.top-bar {
  background-color:  #FFD41D;
  position: relative;
  z-index: 1100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 50px;
  display: flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.top-bar-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropbtn {
  background: #ffffff;
  position: relative;
  color: #000000;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.lang-dropdown:hover .lang-dropbtn {
  color: var(--accent-dark);
}

.lang-icon {
  font-size: 8px;
  transition: transform 0.3s ease;
  color: #cbd5e1;
}

.lang-dropdown:hover .lang-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e293b;
  min-width: 140px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  z-index: 999999;
  padding: 6px 0;
}

.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown-content.show {
  display: block !important;
  animation: headerFadeIn 0.2s ease-out;
}

.lang-item {
  color: #cbd5e1 !important;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lang-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent) !important;
}

.lang-item.active {
  color: var(--accent) !important;
  font-weight: 600;
}

.lang-flag {
  font-size: 14px;
}

/* WhatsApp Consultation Button */
.top-bar-cta {
  background: #25D366; /* WhatsApp Green */
  color: #ffffff !important;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-bar-cta i {
  font-size: 14px;
}

.top-bar-cta:hover {
  background: #128c7e; /* WhatsApp darker green */
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(37, 211, 102, 0.3);
}

@keyframes headerFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
nav {
  position: relative;
  background-color: #ffffff !important;
  backdrop-filter: blur(25px);
  z-index: 1050;
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Grup kanan: tombol CTA + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1.2rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
}



.logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
}

.logo img {
  width: 40px;
  height: 40px;

  /* supaya logo tampil utuh */
  object-fit: contain;

  /* hilangkan sudut membulat */
  border-radius: 0;

  /* optional */
  background: transparent;

  box-shadow: none;

  display: block;
}


.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.school-name {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.taglinee {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
    color: #64748b;
}
/* Khusus layar HP */
@media (max-width: 576px) {
  .logo {
    font-size: 15px;
    gap: 0.5rem;
  }

  .logo img {
    width: 50px;
    height: 45px;
  }

  .school-name {
    font-size: 13px;
  }

  .taglinee {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 500;
    color: #64748b;
}
}

@media (max-width: 480px) {
  .logo {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    font-size: 15px;
    gap: 0px;
    max-width: 75%;
  }

  .logo img {
    width: 40px;
    height: 40px;
    padding-right: 10px;
  }
}

/* Mobile: sembunyikan HANYA header sidebar (logo + nama sekolah di dalam sidebar) */
/* Lihat .sidebar-header di bagian mobile sidebar CSS */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    border-radius: 8px;

    justify-content: center;
    align-items: center;

    font-size: 18px;
    color: #111827;
    cursor: pointer;

    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/*
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
  */

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: #FFD41D;
  color: #ffffff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-cta span {
  display: inline;
  background: transparent;
  padding: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-glow);
}

/* Hero Section */
.hero {
  display: block;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    padding: 0;
    min-height: auto;
  }

  .hero-container {
    padding: 2.5rem 1.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--accent-dark);
  border-radius: 100px;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.45rem 1.15rem;
  color: var(--accent-dark);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge span {
  color: var(--accent);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 auto 2.25rem;
  max-width: 520px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff !important;
  padding: 1.05rem 2.25rem;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 20px var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-glow);
}

.btn-primary-wa {
  background: #25D366;
  color: #ffffff !important;
  padding: 1.05rem 2.25rem;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 20px var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-glow);
}

.btn-secondary {
  background: #0f172a;
  color: #ffffff !important;
  padding: 1.05rem 2.25rem;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0f172a !important;
  border-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* hero-stats removed - no longer used in hero section */

/* Hero Image Section */
.guitar-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  width: 100%;
}

.guitar-wrapper::after {
  display: none;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 5px !important;
  border: none;
  box-shadow: none;
  /*transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); */
 
}

.hero-image-card:hover {
  transform: none;
}

.hero-dev-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /*transition: transform 6s ease;*/
}

.hero-image-card:hover .hero-dev-img {
  /*transform: scale(1.05);*/
}

.hero-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 60%,
    rgba(15, 23, 42, 0.15) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* --- End of Hero Section --- */

/* Profile Intro Section */
.profile-intro {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3C!-- Batik Kawung Pattern --%3E%3Cg fill='none' stroke='%2300AAFF' stroke-width='0.6' opacity='0.35'%3E%3C!-- Center flower --%3E%3Cellipse cx='40' cy='40' rx='12' ry='6' transform='rotate(0 40 40)'/%3E%3Cellipse cx='40' cy='40' rx='12' ry='6' transform='rotate(90 40 40)'/%3E%3Cellipse cx='40' cy='40' rx='12' ry='6' transform='rotate(45 40 40)'/%3E%3Cellipse cx='40' cy='40' rx='12' ry='6' transform='rotate(-45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3C!-- Corner flowers --%3E%3Cellipse cx='0' cy='0' rx='12' ry='6' transform='rotate(0 0 0)'/%3E%3Cellipse cx='0' cy='0' rx='12' ry='6' transform='rotate(90 0 0)'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Cellipse cx='80' cy='0' rx='12' ry='6' transform='rotate(0 80 0)'/%3E%3Cellipse cx='80' cy='0' rx='12' ry='6' transform='rotate(90 80 0)'/%3E%3Ccircle cx='80' cy='0' r='4'/%3E%3Cellipse cx='0' cy='80' rx='12' ry='6' transform='rotate(0 0 80)'/%3E%3Cellipse cx='0' cy='80' rx='12' ry='6' transform='rotate(90 0 80)'/%3E%3Ccircle cx='0' cy='80' r='4'/%3E%3Cellipse cx='80' cy='80' rx='12' ry='6' transform='rotate(0 80 80)'/%3E%3Cellipse cx='80' cy='80' rx='12' ry='6' transform='rotate(90 80 80)'/%3E%3Ccircle cx='80' cy='80' r='4'/%3E%3C!-- Diamond connecting lines --%3E%3Cpath d='M40 28 L52 40 L40 52 L28 40 Z'/%3E%3C/g%3E%3C!-- Decorative dots --%3E%3Cg fill='%2300AAFF' opacity='0.18'%3E%3Ccircle cx='40' cy='40' r='2.5'/%3E%3Ccircle cx='0' cy='0' r='2.5'/%3E%3Ccircle cx='80' cy='0' r='2.5'/%3E%3Ccircle cx='0' cy='80' r='2.5'/%3E%3Ccircle cx='80' cy='80' r='2.5'/%3E%3Ccircle cx='40' cy='0' r='1.2'/%3E%3Ccircle cx='40' cy='80' r='1.2'/%3E%3Ccircle cx='0' cy='40' r='1.2'/%3E%3Ccircle cx='80' cy='40' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  position: relative;
  padding: 5.5rem 0rem 5.5rem;
  overflow: hidden;
}

/* Overlay putih lembut agar motif batik tidak terlalu mencolok */
.profile-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.60) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.65) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ornamen batik border dekoratif atas-bawah */
.profile-intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 20px,
    transparent 20px,
    transparent 28px,
    var(--accent-dark) 28px,
    var(--accent-dark) 36px,
    transparent 36px,
    transparent 44px
  );
  opacity: 0.5;
  z-index: 2;
}


.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 36px;
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.profile-image-container {
  position: relative;
  width: 160px;
  height: 200px;
  margin-bottom: 2.25rem;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-image-container:hover .profile-img {
  transform: translateY(-5px) scale(1.03);
}

.profile-decoration {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 30px;
  background: var(--accent);
  opacity: 0.12;
  z-index: 1;
  animation: profile-pulse 4s infinite ease-in-out;
}

@keyframes profile-pulse {
  0% {
    transform: scale(1);
    opacity: 0.12;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.22;
  }
  100% {
    transform: scale(1);
    opacity: 0.12;
  }
}

.profile-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
  display: block;
}

.profile-name {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* Layar HP */
@media (max-width: 576px) {
  .profile-name {
    font-size: 26px;
  }
}

.profile-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .profile-intro {
    padding: 5rem 1.5rem;
  }
  .profile-card {
    padding: 2.5rem 1.5rem;
  }
}

.features {
  padding: 24px;
  background: var(--bg-card);
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 576px) {
  .features {
    padding: 0px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.feature-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb; /* border card */
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  transform: scale(1.05);
}

.feature-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #0f172a;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Facilities (Pricing) Section */
.pricing {
  padding: 2.5rem 2rem;
  background: #ffffff;
  position: relative;
}



.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  padding: 1.35rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 170, 255, 0.25);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(0, 170, 255, 0.08);
}

/* Project Slider Styles */
.project-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg-elevated);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.03);
}

.project-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.pricing-card:hover .project-slider img {
  transform: scale(1.05);
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(5px);
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dot.active {
  background: white;
  width: 14px;
  border-radius: 4px;
}

.pricing-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 750;
  color: #0f172a;
  margin-bottom: 0.65rem;
  padding: 0 0.25rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-billed {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  min-height: 1.2rem;
}

.pricing-savings {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

.pricing-savings:empty {
  visibility: hidden;
}

.pricing-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.pricing-card .pricing-btn {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.pricing-card .pricing-btn:hover {
  background: var(--text-primary);
  color: var(--bg-dark);
}

.pricing-card.featured .pricing-btn {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-light);
}

/* Jurusan (Instructors) Section */
.instructors {
  padding: 2.5rem 2rem;
  background: #ffffff;
  position: relative;
}



.instructors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Redesigned to 2-column or responsive for larger visual impacts */
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.instructor-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  padding: 1.75rem;
  display: flex;
  gap: 1.75rem;
  align-items: center;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

@media (max-width: 576px) {
  .instructor-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 170, 255, 0.25);
}

.instructor-image {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  border: 4px solid #ffffff;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instructor-card:hover .instructor-image {
  border-color: rgba(0, 170, 255, 0.2);
  transform: scale(1.03);
}

.instructor-card:hover .instructor-image img {
  transform: scale(1.06);
}

.instructor-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 750;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.instructor-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 1.5rem 2rem;
  background: #ffffff;
  position: relative;
}



.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 170, 255, 0.25);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-title {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Contact & Maps Section */
.contact-maps {
  padding: /*6rem 2rem */ 0rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.contact-bg-decoration {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.08) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.contact-maps-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid #eeeef0;
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.contact-info-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  
}

.contact-info-card .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-info-card .section-description {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 100%;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 54px;
  height: 54px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #12CC94;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text p {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Premium Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input-wrapper label {
  position: absolute;
  left: 1.5rem;
  top: 1.25rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

/* Floating Label Logic */
.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper textarea:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: white;
  padding: 0 0.5rem;
  border-radius: 4px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.05);
}

.btn-primary-premium {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 1px 5px var(--accent-light);
}

.btn-primary-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 10px var(--accent-light);
  letter-spacing: 0.5px;
}

.btn-primary-premium svg {
  transition: transform 0.3s ease;
}

.btn-primary-premium:hover svg {
  transform: translateX(5px);
}

/* Map Styling */
.maps-wrapper {
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.4);

}

.map-info-card {
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);

}

.map-info-card .info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.map-info-card .info-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.maps-container {
  height: 100%;
  min-height: 550px;
  padding: 1rem;
  background: white;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;

 
}

/* Efek hover premium */
.maps-container:hover {
  transform: translateY(-6px);
}

.maps-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  display: block;

  /* MAP LEBIH BERWARNA */
  filter:
    saturate(1.8)
    contrast(1.08)
    brightness(1.03);
}

/* Zoom halus saat hover */
.maps-container:hover iframe {
  transform: scale(1.02);
}

/* Overlay warna */
.map-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 20px;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 102, 0.16),
      rgba(255, 102, 0, 0.08),
      rgba(255,255,255,0)
    );

  mix-blend-mode: soft-light;

  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.04);
}

/* Border glow */
.maps-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;

  background: #4BB8FA;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0.7;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .contact-maps-grid {
    gap: 2rem;
  }
  .glass-card {
    padding: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .contact-maps-grid {
    grid-template-columns: 1fr;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .maps-container {
    min-height: 400px;
  }
}

@media screen and (max-width: 576px) {
  .contact-maps {
    padding: 1rem 1rem;
  }
  .glass-card {
    padding: 1.5rem 1rem;
  }
  .contact-info-card .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .contact-info-card .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .contact-details {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .contact-icon {
    width: 48px;
    height: 48px;
  }
  .contact-text p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 380px) {
  .contact-info-card .section-title {
    font-size: 1.5rem;
  }
  .contact-text p {
    font-size: 0.85rem;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
}

/* Footer */
/* =========================
/* =========================
   FOOTER DARK THEME
========================= */

footer {
  background:
    radial-gradient(circle at top left, rgba(255, 61, 129, 0.12), transparent 30%),
    #0f172a;
  color: #e2e8f0;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   GRID
========================= */

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* =========================
   BRAND
========================= */

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 320px;
}

/* =========================
   TITLE
========================= */

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: #ff3d81;
}

/* =========================
   LINKS
========================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
  color: #94a3b8;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #ff3d81;
  padding-left: 5px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #ff3d81;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff7aa8;
}

/* =========================
   LOGO
========================= */

footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

footer .logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 3px;
  flex-shrink: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  footer {
    padding: 3rem 1.25rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.92rem;
  }

  footer .logo {
    justify-content: center;
    font-size: 1.05rem;
    text-align: left;
  }

  footer .logo img {
    width: 46px;
    height: 46px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links li {
    margin-bottom: 0.7rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-size: 0.82rem;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: whitesmoke;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    text-align: center;
  }

  .hero-image-card {
    height: 350px;
    max-width: 100%;
    border-radius: 5px;
    margin: 0 auto;
     padding-top: 10px;
  }

  .hero-description {
    margin: 0 auto 2rem;
    max-width: 350px;
  }

  .hero-buttons {
    justify-content: center;
    max-width: 350px;
    margin: 0 auto 2rem;


  }

  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .billing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }

  .billing-option {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 880px) {
  .desktop-only,
  .nav-links {
    display: none !important;
  }

  /* Sembunyikan tombol CTA di layar kecil — hanya hamburger yang muncul */
  .nav-cta {
    display: none !important;
  }

  /* nav-right tetap terlihat agar hamburger tampil */
  .nav-right {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  /* Desktop/Mobile Utility */
  .mobile-only {
    display: block !important;
  }

  /* Sidebar Backdrop - transparent layer agar halaman tetap terlihat */
.sidebar-backdrop{

    position:fixed;

    inset:0;

    background: white !important;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99997;
}

  .sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
    transition:
      opacity   0.5s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0s;
  }

  /* Mobile Sidebar Container — dropdown di bawah navbar */
.mobile-sidebar {
    display: flex;
    position: fixed;
    top: var(--header-height, 0);
    left: 0;
    right: 0;

    height: auto;

    background: white;

    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    z-index: 99998;

    flex-direction: column;
    padding: 0;

    transform: scaleY(0);
    transform-origin: top;

    visibility: hidden;

    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.5s,
        box-shadow 0.5s;

    overflow-y: auto;
    border-radius: 0 0 20px 20px;
     overflow-x: hidden;
    width: 100%;
}

  .mobile-sidebar.active {
    transform: scaleY(1);
    visibility: visible;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  }


.sidebar-links li {
  border-bottom: 1px solid #f3f4f6;
   margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: hidden;
  /* Tampilkan konten langsung — jangan sembunyikan dengan opacity/transform */
  opacity: 1;
  transform: none;

  /* Nonaktifkan transisi sementara supaya isi tidak tersembunyi */
  transition: none;
}

/* Saat sidebar AKTIF: pastikan tidak ada aturan yang menyembunyikan isi */
.mobile-sidebar.active .sidebar-links li {
  opacity: 1;
  transform: none;
  transition: none;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 20px;

    font-size: 12px;
    font-weight: 700;
    color: #374151;

    text-decoration: none;
    text-transform: uppercase;

    border-left: none;
}

.sidebar-links a.active {
    color: #f5b301;
}

/*
.sidebar-cta {
    display: flex !important;
    justify-content: center !important; 
    align-items: center !important;
    text-align: center !important;
    gap: 8px;
    max-width: 335px;
    margin: 20px;
    padding: 14px;
    width: 100%;

    background: #facc15 !important;
    color: #fff !important;

    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}


.sidebar-cta-daftar {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px;
    max-width: 335px;
    margin: 20px;
    padding: 14px;
    width: 100%;
    padding-bottom: 10px;
    background: #1591DC !important;
    color: #fff !important;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}
*/

.sidebar-cta,
.sidebar-cta-daftar {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px;

    width: calc(100% - 40px); /* kurangi margin */
    max-width: none;

    margin: 10px auto;
    padding: 10px;

    box-sizing: border-box;

    border-radius: 10px;
    font-size: 12px;
    font-weight: bolder;
}

.sidebar-cta {
    background: #facc15 !important;
    color: #fff !important;
    padding: 15px !important;
}

.sidebar-cta-daftar {
    background: #4379F2 !important;
    color: #fff !important;
}


  .sidebar-footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
  }

  .sidebar-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .sidebar-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sidebar-socials img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: 0.3s ease;
}

.sidebar-socials img:hover {
  transform: scale(1.1);
}

  .sidebar-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .sidebar-socials a:hover {
    transform: translateY(-3px);
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15);
  }

  .sidebar-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .nav-cta {
    display: none;
  }

  .nav-cta.active {
    display: none;
  }

  .hero {
    padding: 0;
  }

  .nav-container {
    padding: 1 1rem;
    display: flex;
  justify-content: space-between;
  align-items: center;
  }

  .hero h1 {
    font-size:  1.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }



  .hero-image-card {
    padding: 0;
    height: auto;

    background: none;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    max-width: 100%;
  }

  .fretboard-grid {
    grid-template-rows: repeat(6, 28px);
  }

  .string-labels {
    height: calc(6 * 28px);
    left: -24px;
  }

  .string-label {
    height: 28px;
    font-size: 0.6rem;
  }

  .note-marker {
    width: 14px;
    height: 14px;
    font-size: 0.4rem;
  }

  .instructors-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 1rem auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Responsive Skill Cards */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .feature-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  
  .feature-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }
}

/* Registration Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  width: 90%;
  max-width: 650px;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-badge {
  display: inline-block;
  background: rgba(30, 64, 175, 0.1);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.info-section h4 svg {
  color: var(--accent);
}

.modal-list {
  list-style: none;
  padding: 0;
}

.modal-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.form-group-ppdb input {
  background: white;
}

.modal-notice {
  margin-top: 2rem;
  background: var(--bg-dark);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.modal-notice p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.modal-footer {
  padding: 1.5rem 2rem;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
}

.btn-download-modal {
  flex: 1;
  background: var(--accent);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-download-modal:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

.btn-wa-modal {
  flex: 1;
  background: #25D366;
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
}

.btn-wa-modal:hover {
  background: #22c35e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto;
  }

  .modal-container {
    width: 92%;
    margin: 0 auto;
  }

  .modal-header {
    padding: 1rem 1.5rem;
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

  .modal-icon {
    width: 36px;
    height: 36px;
  }

  .modal-body {
    padding: 1.25rem 1.5rem;
    max-height: none; /* Let the overlay handle scrolling if needed */
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .info-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .modal-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .modal-footer {
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  .btn-download-modal, .btn-wa-modal {
    padding: 0.85rem;
    font-size: 0.9rem;
  }
}

/*=======================*/
@media (max-width: 768px) {

    /* Section utama */
    #daftar {
        padding: 40px 16px !important;
        background: white;
        border: none;
    }

    /* Container */
    .section-container {
        width: 100%;
        padding: 0 4px;
    }

    /* Header */
    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.8;
    }

    /* Card Form */
    .form-card {
        padding: 22px !important;
        border-radius: 20px;
    }

    /* Semua grid jadi 1 kolom */
    form div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    /* Form group */
    .form-group-ppdb {
        margin-bottom: 2px;
    }

    /* Input */
    .form-group-ppdb input,
    .form-group-ppdb select,
    .form-group-ppdb textarea {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
        background: white;
    }

    /* Label */
    .form-group-ppdb label {
        margin-bottom: 8px;
        display: block;
        font-size: 14px;
    }

    /* Button */
    .btn-primary {
        padding: 15px;
        font-size: 15px;
        border-radius: 14px;
    }

    /* Heading dalam form */
    .form-card h3 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
}

/* ==========================================================================
   Dropdown & Submenu Styles (Desktop & Mobile)
   ========================================================================== */

/* Desktop Dropdown Parent */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-icon {
  font-size: 8px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1010;
  display: block;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem !important;
  color: var(--text-secondary) !important;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: all 0.25s ease !important;
  border-radius: 0;
  position: relative;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: none;
  color: var(--accent-dark) !important;
  padding-left: 1.85rem !important;
}

/* Disable desktop hover underline line animation for dropdown triggers */
.nav-dropdown > a::after,
.nav-dropdown > a.active::after {
  display: none !important;
}

/* Mobile Sidebar Dropdown styles */
.sidebar-dropdown {
  width: 100%;
  position: relative;
}

.sidebar-dropdown-trigger {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sidebar-dropdown-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.sidebar-dropdown.open .sidebar-dropdown-icon {
  transform: rotate(180deg);
}

.sidebar-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;

}

.sidebar-submenu.active {
    display: block;
}

.sidebar-submenu li a {
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
}

.sidebar-submenu a::after {
  display: none !important;
  background-color: none;

}

.sidebar-submenu a:hover,
.sidebar-submenu a.active {
  background-color: none;
  color: var(--accent) !important;
}

/* ==========================================================================
   News & Announcements Section Styles
   ========================================================================== */

/* ===============================
   PREMIUM NEWS SECTION
================================= */

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:32px;
}

.news-card{
    display:flex;
    flex-direction:column;

    background:#fff;
    border-radius:28px;
    overflow:hidden;

    text-decoration:none;
    color:inherit;

    border:1px solid #eef2f7;

    box-shadow:
        0 4px 10px rgba(15,23,42,.03),
        0 12px 30px rgba(15,23,42,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    height:100%;
}

.news-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 15px 35px rgba(15,23,42,.08),
        0 25px 60px rgba(15,23,42,.10);
}

.news-image-wrapper{
    position:relative;
    width:100%;
    aspect-ratio:16/10;
    overflow:hidden;
}

.news-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .6s ease;
}

.news-card:hover img{
    transform:scale(1.06);
}

.news-content-wrapper{
    padding:24px;
}

.news-date{
    display:inline-flex;
    align-items:center;

    padding:8px 14px;

    border-radius:999px;

    background:#eff6ff;
    color:#2563eb;

    font-size:.8rem;
    font-weight:700;

    margin-bottom:16px;
}

.news-title{
    font-size:1.25rem;
    font-weight:800;

    color:#0f172a;

    line-height:1.45;

    margin-bottom:12px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-excerpt{
    color:#64748b;

    line-height:1.8;

    font-size:.95rem;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-footer{
    margin-top:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-weight:700;
    color:#0ea5e9;
}

.news-card:hover .news-footer{
    color:#0284c7;
}

/* Tablet */
@media (max-width:992px){

    .news-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

}

/* Mobile */
@media (max-width:768px){

    .news-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .news-content-wrapper{
        padding:20px;
    }

    .news-title{
        font-size:1.1rem;
    }

    .news-excerpt{
        font-size:.9rem;
    }

}

.news-announcements-section{
    background:
    
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
        *
        
}

.section-header-custom h2{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:900;
    letter-spacing:-1px;
}

/* Responsive top-bar styles for mobile */
@media (max-width: 576px) {
  .top-bar-container {
    padding: 0 1rem;
  }
  .lang-dropbtn {
    font-size: 11.5px;
  }
  .top-bar-cta {
    font-size: 11px;
    padding: 8px 14px;
  }
}

/* Google Translate Custom styling to hide banner & iframe */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Mobile Specific Hero Banner card styling (restoring original styles on screens <= 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 0px !important;
  }

  .hero-container {
    padding: 2rem 0 !important;
  }

  .guitar-wrapper {
    margin-bottom: 1rem;
  }

  .guitar-wrapper::after {
    display: block !important;
    content: "";
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 10%;
    background: var(--accent);
    filter: blur(75px);
    opacity: 0.18;
    z-index: -1;
    border-radius: 40px;
  }

  .hero-image-card {
    height: auto !important;
    aspect-ratio: 16/11 !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    box-shadow: var(--shadow-lg) !important;
    background: #ffffff !important;
    border-radius: 5px !important;
    padding-top: 10px;
  }

  .hero-image-card:hover {
    transform: translateY(-5px) scale(1.01) !important;
  }
}