/* CSS for section section:Hero */
#section-hero {
  position: relative;
  height: 800px; /* Approximate height from design */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: none;
}
.hero-gradient {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 80px; /* Offset for header */
}
.hero-text-block {
  max-width: 850px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 16px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
}
#section-hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  color: #271e11;
  margin-bottom: 24px;
}
#section-hero p {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
}
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}
.slider-controls {
  position: absolute;
  bottom: -150px; /* Adjust based on layout */
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.slider-dots {
  display: flex;
  gap: 12px;
}
.dot {
  width: 8px;
  height: 8px;
  background-color: #9ca3af;
  border-radius: 50%;
  opacity: 0.5;
}
.dot.active {
  width: 48px;
  background-color: var(--primary-green);
  opacity: 1;
  border-radius: 4px;
}
.slider-arrows {
  display: flex;
  gap: 16px;
}
.arrow-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: white;
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 4px;
  background-color: var(--primary-green);
}
@media (max-width: 768px) {
  #section-hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
}

/* CSS for section section:WhyUs */
#section-why-us {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}
.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.card-icon-wrapper {
  margin-bottom: 24px;
  position: relative;
  width: 64px;
  height: 72px; /* Includes bar */
}
.icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 50%; /* Assuming circle based on typical design, though JSON says Frame */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #4ade80, #059669);
}
.icon-bg.orange { background: linear-gradient(to bottom right, #fb923c, #ef4444); }
.icon-bg.blue { background: linear-gradient(to bottom right, #60a5fa, #4f46e5); }
.icon-bg.purple { background: linear-gradient(to bottom right, #c084fc, #db2777); }

.icon-bar {
  height: 8px;
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(to right, #4ade80, #059669);
}
.icon-bar.orange { background: linear-gradient(to right, #fb923c, #ef4444); }
.icon-bar.blue { background: linear-gradient(to right, #60a5fa, #4f46e5); }
.icon-bar.purple { background: linear-gradient(to right, #c084fc, #db2777); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  min-height: 56px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
}
.center-btn {
  text-align: center;
  margin-top: 48px;
}

/* CSS for section section:Expectations */
#section-expectations {
  padding: 80px 0;
  background-color: #f3f4f6; /* Fallback if gradient isn't applied to section */
  text-align: center;
}
.expectations-content {
  max-width: 832px;
  margin: 0 auto;
}
.expectations-content p {
  margin-bottom: 24px;
  font-size: 1.125rem;
}

/* CSS for section section:Pillars */
#section-pillars {
  padding: 80px 0;
  background-color: white;
}
.pillar-card {
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.pillar-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pillar-icon {
  margin: 0 auto 24px;
  width: 48px;
  height: 48px;
}
.pillar-card h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS for section section:Programs */
#section-programs {
  padding: 80px 0;
  background-color: #f9fafb;
}
.program-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.program-header {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.green-grad { background: linear-gradient(to right, #4ade80, #059669); }
.blue-grad { background: linear-gradient(to right, #60a5fa, #4f46e5); }
.orange-grad { background: linear-gradient(to right, #fb923c, #ef4444); }
.teal-grad { background: linear-gradient(to right, #2dd4bf, #16a34a); }

.program-body {
  padding: 24px;
}
.program-body h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.program-body p {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* CSS for section section:Levels */
#section-levels {
  padding: 80px 0;
  background-color: white;
}
.level-card {
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.level-bar {
  height: 12px;
  width: 100%;
}
.level-content {
  padding: 32px;
}
.level-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.age-tag {
  display: inline-block;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 24px;
}
.level-details h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #111827;
}
.level-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.level-details li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-gray);
}
.level-details li::before {
  content: "\2022";
  color: var(--primary-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.full-width {
  width: 100%;
  box-sizing: border-box;
}

/* CSS for section section:Gallery */
#section-gallery {
  padding: 80px 0;
  background-color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-cta {
  background-color: var(--primary-green); /* Fallback, design implies this section might be separate or styled */
  /* Wait, the design shows "Saya Ingin..." is just text below the gallery, but the JSON puts it in a section with buttons. 
     Actually, looking at the image, there is an orange button "Saya Ingin..." below the gallery. 
     The JSON structure for "Saya Ingin..." (Node 1:287) is an orange button.
     Let's correct: The "Saya Ingin..." is a button, not a heading.
     And below that are "Lihat Galeri" and "Follow Instagram".
     Let's match the visual: Gallery Grid -> Orange Button -> Two Outline Buttons.
  */
  text-align: center;
  background: transparent;
}
.gallery-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
/* Correction based on visual: 
   The "Saya Ingin..." is a big orange button.
   Then below it are two smaller buttons.
*/

/* CSS for section section:News */
#section-news {
  padding: 80px 0;
  background-color: white;
}
.news-card {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.news-image {
  height: 215px;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-content {
  padding: 24px;
}
.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 12px;
}
.news-content h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-content p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.875rem;
}

/* CSS for section section:CTA */
#section-cta {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}
.cta-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .cta-buttons { flex-direction: column; align-items: center; }
}


