/* ===== Variables ===== */
:root {
  --teal: #4ec3d4;
  --teal-deep: #3aafc0;
  --yellow: #f0b429;
  --yellow-deep: #e0a020;
  --coral: #e8724a;
  --coral-deep: #d45f38;
  --green: #7ac143;
  --green-deep: #68a938;
  --text: #3a3a3a;
  --text-muted: #777777;
  --white: #ffffff;
  --bg-light: #f7f7f7;
  --header-h: 56px;
  --nav-h: 52px;
  --navy: #3b4b8a;
  --font: "Montserrat", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ===== Header ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  height: auto;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--nav-h);
  padding: 0.65rem 0 0.35rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 0.75rem 1rem;
}

.logo-img {
  height: 140px;
  width: auto;
  max-width: min(460px, 90vw);
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}

.mobile-nav-title {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 0.65rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.menu > li > a:hover,
.menu > li > a.active {
  color: var(--yellow);
}

.caret {
  opacity: 0.85;
  transition: transform var(--transition);
}

.has-submenu:hover > a .caret,
.has-submenu.is-open > a .caret {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 0.45rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 120;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.55rem 1rem;
  transition: background var(--transition), color var(--transition);
}

.submenu a:hover {
  background: #f3f6fb;
  color: var(--navy);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 110;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 40, 50, 0.5) 0%,
    rgba(20, 40, 50, 0.35) 45%,
    rgba(20, 40, 50, 0.58) 100%
  );
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  animation: fadeUp 0.9s ease both;
}

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

.hero-tagline {
  color: var(--white);
  background: transparent;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  animation: fadeUp 0.9s ease 0.15s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 2rem;
  margin-top: 0.5rem;
  box-shadow: 0 6px 16px rgba(122, 193, 67, 0.35);
  animation: fadeUp 0.9s ease 0.45s both;
}

.btn-green:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* ===== Highlights (Kurikulum / Value / Core) ===== */
.highlights {
  background: var(--white);
  padding: 4.5rem 0 3.5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.highlight-card {
  text-align: center;
  padding: 0.5rem 0.75rem;
  color: inherit;
  transition: transform var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-card:hover h3 {
  color: var(--navy);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(59, 75, 138, 0.25);
}

.highlight-icon svg {
  width: 30px;
  height: 30px;
  transform: rotate(-45deg);
}

.highlight-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 0.85rem;
}

.highlight-line {
  width: 48px;
  border: none;
  border-top: 1px solid #d7d7d7;
  margin: 0 auto 1rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Intro ===== */
.intro {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  background: var(--white);
}

.intro h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  line-height: 1.35;
  color: var(--text);
}

.intro p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Visi Misi ===== */
.visi-misi {
  padding: 3.5rem 0 4.5rem;
  background: var(--bg-light);
}

.visi-misi-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.visi-misi-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.visi-misi-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.visi-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin-bottom: 1.5rem;
}

.visi-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

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

