/* ===========================
       CSS VARIABLES
    =========================== */
:root {
  --color-primary: #0f6e75;
  --color-secondary: #1a9aa3;
  --color-accent: #f6c90e;
  --color-bg: #ffffff;
  --color-surface: #f0fafa;
  --color-text: #0d2b2e;
  --color-text-muted: #3d7a80;
  --font-heading: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

/* ===========================
       RESET & BASE
    =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===========================
       UTILITY
    =========================== */
.section {
  padding: 80px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-weight: 600;
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
}
.bg-surface {
  background: var(--color-surface);
}
.bg-primary {
  background: var(--color-primary);
}

/* ===========================
       BUTTONS (pill shape — ciri khas tema 06)
    =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: #e5b800;
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(246, 201, 14, 0.4);
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
}

/* ===========================
       SCROLL ANIMATIONS
    =========================== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
       NAVBAR
    =========================== */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
  overflow: hidden;
}
nav#navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(15, 110, 117, 0.12);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
nav#navbar.scrolled .nav-brand {
  color: var(--color-text);
}
.nav-logo {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.nav-brand-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s;
  position: relative;
  font-size: 0.9rem;
}
.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-menu a.active {
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 600;
}
nav#navbar.scrolled .nav-menu a {
  color: var(--color-text-muted);
}
nav#navbar.scrolled .nav-menu a:hover {
  background: rgba(15, 110, 117, 0.08);
}
nav#navbar.scrolled .nav-menu a.active {
  background: var(--color-accent);
  color: var(--color-text);
}
.nav-cta {
  display: inline-flex;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(246, 201, 14, 0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}
nav#navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1279px) {
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 110, 117, 0.15);
    padding: 12px;
    flex-direction: column;
    display: none;
    min-width: 200px;
    z-index: 999;
    overflow: hidden;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    color: var(--color-text-muted);
  }
  .nav-menu a:hover {
    background: rgba(15, 110, 117, 0.08);
  }
  .nav-menu a.active {
    background: var(--color-accent);
    color: var(--color-text);
  }
}

/* ===========================
       HERO — DIAGONAL SPLIT
    =========================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}

/* Left: teal panel with diagonal cut */
.hero-left {
  width: 55%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 80px 120px 5%;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  z-index: 2;
}
.hero-left-inner {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

/* Right: light panel with slider */
.hero-right {
  width: 50%;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 120px 5%;
  margin-left: -3%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.7s;
}
.hero-mini-stats {
  display: flex;
  gap: 32px;
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.9s;
}
.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mini-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.mini-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Slider frame */
.hero-slider-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 110, 117, 0.25);
  aspect-ratio: 4/3;
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 110, 117, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-primary);
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.shape-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(246, 201, 14, 0.3);
}
.sc-1 {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -60px;
  animation: floatY 7s ease-in-out infinite;
}
.sc-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 5%;
  animation: floatY 5s ease-in-out infinite 1s;
  background: rgba(246, 201, 14, 0.08);
}
.sc-3 {
  width: 120px;
  height: 120px;
  top: 55%;
  right: 48%;
  animation: floatY 8s ease-in-out infinite 2s;
  border-color: rgba(255, 255, 255, 0.12);
}
.shape-dot-cluster {
  position: absolute;
  right: 10%;
  top: 20%;
  opacity: 0.2;
  animation: floatY 9s ease-in-out infinite 2s;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 8px;
}
.shape-dot-cluster span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  display: block;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .hero-wrapper {
    flex-direction: column;
  }
  .hero-left {
    width: 100%;
    clip-path: none;
    padding: 100px 24px 60px;
  }
  .hero-right {
    width: 100%;
    margin: 0;
    padding: 40px 24px 60px;
  }
  .hero-mini-stats {
    gap: 20px;
  }
  .hero-slider-frame {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-left {
    padding: 120px 40px 120px 24px;
  }
  .hero-right {
    padding: 120px 24px 120px 40px;
  }
}

/* ===========================
       TENTANG — HORIZONTAL HISTORY TIMELINE
    =========================== */
.history-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 24px 0 32px;
  scrollbar-width: none;
  margin-bottom: 48px;
}
.history-timeline::-webkit-scrollbar {
  display: none;
}
.timeline-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  position: relative;
  flex: 1;
}
.milestone-year {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.milestone-connector {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}
.milestone-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-primary);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.milestone-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}
.timeline-milestone:last-child .milestone-line {
  display: none;
}
.milestone-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 120px;
  line-height: 1.3;
}

