.about-narrative {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.13rem;
  color: var(--forest);
  line-height: 1.7;
  text-align: left;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.about-narrative p {
  margin-bottom: 1.2rem;
}
.about-narrative strong {
  color: var(--emerald);
}
.about-narrative em {
  color: var(--gold);
  font-style: italic;
}
.hero-kaligrafi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.2rem;
}
.hero-kaligrafi img {
  max-width: 360px;
  width: 100%;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 4px 24px rgba(198, 167, 94, 0.12));
  transition:
    transform 0.5s var(--transition),
    opacity 0.5s var(--transition);
}
.hero-kaligrafi img:hover {
  transform: scale(1.04) rotate(-2deg);
  opacity: 1;
}
:root {
  --emerald: #0f3d2e;
  --forest: #0b2e22;
  --gold: #c6a75e;
  --cream: #f8f6f1;
  --white: #fff;
  --shadow: 0 8px 32px 0 rgba(15, 61, 46, 0.12);
  --glass-bg: rgba(248, 246, 241, 0.7);
  --glass-blur: blur(8px);
  --nav-blur: blur(16px);
  --nav-bg: rgba(15, 61, 46, 0.7);
  --nav-bg-solid: rgba(15, 61, 46, 0.95);
  --transition: 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  --font-head: "Playfair Display", serif;
  --font-body: "Poppins", "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--cream);
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  transition:
    background var(--transition),
    box-shadow var(--transition);
  box-shadow: none;
}

.navbar.scrolled {
  background: var(--nav-bg-solid);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
}

.nav-logo img {
  height: 80px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
}

.nav-menu li a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--emerald) 60%, var(--forest) 100%);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--emerald) 60%, var(--forest) 100%);
  opacity: 0.78;
  z-index: 1;
  backdrop-filter: blur(2px);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: url("../images/pattern.svg") repeat;
  opacity: 0.12;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 4rem 2rem;
  background: rgba(15, 61, 46, 0.18);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(15, 61, 46, 0.12);
  backdrop-filter: blur(2px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--emerald);
}

.btn-primary:hover {
  background: var(--emerald);
  color: var(--gold);
}

.btn-secondary {
  background: var(--white);
  color: var(--emerald);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--emerald);
}

.btn-gold {
  background: var(--gold);
  color: var(--emerald);
  border: none;
}

.btn-gold:hover {
  background: var(--emerald);
  color: var(--gold);
}

.hero-location {
  font-size: 1rem;
  margin-top: 1rem;
  color: var(--cream);
  opacity: 0.85;
}

.section {
  padding: 5rem 0 3rem 0;
  background: var(--cream);
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--emerald);
  margin-bottom: 1.2rem;
  text-align: center;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px 0 rgba(198, 167, 94, 0.18);
}

.card-icon {
  margin-bottom: 1rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-line img {
  filter: drop-shadow(0 0 2px var(--gold));
  height: 48px;
}
.gold-line i {
  font-size: 4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 2px var(--gold));
  transition: transform 0.3s var(--transition);
}
.gold-line i:hover {
  transform: scale(1.08) rotate(-2deg);
}

.card h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  color: var(--forest);
}

.split-layout {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.split-image img {
  width: 340px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: var(--emerald);
}

.split-content {
  flex: 1;
  min-width: 320px;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
}

.program-list li {
  margin-bottom: 1.2rem;
  color: var(--forest);
}

.syarat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.syarat-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.8rem 1.2rem;
  font-weight: 500;
  transition: box-shadow var(--transition);
}

.syarat-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(198, 167, 94, 0.18);
}

.syarat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  height: 24px;
}

.syarat-icon img {
  height: 24px;
  filter: drop-shadow(0 0 2px var(--gold));
}

.cta-premium {
  background: linear-gradient(120deg, var(--forest) 60%, var(--emerald) 100%);
  color: var(--gold);
  text-align: center;
  padding: 4rem 0;
  border-radius: 32px 32px 0 0;
  box-shadow: var(--shadow);
}

.cta-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

.footer {
  background: var(--emerald);
  color: var(--cream);
  padding: 2.5rem 0 1rem 0;
  text-align: center;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  text-align: left;
  font-size: 1rem;
}

.footer-info a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.8;
  margin-top: 1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow);
  padding: 0.7rem;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.whatsapp-float:hover {
  box-shadow: 0 8px 32px 0 rgba(198, 167, 94, 0.28);
  transform: scale(1.08);
}

.whatsapp-float img {
  height: 36px;
  width: 36px;
}

.aos-fade {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}

.aos-fade.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-layout {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .container {
    width: 98%;
  }
  .footer-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}