/* ===== Features ===== */
.features {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-bottom: -5.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  color: var(--white);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  transition: transform var(--transition), filter var(--transition);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.feature:hover {
  filter: brightness(1.05);
  transform: translateY(-4px);
}

.feature--teal { background: var(--teal); }
.feature--yellow { background: var(--yellow); }
.feature--coral { background: var(--coral); }
.feature--green { background: var(--green); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.feature p {
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 240px;
  margin: 0 auto;
}

/* ===== Kurikulum note ===== */
.kurikulum-note {
  background: #2c3a42;
  color: var(--white);
  padding: 1.75rem 0;
}

.kurikulum-note-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.kurikulum-badge {
  flex-shrink: 0;
  background: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
}

.kurikulum-note p {
  font-size: 0.92rem;
  opacity: 0.92;
  max-width: 720px;
  line-height: 1.55;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  z-index: 1;
  background: var(--green);
  color: var(--white);
  padding: 7.5rem 0 2.75rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.cta h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  max-width: 640px;
}

.cta p {
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ===== Stats ===== */
.stats {
  position: relative;
  padding: 5rem 0 4.5rem;
  color: var(--white);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 55, 65, 0.62);
}

.stats-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.stats-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.stats-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-inline: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.25rem;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.9;
  max-width: 140px;
}

/* ===== Blog ===== */
.blog {
  padding: 4.5rem 0 3rem;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2.75rem;
  color: var(--text);
}

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

.blog-card {
  background: var(--white);
  transition: transform var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-image {
  display: block;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 3 / 2;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-body {
  padding: 1.35rem 0.15rem 0.5rem;
}

.blog-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.blog-body h3 a:hover {
  color: var(--teal);
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  line-height: 1.55;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.blog-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.blog-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== Gallery ===== */
.gallery {
  padding: 2rem 0 4.5rem;
  background: var(--bg-light);
}

.gallery-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: -1.5rem auto 2.25rem;
  font-size: 0.92rem;
}

.gallery-intro--tight {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 3rem 0 1rem;
  color: var(--text);
}

.video-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-side h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.video-side p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.play-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

/* ===== Lokasi ===== */
.lokasi {
  padding: 4rem 0;
  background: var(--white);
}

.section-title--left {
  text-align: left;
  margin-bottom: 1.25rem;
}

.lokasi-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.lokasi-address {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text);
}

.lokasi-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  max-width: 420px;
}

.lokasi-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.lokasi-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lokasi-social a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.lokasi-social svg {
  width: 20px;
  height: 20px;
}

.lokasi-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  background: #e8e8e8;
}

.lokasi-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ===== Footer ===== */
.site-footer {
  background: #2c3a42;
  color: rgba(255, 255, 255, 0.75);
  padding: 1.75rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--yellow);
}

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

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .visi-misi-inner {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .visi-misi-media {
    max-width: 280px;
    margin: 0 auto;
  }

  .section-title--left {
    text-align: center;
  }

  .visi-misi-content {
    text-align: center;
  }

  .visi-list {
    justify-items: center;
  }

  .video-feature {
    grid-template-columns: 1fr;
  }

  .video-side {
    text-align: center;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

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

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

/* ===== Mobile ===== */
@media (max-width: 768px) {
  :root {
    --header-h: 56px;
    --nav-h: 56px;
  }

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

  .site-header {
    background: transparent;
  }

  .header-top {
    justify-content: flex-start;
    padding-top: 0.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-img {
    height: 100px;
    max-width: 320px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: #1e2d37;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 1.25rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-title {
    display: block;
    position: absolute;
    top: 1.15rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu > li > a {
    font-size: 0.9rem;
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    justify-content: space-between;
  }

  .submenu {
    position: static;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .has-submenu.is-open > .submenu {
    max-height: 480px;
  }

  .submenu a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .submenu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--yellow);
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-content {
    padding-bottom: 3.5rem;
    width: 100%;
  }

  .hero-tagline {
    width: 100%;
    font-size: 0.98rem;
    padding: 0 0.25rem;
  }

  .btn-green {
    width: min(100%, 280px);
    padding: 1rem 1.5rem;
  }

  .intro {
    padding: 3rem 0 2.5rem;
  }

  .intro h2 {
    font-size: 1.1rem;
  }

  .highlights {
    padding: 3rem 0 2.5rem;
  }

  .features {
    margin-bottom: -3.5rem;
  }

  .feature {
    padding: 2.25rem 1.5rem 2.75rem;
  }

  .cta {
    text-align: center;
    padding: 5.5rem 0 2.25rem;
  }

  .cta-inner {
    justify-content: center;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

  .cta h2 {
    font-size: 1.2rem;
  }

  .lokasi-inner {
    grid-template-columns: 1fr;
  }

  .lokasi-note {
    max-width: none;
    text-align: center;
  }

  .lokasi-address {
    text-align: center;
  }

  .lokasi .btn {
    display: flex;
    margin: 0 auto;
  }

  .lokasi-social {
    justify-content: center;
  }

  .stats {
    padding: 3.5rem 0 3rem;
  }

  .stats-title {
    margin-bottom: 1rem;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .gallery-grid img {
    height: 130px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 180px;
  }

  .visi-list {
    grid-template-columns: 1fr;
  }
}

/* Body lock when menu open */
body.nav-open {
  overflow: hidden;
}