/* Visi-Misi card */
.visi-misi-card {
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.1);
  border-top: 4px solid var(--color-accent);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  overflow: hidden;
}
.visi-col,
.misi-col {
  padding: 36px 32px;
}
.visi-col {
  border-right: 1px solid rgba(15, 110, 117, 0.1);
}
.vm-icon {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.vm-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.vm-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.misi-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Principal quote */
.principal-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.principal-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.principal-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-accent);
  box-shadow: 0 8px 30px rgba(15, 110, 117, 0.2);
}
.principal-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  text-align: center;
}
.principal-title {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}
.principal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.principal-quote-text {
  position: relative;
  padding-top: 16px;
}
.quote-mark {
  font-size: 8rem;
  color: var(--color-primary);
  opacity: 0.1;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: -16px;
}
.quote-body {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.quote-accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

@media (max-width: 767px) {
  .visi-misi-card {
    grid-template-columns: 1fr;
  }
  .visi-col {
    border-right: none;
    border-bottom: 1px solid rgba(15, 110, 117, 0.1);
  }
  .principal-quote {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .principal-photo-wrap {
    flex-direction: row;
    align-items: center;
  }
  .principal-photo {
    width: 100px;
    height: 100px;
  }
}

/* ===========================
       STATISTIK — GLASSMORPHISM
    =========================== */
#statistik {
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.stat-icon {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}
.counter {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.accreditation-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--color-accent);
  border-radius: 20px;
  padding: 20px 40px;
}
.accreditation-stars {
  color: var(--color-accent);
  font-size: 1.4rem;
  letter-spacing: 4px;
}
.accreditation-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.accreditation-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
#statistik .section-header .section-label {
  color: rgba(255, 255, 255, 0.6);
}
#statistik .section-header h2 {
  color: #fff;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 20px 12px;
  }
}

/* ===========================
       PROGRAM — HORIZONTAL SCROLL CARDS
    =========================== */
.programs-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.programs-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.programs-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 4px 16px;
}
.program-card {
  min-width: 280px;
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15, 110, 117, 0.2);
}
.program-accent-bar {
  height: 6px;
}
.program-card:nth-child(1) .program-accent-bar {
  background: var(--color-accent);
}
.program-card:nth-child(2) .program-accent-bar {
  background: var(--color-primary);
}
.program-card:nth-child(3) .program-accent-bar {
  background: var(--color-secondary);
}
.program-card:nth-child(4) .program-accent-bar {
  background: #06b6d4;
}
.program-card-body {
  padding: 28px 24px;
}
.program-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}
.program-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.program-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Facilities grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.facility-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.1);
  aspect-ratio: 3/2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.facility-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(15, 110, 117, 0.2);
}
.facility-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.facility-item:hover img {
  transform: scale(1.06);
}
.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 43, 46, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.facility-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .scroll-hint {
    display: block;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
       STAGGER DELAYS — nth-child (replaces inline transition-delay)
    =========================== */
.stagger > *:nth-child(1) {
  transition-delay: 0ms;
}
.stagger > *:nth-child(2) {
  transition-delay: 100ms;
}
.stagger > *:nth-child(3) {
  transition-delay: 200ms;
}
.stagger > *:nth-child(4) {
  transition-delay: 300ms;
}
.stagger > *:nth-child(5) {
  transition-delay: 400ms;
}
.stagger > *:nth-child(6) {
  transition-delay: 500ms;
}

/* Utility classes */
.section-subtext {
  color: var(--color-text-muted);
  margin-top: 12px;
  max-width: 560px;
  margin-inline: auto;
}
.text-center {
  text-align: center;
}

/* ===========================
       STRUKTUR ORGANISASI — CSS TREE
    =========================== */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: auto;
  padding: 8px 0 24px;
}
.org-level {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
}
.org-level + .org-level {
  margin-top: 48px;
}
.org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 160px;
}
.org-box {
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 110, 117, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}
.org-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 110, 117, 0.2);
}
.org-box-root {
  background: var(--color-primary);
  color: #fff;
  min-width: 220px;
}
.org-box-branch {
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  color: var(--color-text);
  min-width: 180px;
}
.org-box-leaf {
  background: var(--color-bg);
  border: 2px solid rgba(15, 110, 117, 0.25);
  color: var(--color-text);
  min-width: 160px;
}
.org-box-name {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.org-box-role {
  font-size: 0.75rem;
  opacity: 0.75;
}
.org-box-root .org-box-role {
  color: rgba(255, 255, 255, 0.8);
}
/* Vertical connector from parent down */
.org-node-down::after {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  margin: 0 auto;
}
/* Horizontal line spanning branches */
.org-h-line {
  position: relative;
  display: flex;
  justify-content: center;
  height: 2px;
  margin-bottom: 0;
}
.org-h-line::before {
  content: "";
  position: absolute;
  top: 0;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  height: 2px;
}
/* Vertical drop from h-line to each branch */
.org-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.org-drop::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background: var(--color-secondary);
}
@media (max-width: 767px) {
  .org-level {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .org-h-line {
    display: none;
  }
}

/* ===========================
       GURU — SLIDE-UP INFO PANEL
    =========================== */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.teacher-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.teacher-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.teacher-card:hover img {
  transform: scale(1.08);
}
.teacher-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 110, 117, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.teacher-card:hover .teacher-info {
  transform: translateY(0);
}
.teacher-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.teacher-subject {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.teacher-specialty {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.teacher-quote {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .teacher-card {
    height: auto;
  }
  .teacher-card img {
    height: 180px;
  }
  .teacher-info {
    position: static;
    transform: none;
    background: rgba(15, 110, 117, 0.95);
    padding: 12px;
  }
  .teacher-name {
    font-size: 0.85rem;
  }
  .teacher-subject {
    font-size: 0.75rem;
  }
  .teacher-quote {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
       KESISWAAN — ANIMATED PILL TAB
    =========================== */
.tab-nav-center {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-nav-wrapper {
  position: relative;
  display: inline-flex;
  background: rgba(15, 110, 117, 0.1);
  border-radius: 999px;
  padding: 4px;
}
.tab-pill-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--color-primary);
  border-radius: 999px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s ease;
  z-index: 0;
}
.tab-btn {
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  color: var(--color-text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.tab-btn.active {
  color: #fff;
  font-weight: 600;
}
.tab-panels {
  position: relative;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tab-item-card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(15, 110, 117, 0.08);
}
.tab-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(15, 110, 117, 0.15);
}
.tab-item-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: block;
}
.tab-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 6px;
}
.tab-item-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
/* Prestasi tab — level badges */
.prestasi-level {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.level-nasional {
  background: rgba(246, 201, 14, 0.15);
  color: #a07800;
}
.level-provinsi {
  background: rgba(192, 192, 192, 0.2);
  color: #555;
}
.level-kota {
  background: rgba(205, 127, 50, 0.15);
  color: #7a4a10;
}

@media (max-width: 767px) {
  .tab-nav-center {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 4px 4px;
  }
  .tab-nav-wrapper {
    flex-shrink: 0;
  }
  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tab-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
       PRESTASI — ZIGZAG VERTICAL TIMELINE
    =========================== */
#prestasi .section-header .section-label {
  color: rgba(255, 255, 255, 0.6);
}
#prestasi .section-header h2 {
  color: #fff;
}
.achievements-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}
.ach-item {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.ach-item:nth-child(odd) {
  flex-direction: row;
}
.ach-item:nth-child(even) {
  flex-direction: row-reverse;
}
.ach-item:nth-child(odd) .ach-content {
  text-align: right;
}
.ach-item:nth-child(even) .ach-content {
  text-align: left;
}
.ach-icon-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
}
.ach-item.level-nasional .ach-icon-node {
  background: var(--color-accent);
  color: #2d1a1a;
}
.ach-item.level-provinsi .ach-icon-node {
  background: #c0c0c0;
  color: #2d2d2d;
}
.ach-item.level-kota .ach-icon-node {
  background: #cd7f32;
  color: #fff;
}
.ach-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  transition: background 0.3s ease;
}
.ach-content:hover {
  background: rgba(255, 255, 255, 0.13);
}
.ach-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.ach-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.ach-level {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ach-spacer {
  flex: 1;
}
@media (max-width: 767px) {
  .timeline-center-line {
    left: 28px;
    transform: none;
  }
  .ach-item {
    flex-direction: row !important;
  }
  .ach-item .ach-content {
    text-align: left !important;
  }
  .ach-spacer {
    display: none;
  }
}

/* ===========================
       BERITA — NEWS CARDS + ANNOUNCEMENTS + CALENDAR
    =========================== */
.berita-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.news-cards-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.08);
  background: var(--color-bg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15, 110, 117, 0.18);
}
.news-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-tag {
  display: inline-block;
  background: rgba(15, 110, 117, 0.1);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.news-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-excerpt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.2s;
}
.news-link:hover {
  gap: 10px;
}
/* Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
}
.announce-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.announce-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 110, 117, 0.1);
}
.announce-item:last-child {
  border-bottom: none;
}
.announce-icon {
  color: var(--color-primary);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.announce-body {
  flex: 1;
}
.announce-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 3px;
}
.announce-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.badge-baru {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
/* Calendar table */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.calendar-table thead tr {
  background: var(--color-primary);
  color: #fff;
}
.calendar-table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.calendar-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(15, 110, 117, 0.08);
  color: var(--color-text-muted);
}
.calendar-table tbody tr:nth-child(even) {
  background: var(--color-surface);
}
.calendar-table tbody tr:hover td {
  background: rgba(15, 110, 117, 0.05);
  color: var(--color-text);
}
@media (max-width: 767px) {
  .berita-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
       GALERI — MASONRY + LIGHTBOX
    =========================== */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 110, 117, 0.75);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 43, 46, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
