  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: Arial, sans-serif; background: #f9f9f9; }


    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      display: block;
      height: auto;
      border-radius: 6px;
    }
    h1, h2, h3, h4, h5 {
      margin: 0;
    }

    /* Container */
    .container {
      width: min(90%, 1200px);
      margin: 0 auto;
    }

    /* Header & Nav */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-top: 3px solid #006400;
    border-bottom: 3px solid #006400;
    background: #fff;
    position: relative;
    z-index: 1000;
  }

  /* Logo */
  .logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .logo-container img {
    height: 50px;
    width: 50px;
    object-fit: contain;
  }
  .logo-text { font-weight: 700; color: #006400; font-size: 0.9rem; }

  /* Menu utama */
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    font-weight: 600;
  }
  .nav-menu li {
    position: relative;
    cursor: pointer;
    color: #006400;
    padding: 8px 12px;
    transition: 0.3s;
  }
  .nav-menu li:hover {
    background: #32cd32;
    color: #fff;
    border-radius: 5px;
  }

  /* Submenu */
  .nav-menu li ul {
    list-style: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #006400;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
  }
  .nav-menu li:hover > ul { display: flex; }
  .nav-menu li ul li {
    padding: 10px 15px;
    color: #006400;
  }
  .nav-menu li ul li:hover {
    background: #32cd32;
    color: #fff;
  }

    ul.nav-menu li ul {
    list-style: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #006400;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    animation: fadeDown 0.3s ease;
  }

  ul.nav-menu li.show-submenu > ul {
    display: flex;
  }
  /* Hamburger */
  .hamburger {
    display: none;
    position: relative;
    flex-direction: column;
    z-index: 9999;
    gap: 4px;
    cursor: pointer;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #006400;
    border-radius: 3px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-menu {
      position: absolute;
      top: 65px;
      right: 10px;
      flex-direction: column;
      background: #fff;
      width: 220px;
      padding: 10px;
      border: 1px solid #006400;
      border-radius: 8px;
      display: none;
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
  }

    /* Hero */
    .hero {
      position: relative;
      color: white;
      text-align: center;
      padding: 5rem 1rem 5rem;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      z-index: 1;
      justify-content: center;
      min-height: 700px;
      box-shadow: inset 0 0 0 1000px rgba(11, 47, 21, 0.68);
    }
    .hero h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin-bottom: 1rem;
      letter-spacing: 0.07em;
      text-shadow: 0 0 6px rgba(0,0,0,0.6);
    }
    .hero p {
      max-width: 650px;
      margin: 0 auto;
      font-size: 1.15rem;
      font-weight: 500;
      line-height: 1.4;
      text-shadow: 0 0 6px rgba(0,0,0,0.5);
    }

     .hero-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: inset 0 0 0 1000px rgba(11, 47, 21, 0.68); /* overlay */
      padding: 5rem 1rem;
    }

    /* Slide aktif */
    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    /* Teks di dalam slide */
    .hero-slide h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin-bottom: 1rem;
      letter-spacing: 0.07em;
      text-shadow: 0 0 6px rgba(0,0,0,0.6);
    }

    .hero-slide p {
      max-width: 650px;
      margin: 0 auto;
      font-size: 1.15rem;
      font-weight: 500;
      line-height: 1.4;
      text-shadow: 0 0 6px rgba(0,0,0,0.5);
    }

        section.keunggulan {
      padding: 50px 20px;
      background: #fff;
      text-align: center;
    }

    section.keunggulan h2 {
      font-size: 28px;
      margin-bottom: 30px;
      color: #2e7d32;
    }

    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }

    .card {
      background: #2e7d32;
      color: #fff;
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 20px rgba(0,0,0,0.3);
      background: #388e3c; /* hijau sedikit lebih terang saat hover */
    }

    .card .icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #ffd700; /* emas biar serasi */
    }

    .card h3 {
      margin: 10px 0;
      font-size: 20px;
      color: #ffd700;
    }

    .card p {
      font-size: 14px;
      line-height: 1.6;
      color: #e8f5e9; /* hijau muda lembut */
    }
    
    /* Message Section */
    .message-section {
      background-color: #2E7D32;
      color: #e6f0de;
      padding: 3rem 1rem 3rem;
      margin-top: -1rem;
    }
    .message-section .container {
      max-width: 1000px;
    }
    .message-title {
      font-weight: 900;
      font-size: 1.5rem;
      border-left: 5px solid #85bb47;
      padding-left: 1rem;
      margin-bottom: 1.2rem;
      font-family: 'Gill Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .message-content {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      align-items: center;
      justify-content: center;
    }
    .message-photo {
      flex: 1 1 250px;
      max-width: 280px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgb(11 65 17 / 0.7);
      border: 2px solid #85bb47;
      background-color: white;
    }
    .message-photo img {
      border-radius: 10px;
      object-fit: cover;
      width: 100%;
      height: 100%;
      aspect-ratio: 4 / 5;
    }
    .message-text {
      flex: 2 1 420px;
      color: #e6f0de;
      font-size: 1rem;
      line-height: 1.45;
      border-left: 3px solid #85bb47;
      padding-left: 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .message-text strong {
      display: block;
      font-weight: 900;
      font-size: 1rem;
      margin-top: 0.6rem;
      color: #cce2b7;
    }

    /* Extracurricular Section */
    section.extracurricular {
      background-color: white;
      padding: 2rem 1rem 4rem;
      margin-top: 3rem;
      border: 2px solid #85bb47;
      border-radius: 12px;
    }
    section.extracurricular .container {
      max-width: 1000px;
    }
    .extra-title {
      font-weight: 900;
      color: #2e7d32;
      font-size: 1.6rem;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 2rem;
      font-family: 'Gill Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .extra-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
      gap: 1.7rem 2rem;
    }
    .extra-card {
      border: 2px solid #85bb47;
      border-radius: 10px;
      text-align: center;
      padding: 1.4rem 1rem 1.6rem;
      cursor: default;
      transition: background-color 0.3s, box-shadow 0.4s ease;
      user-select: none;
      background-color: #edf3e7;
    }
    .extra-card:hover,
    .extra-card:focus-within {
      background-color: #cfe2b7;
      border-color: #538033;
      box-shadow: 0 4px 10px rgb(46 125 50 / 0.45);
    }
    .extra-icon {
      font-size: 2.5rem;
      color: #2e7d32;
      margin-bottom: 0.7rem;
      user-select: none;
    }
    .extra-label {
      font-weight: 700;
      font-size: 0.98rem;
      color: #2e7d32;
      user-select: none;
    }

    /* Statistic Section */
    .statistik {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8fcf7; /* Latar belakang sangat terang */
}

.extra-title {
    font-family: sans-serif;
    color: #2b703e; /* Hijau tua */
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
}
.statistik-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Kontainer untuk kotak-kotak statistik */
.stat-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.10), 0 1.5px 6px rgba(46,125,50,0.08);
    padding: 32px 24px;
    min-width: 140px;
    text-align: center;
    font-weight: bold;
    color: #14532d;
    font-size: 1.2rem;
    border: 2px solid #b2dfdb;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.18), 0 2px 8px rgba(46,125,50,0.13);
    border-color: #388e3c;
    background: linear-gradient(135deg, #dcedc8 0%, #a5d6a7 100%);
}