#lightbox.open {
  display: flex;
}
.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
}
#lbImg {
  max-width: 90vw;
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
}
#lbCaption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}
.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}
#lbPrev {
  left: 20px;
}
#lbNext {
  right: 20px;
}
#lbClose {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lbClose:hover {
  background: rgba(255, 255, 255, 0.28);
}
@media (max-width: 767px) {
  .gallery-grid {
    columns: 1;
  }
  .lb-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid {
    columns: 2;
  }
}

/* ===========================
       TESTIMONI — PEEK CAROUSEL
    =========================== */
#testimoni .section-header .section-label {
  color: rgba(255, 255, 255, 0.6);
}
#testimoni .section-header h2 {
  color: #fff;
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 10%;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}
.testimonial-card {
  min-width: 80%;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px;
  transition:
    opacity 0.3s,
    transform 0.3s;
  opacity: 0.5;
  transform: scale(0.95);
}
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}
.t-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
}
.t-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
  font-family: Georgia, serif;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
}
.t-author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}
.t-author-rel {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.t-dots-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.t-prev,
.t-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 0.9rem;
}
.t-prev:hover,
.t-next:hover {
  background: rgba(255, 255, 255, 0.28);
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-accent);
}
@media (max-width: 767px) {
  .testimonial-card {
    min-width: 100%;
    margin: 0 4px;
  }
  .testimonial-carousel {
    padding: 0 4%;
  }
}

/* ===========================
       LOKASI — MAP + INFO
    =========================== */
.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.maps-frame {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.12);
}
.maps-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.info-card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.08);
}
.info-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.info-row:last-child {
  margin-bottom: 0;
}
.info-icon {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}
.info-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.info-value {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}
.hours-table {
  width: 100%;
  font-size: 0.85rem;
  margin-top: 4px;
}
.hours-table td {
  padding: 3px 0;
  color: var(--color-text-muted);
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--color-text);
  padding-right: 16px;
}
@media (max-width: 767px) {
  .lokasi-grid {
    grid-template-columns: 1fr;
  }
  .maps-frame {
    height: 260px;
  }
}

/* ===========================
       KONTAK — FORM + WHATSAPP
    =========================== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.kontak-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.wa-btn:hover {
  background: #1fba59;
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.wa-btn i {
  font-size: 1.4rem;
}
.kontak-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kontak-info-row {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.kontak-info-row i {
  color: var(--color-primary);
  width: 18px;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  border: 1px solid rgba(15, 110, 117, 0.15);
}
.social-icon:hover {
  transform: rotate(10deg) scale(1.1);
}
.social-icon.ig:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
}
.social-icon.fb:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}
.social-icon.yt:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.social-icon.tt:hover {
  background: #010101;
  color: #fff;
  border-color: #010101;
}
/* Contact form */
.contact-form {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(15, 110, 117, 0.1);
}
.form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(15, 110, 117, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 110, 117, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover {
  background: #0a5a60;
  transform: scale(1.02);
}
.form-success {
  display: none;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  .kontak-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
       FOOTER — 4 KOLOM
    =========================== */
footer#footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-brand-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-address {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col-title {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-list a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-links-list a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-text);
  transform: translateY(-2px);
}
.newsletter-row {
  display: flex;
  margin: 12px 0 8px;
}
.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px 0 0 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
}
.sub-btn {
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.2s;
}
.sub-btn:hover {
  background: #e5b800;
}
.newsletter-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-success {
  display: none;
  font-size: 0.82rem;
  color: var(--color-accent);
  margin-top: 8px;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom span {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