.stat-label {
    font-size: 1.15em;
    color: #388e3c;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.smooth-stat-number {
    font-size: 2.7em;
    font-weight: 800;
    color: #2b703e;
    margin-bottom: 0;
    letter-spacing: 0.04em;
}


    /* Staff Section */
    section.staff {
      background-color: #4b6f33;
      padding: 2rem 1rem 3rem;
      color: #d0e2b7;
      border-top: 4px solid #2e7d32;
      border-bottom: 4px solid #2e7d32;
    }
    .staff-container {
      max-width: 1100px;
      margin: 0 auto;
    }
    .staff-title {
      font-weight: 900;
      font-size: 1.5rem;
      margin-bottom: 2rem;
      text-align: center;
      font-family: 'Gill Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      user-select: none;
    }
    .staff-list {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: #556b2f transparent;
      user-select: none;
    }
    .staff-list::-webkit-scrollbar {
      height: 7px;
    }
    .staff-list::-webkit-scrollbar-thumb {
      background-color: #556b2f;
      border-radius: 8px;
    }
    .staff-card {
      background-color: #3a5f15;
      border-radius: 8px;
      min-width: 200px;
      padding: 1rem;
      box-shadow: 0 4px 8px rgb(0 0 0 / 0.3);
      user-select: none;
      flex-shrink: 0;
    }
    .staff-img-wrapper {
      width: 100%;
      height: 140px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 0.8rem;
      background-color: #aacd85;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .staff-img-wrapper img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    .staff-name {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 0.3rem;
      color: #daeec6;
      user-select: text;
    }
    .staff-title-text {
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      color: #b0d380;
      user-select: text;
    }

    /* Video & News Section */
    .two-column-section {
      max-width: 1100px;
      margin: 3rem auto 4rem;
      padding: 0 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .video-profile, .news-latest {
      background-color: white;
      border: 2px solid #85bb47;
      border-radius: 10px;
      flex: 1 1 440px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      padding: 1rem 1.2rem 1.5rem;
      color: #333;
    }
    .section-header {
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 1rem;
      border-left: 6px solid #2e7d32;
      padding-left: 0.8rem;
      color: #2e7d32;
      font-family: 'Gill Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      user-select: none;
    }

    /* Video Content */
    .video-profile iframe,
    .video-profile video {
      width: 100%;
      border-radius: 10px;
      aspect-ratio: 16 / 9;
      margin-bottom: 1rem;
      background-color: #000;
    }
    .video-text {
      font-size: 1rem;
      line-height: 1.4;
      color: #222;
    }

    /* News Items */
    .news-item {
      display: flex;
      gap: 0.8rem;
      margin-bottom: 1.3rem;
      cursor: pointer;
      transition: background-color 0.25s ease;
      border-radius: 8px;
      padding: 0.25rem;
      align-items: center;
    }
    .news-item:hover {
      background-color: #e1efcd;
    }
    .news-thumb {
      flex-shrink: 0;
      border-radius: 6px;
      width: 96px;
      height: 72px;
      overflow: hidden;
      background-color: #bbb;
      flex-shrink: 0;
      border: 2px solid #85bb47;
    }
    .news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-meta {
      flex-grow: 1;
    }
    .news-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.12rem;
      color: #33691e;
    }
    .news-date {
      font-size: 0.82rem;
      color: #5a5a5a;
      font-style: italic;
      user-select: none;
    }

    /* Responsive */
    @media (max-width: 700px) {
      header nav ul {
        gap: 0.6rem;
        font-size: 0.8rem;
      }
      .hero h1 {
        font-size: 1.7rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .message-text {
        padding-left: 0.6rem;
        border-left-width: 2px;
      }
      .two-column-section {
        flex-direction: column;
      }
      .extra-grid {
        grid-template-columns: repeat(auto-fit,minmax(130px,1fr));
        gap: 1.2rem 1rem;
      }
      .statistik-container {
        flex-direction: column;
        gap: 0.7rem;
      }
      .staff-list {
        overflow-x: scroll;
        padding-bottom: 1rem;
      }
      .staff-card {
        min-width: 160px;
      }
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

    .footer_color {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #181818;
      color: #eee;
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 20px 20px 20px;
      display: flex;
      flex-direction: column;
    }

    /* Form Notice Area on top */
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 18px;
      border-bottom: 1px solid #333;
      margin-bottom: 32px;
    }

    .footer-top h2 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      margin: 0;
    }

    .btn-ppdb {
      display: inline-flex;
      align-items: center;
      background: #04ee00;
      border: none;
      border-radius: 9999px;
      padding: 8px 22px;
      font-weight: 600;
      font-size: 0.9rem;
      color: white;
      cursor: pointer;
      transition: background 0.3s ease;
      text-decoration: none;
      user-select: none;
    }

    .btn-ppdb:hover {
      background: #00cf0a;
    }

    .btn-ppdb svg {
      margin-right: 8px;
      stroke: white;
      stroke-width: 2;
      width: 18px;
      height: 18px;
    }

    /* Main Footer Content */
    .footer-content {
      display: flex;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
    }

    .footer-logo-desc {
      flex: 1 1 320px;
      max-width: 360px;
    }

    .footer-logo {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-bottom: 12px;
    }

    .footer-logo img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      background-color: #fff;
      padding: 4px;
      border-radius: 6px;
    }

    .footer-logo-text {
      display: flex;
      flex-direction: column;
      font-size: 0.875rem;
      color: #eee;
    }
    .footer-logo-text .main-title {
      font-weight: 700;
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 4px;
      user-select: text;
    }
    .footer-logo-text .main-title .highlight {
      color: #19d219; /* Blue tone */
      font-weight: 700;
    }
    .footer-logo-text .address {
      font-weight: 400;
      font-size: 0.75rem;
      opacity: 0.8;
      user-select: text;
      line-height: 1.4;
    }

    .footer-description {
      font-weight: 400;
      font-size: 0.9rem;
      margin-top: 4px;
      max-width: 360px;
      color: #dcdcdc;
      user-select: text;
    }

    .social-icons {
      margin-top: 20px;
      display: flex;
      gap: 14px;
    }

    .social-icons a {
      display: inline-flex;
      text-decoration: none;
      color: #bbb;
      font-size: 0;
      transition: color 0.3s ease;
      user-select: none;
    }

    .social-icons a:hover {
      color: #00ee20;
    }

    .social-icons svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* Info & Contact columns */
    .footer-col {
      flex: 1 1 180px;
      max-width: 240px;
    }

    .footer-col h3 {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 10px;
      border-bottom: 1px solid #19d24a;
      padding-bottom: 4px;
      user-select: text;
      color: #fff;
    }

    .footer-links,
    .footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      user-select: none;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links li a {
      color: #82ff7e;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      transition: color 0.3s ease;
    }

    .footer-links li a:hover {
      color: #00ee20;
    }

    .footer-links li a svg {
      margin-right: 6px;
      stroke: #00ee20;
      stroke-width: 2;
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .footer-contact-list li {
      margin-bottom: 12px;
      font-size: 0.9rem;
      color: #ccc;
      display: flex;
      align-items: center;
      gap: 8px;
      word-break: break-word;
      user-select: text;
    }

    .footer-contact-list li svg {
      stroke: #00ee20;
      stroke-width: 2.2;
      width: 18px;
      height: 18px;
      min-width: 18px;
      min-height: 18px;
      flex-shrink: 0;
    }

    /* Copyright note */
    .footer-bottom {
      text-align: center;
      color: #666;
      font-size: 0.75rem;
      margin-top: 46px;
      user-select: text;
    }

    /* Responsive */
    @media (max-width: 720px) {
      .footer-content {
        flex-direction: column;
        gap: 32px;
      }
      .footer-col,
      .footer-logo-desc {
        max-width: 100%;
      }
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }


