  /* =========================================
    1. ROOT & RESET
    ========================================= */
  :root{
    --bg:#fdfdfd;
    --text:#1f2937;
    --muted:#f4f8f5;
    /* Warna Hijau Utama (Deep Forest Green) */
    --primary:#0b6113;      
    --primary-600:#084f0e;   
    --accent:#ffd54d;
    --card:#ffffff;
    --shadow:0 6px 16px rgba(0,0,0,.08);
    --radius:16px;
  }

  *{box-sizing:border-box}
  html,body{margin:0;padding:0}

  html {
    scroll-padding-top: 70px; /* Jarak aman untuk sticky navbar */
    scroll-behavior: smooth;
  }

  body{
    font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    background:var(--bg); color:var(--text); line-height:1.6;
  }

  img{max-width:100%; display:block}
  a{color:inherit; text-decoration:none}
  ul{margin:0; padding:0; list-style:none}


  /* =========================================
    2. LAYOUT UTAMA
    ========================================= */
  .container{width:min(1120px, 92%); margin-inline:auto}
  .section{padding:72px 0}
  .section.muted{background:var(--muted)}
  .section-head{ text-align:center; margin-bottom:28px }
  .section-head h2{margin:0 0 10px; font-size:28px}
  .section-head p{color:#4b5563}
  .center{text-align:center}
  .mt-20{margin-top:20px}


  /* =========================================
    3. NAVBAR
    ========================================= */
  .navbar{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    box-shadow:0 2px 10px rgba(0,0,0,.04);
  }
  .nav-inner{display:flex; align-items:center; justify-content:space-between; height:64px}

  .logo{display:flex; align-items:center; gap:8px; font-weight:700; color:var(--primary)}
  .logo-img {
    height: 70px; width: auto; display: block; object-fit: contain; margin-top: -4px;
  }

  .nav{display:flex; align-items:center; gap:10px}
  .nav-toggle{display:none; border:0; background:transparent; font-size:22px; padding:8px; border-radius:12px; cursor:pointer}
  .nav-cta{display:flex; align-items:center; gap:10px}
  .nav-menu{display:flex; gap:18px}

  /* Style Link Menu (Stabil & Tidak Geser) */
  .nav-link {
    font-weight: 600; /* Ketebalan tetap */
    opacity: 0.7;
    padding: 10px 4px;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s ease, opacity 0.3s ease; /* Hanya transisi warna */
    color: var(--text);
    background: transparent;
    display: inline-block; /* Menjaga kotak tetap */
  }

  .nav-link:hover {
    color: var(--primary);
    opacity: 1;
  }

  .nav-link.active {
    color: var(--primary);
    opacity: 1;
    font-weight: 600; /* ✅ PENTING: Tetap 600, jangan diubah jadi 700/bold */
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }

  .nav-link.active::after {
    width: 100%;
  }

  /* Mobile Menu */
  @media (max-width: 860px){
    .nav-toggle{display:block}
    .nav-menu{
      position:fixed; inset:64px 0 auto 0; background:#fff;
      display:flex; flex-direction:column; padding:14px; gap:4px; transform:translateY(-10px);
      visibility:hidden; opacity:0; transition:.25s; box-shadow:0 8px 16px rgba(0,0,0,.08)
    }
    .nav-menu.open{visibility:visible; opacity:1; transform:translateY(0)}
    .hide-sm{display:none}
  }


  /* =========================================
    4. BUTTONS
    ========================================= */
  .btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 18px; border-radius:12px; font-weight:700; border:1px solid transparent; transition:.2s; cursor:pointer}
  .btn-primary{background:var(--primary); color:#fff}
  .btn-primary:hover{background:var(--primary-600)}
  .btn-accent{background:var(--accent); color:#1f2937}
  .btn-accent:hover{filter:brightness(.95)}
  .btn-ghost{border-color:#d1d5db; color:#374151}
  .btn-ghost:hover{background:#f3f4f6}
  .btn-icon{display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:12px; border:1px solid #e5e7eb; background:#fff; cursor:pointer}


  /* =========================================
    5. BANNER SLIDER ATAS (Utama)
    ========================================= */
  .banner-slider {
    width: 100%;
    height: auto; /* Tinggi otomatis */
    background: #e0e0e0;
    display: block;
  }
  .bannerSwiper { width: 100%; height: auto; }
  .bannerSwiper .swiper-slide { height: auto; }
  .bannerSwiper .swiper-slide img {
    width: 100%; height: auto; object-fit: contain; display: block;
  }
  .bannerSwiper .swiper-pagination-bullet { background: #fff; opacity: 0.8; }
  .bannerSwiper .swiper-pagination-bullet-active { background: var(--primary); }
  .bannerSwiper .swiper-button-prev, .bannerSwiper .swiper-button-next {
    color: #ffffff; opacity: 0.7; transition: opacity 0.2s;
  }
  .bannerSwiper:hover .swiper-button-prev, .bannerSwiper:hover .swiper-button-next { opacity: 1; }


  /* =========================================
    6. HERO SECTION
    ========================================= */
  .hero {
    background: #0b6113; /* Hijau Tua Solid */
    color: #fff;
    padding: 36px 0; /* Ramping */
  }
  .hero-grid{display:grid; grid-template-columns: 1.2fr 1fr; gap:36px; align-items:center}
  .hero-text h1{margin:0 0 10px; font-size:38px}
  .hero-text .brand{color:#ffd54d}
  .hero-bullets{margin-top:14px; display:grid; gap:8px}
  .hero-bullets i{color:#ffd54d; margin-right:6px}
  .hero-actions{display:flex; gap:12px; margin:18px 0}

  .hero-img { width: 100%; max-width: 100%; overflow: hidden; position: relative; }
  .hero-img .swiper { width: 100%; height: 50vh; }
  .hero-img .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

  @media (max-width: 980px){ .hero-grid{grid-template-columns:1fr} }
  @media (max-width: 768px) { .hero-img .swiper { height: 60vh; } }
  @media (max-width: 480px) { .hero-img .swiper { height: 55vh; } }


  /* =========================================
    7. SLIDER PROMO (FULL WIDTH)
    ========================================= */
  .promo-section-wrapper {
    padding: 0 !important;
    margin-top: 0;    /* Tempel langsung dengan Hero Hijau */
    margin-bottom: 60px;
    width: 100%;      /* Lebar Penuh */
    background: transparent;
    position: relative; 
    z-index: 10;
  }

  .promoSwiper {
    width: 100%; 
    border-radius: 0; /* ❌ Hapus sudut melengkung agar pas di layar */
    overflow: hidden;
    box-shadow: none; /* Hapus bayangan agar menyatu */
  }

  .promo-img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
  }

  /* Tombol Navigasi */
  .promoSwiper .swiper-button-next, 
  .promoSwiper .swiper-button-prev {
      color: #0b6113; 
      background-color: rgba(255, 255, 255, 0.8);
      width: 50px; height: 50px; 
      border-radius: 50%; font-weight: bold;
      opacity: 0; transition: all 0.3s ease;
      /* Memberi jarak dari pinggir layar */
      margin-left: 20px; 
      margin-right: 20px;
  }

  .promoSwiper .swiper-button-next::after, 
  .promoSwiper .swiper-button-prev::after { 
      font-size: 20px; 
  }

  .promoSwiper:hover .swiper-button-next, 
  .promoSwiper:hover .swiper-button-prev { 
      opacity: 1; 
  }

  .promoSwiper .swiper-pagination-bullet-active { 
      background: #0b6113; 
  }
  /* =========================================
    8. LAYANAN & CARD STANDAR
    ========================================= */
  .card{
    background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
    padding:20px; transition:transform .25s, box-shadow .25s
  }
  .card:hover{transform:translateY(-6px); box-shadow:0 10px 22px rgba(0,0,0,.12)}

  #layanan {
    padding: 60px 20px;
    background: url('assets/bk1.png') no-repeat center/cover;
    animation: changeBackground 12s infinite ease-in-out;
    position: relative;
  }
  #layanan::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: 1;
  }
  #layanan .container { position: relative; z-index: 2; }
  #layanan .section-head h2 { color: #fff; text-align: center; margin-bottom: 10px; }
  #layanan .section-head p { color: #fff; text-align: center; font-size: 18px; margin-bottom: 40px; }

  #layanan .layanan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Kolom */
    gap: 20px;
  }
  @media (max-width: 1024px) { #layanan .layanan-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { #layanan .layanan-grid { grid-template-columns: repeat(2, 1fr); } }

  /* Style Khusus Kartu Layanan */
  #layanan .layanan-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 30px 20px; border-radius: 16px; text-align: center;
    position: relative; overflow: hidden; border: 2px solid transparent;
  }
  #layanan .layanan-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: linear-gradient(135deg, #4f46e5, #3b82f6, #06b6d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
  }
  #layanan .layanan-card:hover { transform: translateY(-10px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
  #layanan .icon {
    font-size: 40px; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px auto; border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #3b82f6); color: #fff;
  }
  #layanan .layanan-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
  }
  #layanan .layanan-card h3 { font-size: 20px; font-weight: 700; color: #1f2937; margin-bottom: 10px; }
  #layanan .layanan-card p { font-size: 16px; color: #4b5563; line-height: 1.5; }

  @keyframes changeBackground {
    0%, 33% { background-image: url('assets/bk1.png'); }
    34%, 66% { background-image: url('assets/bk2.png'); }
    67%, 100% { background-image: url('assets/bk3.png'); }
  }


  /* =========================================
    9. FOOTER & UTILITIES
    ========================================= */
  .footer{background:#0a7b3b; color:#fff; padding-top:28px}
  .footer-grid{display:grid; grid-template-columns: 1.2fr .8fr .6fr; gap:18px; align-items:flex-start}
  .footer-logo{font-weight:800; margin-bottom:8px}
  .footer-links li a{display:block; padding:4px 0; opacity:.9}
  .footer-links li a:hover{opacity:1}
  .footer-social a{font-size:22px; margin-right:8px; opacity:.9}
  .footer-social a:hover{opacity:1}
  .footer-bottom{margin-top:12px; border-top:1px solid rgba(255,255,255,.2); padding:12px 0; text-align:center; font-size:14px}
  @media (max-width: 860px){ .footer-grid{grid-template-columns:1fr} }

  /* Floating Buttons */
  .floating-buttons { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 12px; z-index: 100; }
  .contact-btn {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; font-size: 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18); transition: transform 0.3s ease;
  }
  .contact-btn:hover { transform: scale(1.1); }
  .wa-btn { background: #25D366; animation: pulse 2s infinite; }
  .ig-btn { background: linear-gradient(45deg, #f09433, #e61e6c, #6156e0); }
  .phone-btn { background: #34B7F1; }
  @keyframes pulse{0%{transform:scale(1)} 50%{transform:scale(1.06)} 100%{transform:scale(1)}}

  /* Reveal Animation */
  .reveal{ opacity:0; transform:translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.active { opacity:1; transform:none; }

  /* Typing Effect */
  .typing-text {
    font-size: 1.5rem; font-weight: 700; color: #ffffff; font-style: italic;
    padding-left: 10px; padding-right: 8px; display: inline-block; overflow: hidden; vertical-align: middle;
  }
  .typing-text.caret::after {
    content: ""; display: inline-block; width: 2px; height: 1.2em; background: #ffffff; margin-left: 6px; vertical-align: middle; animation: qi-blink 0.8s steps(2, start) infinite;
  }
  @keyframes qi-blink { 50% { opacity: 0; } }

  /* Dark Mode */
  body.dark{ --bg:#0b1410; --text:#e5efe9; --muted:#0e1b15; --card:#0f1f19; --shadow:0 6px 16px rgba(0,0,0,.35); }
  body.dark .navbar{background:rgba(11,20,16,.8)}
  body.dark .nav-menu{background:#0b1410}
  body.dark .nav-link{color:#e5efe9;}
  body.dark .btn-ghost{border-color:#243a2f; color:#e5efe9}
  body.dark .btn-icon{background:#13251e; border-color:#1e3a2e; color:#d0f0e1}
  body.dark .card, body.dark .faq-item, body.dark input, body.dark textarea{background:#10221b; border-color:#1f3b2f; color:#e5efe9}
  body.dark .footer{background:#0b3d1f}
  body.dark .logo span { background: var(--primary); -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: initial; color: var(--primary); }


  /* =========================================
    10. DESAIN HALAMAN ALUMNI & PENGAJAR
    ========================================= */

  /* Header Halaman (Hijau dengan pola) */
  .page-header-alumni {
    background: radial-gradient(circle at top right, #0d7a23 0%, #0b6113 100%);
    color: #fff;
    padding: 110px 0 100px;
    position: relative; overflow: hidden; text-align: center;
  }

  .bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.6; z-index: 1;
  }

  .glow-decoration { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: 1; }
  .glow-1 { width: 300px; height: 300px; background: #ffd54d; top: -100px; left: -50px; }
  .glow-2 { width: 400px; height: 400px; background: #4ade80; bottom: 0; right: -100px; }

  .relative-content { position: relative; z-index: 10; }

  .badge-wrapper { margin-bottom: 24px; }
  .hall-of-fame-badge {
    background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 213, 77, 0.5); color: #ffd54d;
    padding: 8px 24px; border-radius: 50px; font-weight: 700; letter-spacing: 2px;
    font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(4px);
  }

  .page-header-alumni h1 {
    font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .gold-text {
    background: linear-gradient(to bottom, #ffeeba, #ffd54d);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: #ffd54d; display: inline-block;
  }

  .page-header-alumni p {
    font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); max-width: 650px; margin: 0 auto; line-height: 1.6;
  }

  .wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 5; }
  .wave-divider svg { width: 100%; height: 60px; display: block; }

  /* Grid Gallery (Background Putih, Bingkai Hijau) */
  .alumni-bg {
    background-color: #ffffff; /* Putih */
    padding-top: 40px; padding-bottom: 60px;
  }

  .gallery-label {
    text-align: center; margin-bottom: 30px; font-weight: 700;
    color: var(--primary); /* Teks Hijau */
    opacity: 1; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }

  .alumni-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
    gap: 24px;
  }

  .alumni-photo-card {
    background: var(--primary); /* Bingkai Hijau */
    padding: 8px; border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; top: 0;
  }

  .alumni-photo-card:hover {
    top: -10px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); transform: scale(1.02); z-index: 2;
  }

  .alumni-photo-card img {
    width: 100%; height: auto; object-fit: contain;
    border-radius: 10px; display: block; background-color: #fff; 
  }

  @media (max-width: 768px) {
    .page-header-alumni { padding-top: 120px; }
    .page-header-alumni h1 { font-size: 2.5rem; }
    .alumni-photo-grid { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  }


  /* =========================================
    11. CTA SECTION PREMIUM
    ========================================= */
  .cta-premium { padding: 80px 0; background: transparent; }
  .cta-card-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #06420c 100%);
    border-radius: 30px; padding: 60px 40px; position: relative; overflow: hidden; color: #fff;
    box-shadow: 0 20px 40px rgba(11, 97, 19, 0.25); text-align: center;
  }
  .cta-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px; opacity: 0.4;
  }
  .cta-circle { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.05); z-index: 1; }
  .circle-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
  .circle-2 { width: 200px; height: 200px; bottom: -50px; right: -50px; background: rgba(255, 213, 77, 0.1); }
  .cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .icon-badge {
    font-size: 3rem; color: var(--accent); margin-bottom: 20px; display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2)); animation: floatIcon 3s ease-in-out infinite;
  }
  @keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .cta-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; line-height: 1.2; }
  .cta-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 30px; color: #e2e8f0; }
  .btn-cta-pulse {
    background: #fff; color: var(--primary); font-weight: 800; padding: 16px 40px;
    border-radius: 50px; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); text-decoration: none;
  }
  .btn-cta-pulse:hover {
    transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: var(--accent); color: #1f2937;
  }
  @media (max-width: 768px) {
    .cta-card-wrapper { padding: 40px 20px; }
    .cta-content h2 { font-size: 1.8rem; }
    .btn-cta-pulse { width: 100%; justify-content: center; }
  }


  /* =========================================
    12. FORMULIR ABSEN (DESIGN)
    ========================================= */
  .form-card-wrapper {
    background: #fff; max-width: 600px; margin: -80px auto 0; padding: 40px;
    border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); position: relative; z-index: 10; border: 1px solid #eee;
  }
  .form-header { text-align: center; margin-bottom: 30px; }
  .form-header h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 5px; }
  .form-header p { color: #64748b; font-size: 0.95rem; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #334155; font-size: 0.95rem; }
  .form-group label i { color: var(--primary); margin-right: 5px; }
  .select-wrapper { position: relative; }
  .absen-form select, .absen-form input[type="text"] {
    width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 12px;
    font-size: 1rem; color: #1e293b; background-color: #fff; appearance: none; transition: all 0.3s ease;
  }
  .absen-form select:focus, .absen-form input[type="text"]:focus {
    border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(11, 97, 19, 0.1);
  }
  .arrow-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; color: #64748b; }
  .upload-area {
    border: 2px dashed #cbd5e1; border-radius: 16px; padding: 30px; text-align: center; cursor: pointer; transition: all 0.3s ease; background: #f8fafc;
  }
  .upload-area:hover { border-color: var(--primary); background: #f0fdf4; }
  .upload-icon { font-size: 2.5rem; color: #94a3b8; margin-bottom: 10px; display: block; transition: color 0.3s; }
  .upload-area:hover .upload-icon { color: var(--primary); }
  .file-name { display: block; margin-top: 8px; font-size: 0.85rem; color: #64748b; font-weight: 500; }
  .btn-block { width: 100%; display: flex; justify-content: center; }
  .btn-lg-form { padding: 16px; font-size: 1.1rem; margin-top: 10px; border-radius: 50px; box-shadow: 0 10px 20px rgba(11, 97, 19, 0.2); }
  .btn-lg-form:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(11, 97, 19, 0.3); }
  @media (max-width: 600px) { .form-card-wrapper { padding: 25px; margin-top: -40px; } }

  /* =========================================
    PERBAIKAN TOMBOL HERO
    ========================================= */

  /* Khusus tombol Ghost di dalam Hero Section */
  .hero .btn-ghost {
    border: 2px solid #ffffff;  /* Bingkai Putih */
    color: #ffffff;             /* Teks Putih */
    background: transparent;
  }

  /* Efek saat kursor diarahkan (Hover) */
  .hero .btn-ghost:hover {
    background: #ffffff;        /* Background jadi Putih */
    color: var(--primary);      /* Teks berubah jadi Hijau */
    border-color: #ffffff;
  }

  /* =========================================
    2. SAMBUTAN (DESIGN GREEN CARD PREMIUM)
    ========================================= */

  /* Latar Belakang Section (Luar Bingkai) - Tetap terang agar kontras */
  .welcome-section {
    position: relative;
    background: #f8f9fa; /* Abu-abu sangat muda */
    padding: 60px 0;
    overflow: hidden;
  }

  /* Pola di luar bingkai */
  .welcome-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(#0b6113 0.5px, transparent 0.5px);
    background-size: 30px 30px; opacity: 0.05; z-index: 0;
  }

  .welcome-glow {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%; filter: blur(120px); z-index: 0; opacity: 0.5;
  }
  .glow-1 { background: rgba(11, 97, 19, 0.1); top: -150px; left: -150px; }
  .glow-2 { background: rgba(255, 213, 77, 0.15); bottom: -150px; right: -150px; }

  /* === BINGKAI KARTU UTAMA (HIJAU TUA) === */
  .welcome-card-frame {
    position: relative;
    /* ✅ UBAH BACKGROUND JADI HIJAU TUA */
    background: var(--primary); 
    color: #ffffff; /* Teks jadi Putih */
    
    border-radius: 40px;
    padding: 80px 50px; 
    
    /* Shadow tebal agar terlihat timbul */
    box-shadow: 0 30px 60px rgba(11, 97, 19, 0.3);
    z-index: 2;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* Hiasan Sudut (Diubah jadi transparan putih) */
  .frame-corner {
    position: absolute; width: 150px; height: 150px;
    /* Menggunakan SVG pola putih transparan */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0V100H100V0H0ZM10 10H90V90H10V10Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat; z-index: 0;
  }
  .corner-tl { top: 0; left: 0; }
  .corner-br { bottom: 0; right: 0; transform: rotate(180deg); }

  /* Konten Dalam */
  .welcome-inner-content {
    position: relative; z-index: 2;
    max-width: 1000px; margin: 0 auto;
  }

  /* Typography */
  .welcome-subtitle {
    display: inline-block; 
    font-weight: 700; 
    color: var(--accent); /* Teks Emas */
    background: rgba(255, 255, 255, 0.1); /* Background transparan */
    padding: 10px 24px; border-radius: 50px;
    margin-bottom: 25px; font-size: 0.9rem; letter-spacing: 1px;
    border: 1px solid rgba(255, 213, 77, 0.3);
  }

  .main-title {
    font-size: 3.5rem; font-weight: 800; 
    color: #ffffff; /* Judul Putih */
    line-height: 1.2; margin-bottom: 30px;
  }

  .highlight-green {
    color: var(--accent); /* "Tumbuh dengan Ilmu" jadi Emas */
    background: none; /* Hapus background stabilo lama */
    text-shadow: 0 0 20px rgba(255, 213, 77, 0.4);
  }

  .welcome-content p {
    font-size: 1.2rem; 
    color: rgba(255, 255, 255, 0.9); /* Teks Putih agak transparan */
    line-height: 1.8; 
    margin-bottom: 20px;
    max-width: 900px; margin-left: auto; margin-right: auto;
  }

  /* Badge Lokasi (Disesuaikan untuk background gelap) */
  .location-badges-modern {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 50px 0;
  }
  .loc-pill {
    background: rgba(255, 255, 255, 0.1); /* Transparan Putih */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 30px; border-radius: 50px;
    font-weight: 600; font-size: 1rem; 
    color: #ffffff; /* Teks Putih */
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
  }
  .icon-green { color: var(--accent); font-size: 1.4rem; } /* Ikon Emas */

  .loc-pill:hover {
    background: #ffffff; 
    color: var(--primary); /* Teks jadi Hijau saat hover */
    transform: translateY(-3px);
  }
  .loc-pill:hover .icon-green { color: var(--primary); }

  /* Quote Box */
  .quote-box-modern {
    background: rgba(0, 0, 0, 0.2); /* Latar hitam transparan */
    border-left: 5px solid var(--accent);
    padding: 25px 40px;
    border-radius: 0 16px 16px 0;
    margin: 0 auto 40px;
    max-width: 800px;
    font-style: italic; font-weight: 600; 
    color: #e2e8f0; /* Putih keabuan */
    font-size: 1.2rem;
  }

  /* Tombol (Dibuat Putih/Emas agar kontras) */
  .btn-lg-glow {
    background: #ffffff; /* Tombol Putih */
    color: var(--primary); /* Teks Hijau */
    padding: 20px 50px; font-size: 1.2rem; font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.3s;
  }
  .btn-lg-glow:hover {
    transform: translateY(-5px); 
    background: var(--accent); /* Berubah Emas saat hover */
    color: #1f2937;
    box-shadow: 0 20px 50px rgba(255, 213, 77, 0.4);
  }

  /* Responsif di HP */
  @media (max-width: 768px) {
    .welcome-card-frame {
      padding: 50px 20px;
      border-radius: 24px;
    }
    .main-title { font-size: 2.2rem; }
    .welcome-content p { font-size: 1rem; }
    .loc-pill { width: 100%; justify-content: center; }
  }
  /* =========================================
    3. VISI MISI SECTION (PREMIUM LIST DESIGN)
    ========================================= */

  .visi-misi-section {
    background: #0b6113; /* Hijau Solid Gelap */
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  /* Dekorasi Background Halus */
  .visi-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.3;
  }

  .visi-glow {
    position: absolute; width: 500px; height: 500px;
    background: rgba(255, 213, 77, 0.08); /* Glow Emas Sangat Halus */
    border-radius: 50%; filter: blur(120px);
    top: -100px; left: -100px;
  }

  /* Layout 2 Kolom */
  .visi-misi-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Teks lebih lebar */
    gap: 60px;
    align-items: start; /* Rata atas agar rapi */
    position: relative; z-index: 2;
  }

  /* --- LABEL JUDUL (VISI & MISI) --- */
  .section-label-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    width: fit-content;
  }

  .label-icon {
    background: var(--accent); /* Kuning Emas */
    color: #000;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .label-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    margin: 0;
  }

  /* --- VISI STYLE (WHITE CARD) --- */
  .visi-container {
    margin-bottom: 50px;
    
    /* ✅ UBAH JADI PUTIH */
    background: #ffffff; 
    
    padding: 40px; /* Sedikit diperluas agar lega */
    border-radius: 24px;
    
    /* Tambahkan bayangan agar terlihat timbul/pop-up */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: none; /* Hapus garis pinggir lama */
    position: relative;
  }

  /* Panah kecil di kiri kotak (Hiasan opsional agar seperti speech bubble) */
  .visi-container::before {
    content: '';
    position: absolute;
    left: -15px; /* Muncul di kiri */
    top: 40px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #ffffff; /* Warna putih sama dengan kotak */
  }

  .visi-text-main {
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    
    /* ✅ UBAH TEKS JADI GELAP (karena backgroundnya sekarang putih) */
    color: #1f2937; 
  }

  /* Sesuaikan warna highlight agar tetap bagus di background putih */
  .highlight-gold {
    color: #d97706; /* Ubah jadi Emas yang agak gelap/oranye agar terbaca */
    font-weight: 700;
    text-shadow: none; /* Hapus glow lama */
    background: rgba(255, 213, 77, 0.2); /* Stabilo kuning tipis */
    padding: 0 5px;
    border-radius: 4px;
  }
  /* --- MISI STYLE (LIST MODERN) --- */
  .misi-list-modern {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom untuk Misi */
    gap: 20px;
  }

  .misi-item {
    background: rgba(255, 255, 255, 0.95); /* Kartu Putih Bersih */
    color: #1f2937; /* Teks Hitam/Abu Gelap */
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .misi-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }

  .misi-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary); /* Nomor Hijau */
    opacity: 0.2; /* Samar */
    line-height: 1;
  }

  .misi-item:hover .misi-number {
    opacity: 1; /* Jelas saat hover */
    color: var(--accent); /* Berubah Kuning */
  }

  .misi-desc h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
  }

  .misi-desc p {
    margin: 0;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.4;
  }

  .full-item {
    grid-column: span 2; /* Misi ke-5 melebar */
  }

  /* --- KOLOM KANAN (GAMBAR) --- */
  .visi-misi-image-col {
    position: relative;
    display: flex; justify-content: center;
    align-items: center;
    height: 100%;
  }

  .image-frame-creative {
    position: relative;
  }

  .main-img {
    border-radius: 24px;
    box-shadow: 20px 20px 0 rgba(255, 213, 77, 0.2); /* Shadow Emas padat */
    border: 4px solid rgba(255, 255, 255, 0.2);
    max-height: 650px;
    object-fit: contain;
  }

  /* Responsif */
  @media (max-width: 900px) {
    .visi-misi-wrapper { grid-template-columns: 1fr; }
    .visi-misi-image-col { order: -1; margin-bottom: 40px; } /* Gambar pindah ke atas */
    .main-img { max-height: 400px; }
  }

  @media (max-width: 600px) {
    .misi-list-modern { grid-template-columns: 1fr; } /* 1 Kolom di HP */
    .full-item { grid-column: span 1; }
    .label-text { font-size: 1.2rem; }
  }

  /* =========================================
    STYLE PRESTASI SLIDER (GREEN & RUNNING)
    ========================================= */

  .prestasi-section {
    /* ✅ Ubah Background jadi Hijau Tua (Sama dengan Hero/Footer) */
    background: #0b6113; 
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  /* Agar Judul & Deskripsi berwarna Putih */
  .prestasi-section h2 {
    color: #ffffff !important;
  }
  .prestasi-section p {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* ✅ PENTING: Agar slider jalan mulus tanpa putus */
  .prestasiSwiper .swiper-wrapper {
    transition-timing-function: linear;
  }

  .prestasiSwiper {
    padding-bottom: 50px !important;
    padding-top: 20px;
  }

  /* ==========================================================================
    GAYA PRESTASI DENGAN BINGKAI PUTIH & FOTO UTUH
    ========================================================================== */

  /* Wadah Kartu sebagai Bingkai */
  .prestasi-card {
      /* 1. Membuat Bingkai Putih */
      background-color: #ffffff; /* Warna latar belakang putih */
      padding: 12px; /* Ketebalan bingkai putih */
      border-radius: 12px; /* Sudut bingkai yang membulat */

      /* Dekorasi tambahan agar terlihat timbul */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
      border: 1px solid rgba(0, 0, 0, 0.05); /* Garis tepi sangat halus */
      
      /* Menentukan tinggi tetap agar semua kartu seragam di slider */
      height: 200px; /* Anda bisa sesuaikan tingginya di sini */
      width: 100%;
      
      /* Mengatur posisi gambar di tengah bingkai */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Efek saat kursor diarahkan ke bingkai */
  .prestasi-card:hover {
      transform: translateY(-5px); /* Sedikit naik ke atas */
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Bayangan lebih tegas */
  }

  /* Gaya Gambar di dalam Bingkai */
  .prestasi-card img {
      width: 100%;
      height: 100%;

      /* 2. KUNCI AGAR FOTO TIDAK TERPOTONG */
      object-fit: contain; 
      /* 'contain' memastikan seluruh gambar terlihat pas di dalam wadah */

      border-radius: 8px; /* Sedikit membulatkan sudut gambar dalamnya */
      display: block;
  }

  /* Efek Hover */
  .prestasi-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent); /* Border Kuning saat hover */
  }

  /* Gaya Gambar di dalam Bingkai */
  .prestasi-card img {
    width: 100%;
    height: 100%;

    /* ✅ KUNCI PERBAIKAN: Gunakan 'contain' bukan 'cover' */
    /* 'contain' memaksa seluruh gambar masuk ke dalam kotak tanpa terpotong */
    object-fit: contain; 
    
    /* Menambahkan radius kecil pada gambar */
    border-radius: 8px; 
    display: block;
  }
  /* Sembunyikan Pagination (Titik-titik) karena slider jalan sendiri */
  .prestasiSwiper .swiper-pagination {
    display: none;
  }

  /* =========================================
    13. HALAMAN LOGIN TUTOR (ABSEN)
    ========================================= */
  .login-section {
    background-color: #f8f9fa;
    padding-top: 0;
    min-height: 600px; /* Agar footer tidak naik terlalu tinggi */
  }

  .page-header-alumni.login-mode {
    padding-bottom: 150px; /* Memberi ruang untuk kartu overlap */
  }

  .login-card-wrapper {
    background: #ffffff;
    max-width: 420px;
    margin: -100px auto 60px; /* Overlap ke atas header */
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
    text-align: center;
  }

  .login-icon-circle {
    width: 70px; height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(11, 97, 19, 0.2);
  }

  .login-title {
    font-size: 1.6rem; font-weight: 800; color: #1f2937; margin-bottom: 8px;
  }

  .login-subtitle {
    font-size: 0.9rem; color: #64748b; margin-bottom: 30px;
  }

  .input-icon-wrap { position: relative; margin-bottom: 20px; }

  .auth-input {
    width: 100%; padding: 14px 16px; padding-left: 45px;
    border: 2px solid #e2e8f0; border-radius: 12px;
    font-size: 1rem; color: #1e293b; background: #f8fafc;
    transition: all 0.3s;
  }
  .auth-input:focus {
    border-color: var(--primary); background: #fff; outline: none;
  }

  .input-icon {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: #94a3b8; font-size: 1.2rem; transition: color 0.3s;
  }
  .auth-input:focus + .input-icon { color: var(--primary); }

  .btn-login {
    width: 100%; padding: 14px; font-size: 1.1rem; font-weight: 700;
    border-radius: 50px; background: var(--primary); color: #fff; border: none;
    cursor: pointer; transition: all 0.3s; box-shadow: 0 10px 20px rgba(11, 97, 19, 0.2);
  }
  .btn-login:hover {
    background: var(--primary-600); transform: translateY(-2px);
  }

  .auth-status { margin-top: 15px; font-weight: 600; font-size: 0.9rem; min-height: 20px; }
  .help-text { margin-top: 20px; font-size: 0.85rem; color: #94a3b8; }
  .help-text a { color: var(--primary); font-weight: 600; text-decoration: none; }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
  }
  .shake { animation: shake 0.3s; }

  /* Style untuk Ikon Mata (Toggle Password) */
  .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); /* Tengah vertikal */
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s;
    z-index: 2;
  }

  .toggle-password:hover {
    color: var(--primary);
  }

  /* Tambahkan padding kanan pada input agar teks tidak menabrak ikon mata */
  .auth-input {
    padding-right: 45px; 
  }


  /* =========================================
    6. KONTAK PREMIUM (SPLIT LAYOUT)
    ========================================= */

  .contact-section-premium {
    background: #fdfdfd;
    padding: 100px 0;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Kiri lebih kecil, Kanan (Form) lebih lebar */
    gap: 50px;
    align-items: start;
  }

  /* --- KOLOM KIRI (INFO) --- */
  .info-header h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 800;
  }

  .info-details {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }

  .icon-box {
    width: 50px; height: 50px;
    background: #e7f6ee;
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .info-item h4 { margin: 0 0 5px; font-size: 1.1rem; }
  .info-item a, .info-item p { color: #666; font-size: 0.95rem; margin: 0; }
  .info-item a:hover { color: var(--primary); text-decoration: underline; }

/* =========================================
   STYLE DUA PETA BERDAMPINGAN
   ========================================= */

/* Wadah Utama 2 Peta */
.double-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Membagi menjadi 2 kolom sama besar */
  gap: 15px; /* Jarak antar peta */
  margin-top: 20px;
  width: 100%;
}

/* Kotak Peta Individual */
.map-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

/* Label Kecil di atas Peta */
.map-label {
  background: var(--primary); /* Menggunakan warna hijau tema */
  color: #fff;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

/* Ukuran iframe */
.map-box iframe {
  width: 100%;
  height: 200px; /* Tinggi peta */
  border: 0;
  display: block;
}

/* Tombol Rute Kecil di Bawah */
.btn-map-small {
  display: block;
  background: #f8f9fa;
  color: var(--primary);
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-top: 1px solid #eee;
}

.btn-map-small:hover {
  background: var(--primary);
  color: #fff;
}

/* RESPONSIF: Agar di HP peta turun ke bawah (stack) */
@media (max-width: 600px) {
  .double-map-container {
    grid-template-columns: 1fr; /* Jadi 1 kolom di layar kecil */
  }
}

  /* --- KOLOM KANAN (FORMULIR) --- */
  .form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #eee;
  }

  .form-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
  }

  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem;
  }

  .input-icon-wrapper {
    position: relative;
  }

  .input-icon-wrapper i {
    position: absolute;
    left: 16px; top: 50%; transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  .input-icon-wrapper.top-align i { top: 20px; }

  .form-card input, .form-card textarea {
    width: 100%;
    padding: 14px 16px 14px 45px; /* Padding kiri untuk ikon */
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f9fafb;
  }

  .form-card input:focus, .form-card textarea:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 97, 19, 0.1);
  }
  .form-card input:focus + i, .form-card textarea:focus + i { color: var(--primary); }

  .btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 1.1rem; }

  /* Responsif */
  @media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .map-container iframe { height: 250px; }
  }

  /* =========================================
    STYLE BADGE "HUBUNGI KAMI" (GREEN VERSION)
    ========================================= */

  .badge-pill-light {
    display: inline-block;
    
    /* Warna Background: Hijau Transparan Lembut */
    background-color: rgba(11, 97, 19, 0.1); 
    
    /* Warna Teks: Hijau Qalbun */
    color: var(--primary); 
    
    /* Garis Tepi: Hijau */
    border: 1px solid var(--primary);
    
    /* Bentuk & Typography */
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    
    transition: all 0.3s ease;
  }

  /* Efek saat kursor diarahkan (Hover) */
  .badge-pill-light:hover {
    background-color: var(--primary); /* Jadi Hijau Solid */
    color: #ffffff;                   /* Teks Jadi Putih */
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 97, 19, 0.25);
  }

  /* Warna untuk tombol TikTok */
  .tt-btn {
    background-color: #000000; /* Warna Hitam khas TikTok */
    color: #fff;
  }

  .tt-btn:hover {
    background-color: #333333; /* Efek hover sedikit lebih terang */
    transform: translateY(-3px); /* Efek naik sedikit saat di-hover (opsional) */
  }

  /* =========================================
   FITUR ZOOM FOTO (MODAL)
   ========================================= */

/* Latar belakang gelap (Overlay) */
.zoom-modal {
  display: none; /* Tersembunyi default */
  position: fixed; 
  z-index: 99999999; /* Paling atas */
  padding-top: 50px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.9); /* Hitam Transparan */
  backdrop-filter: blur(5px); /* Efek blur di belakang */
}

/* Gambar yang di-Zoom */
.zoom-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 85vh; /* Agar tidak kepotong di layar pendek */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  animation: zoomEffect 0.3s; /* Animasi masuk */
}

/* Animasi Zoom */
@keyframes zoomEffect {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* Tombol Tutup (X) */
.zoom-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1000;
}

.zoom-close:hover,
.zoom-close:focus {
  color: var(--accent); /* Warna emas saat hover */
  text-decoration: none;
  cursor: pointer;
}

/* Caption di bawah foto */
#zoomCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  font-size: 1.1rem;
}

/* Ubah kursor jadi kaca pembesar saat hover foto alumni */
.alumni-photo-card img {
  cursor: zoom-in;
}

/* Responsif HP */
@media only screen and (max-width: 700px){
  .zoom-modal-content { width: 95%; }
  .zoom-close { top: 15px; right: 20px; font-size: 30px; }
}


/* =========================================
   PERBAIKAN LAYOUT LAYANAN (HARGA SEJAJAR)
   ========================================= */

/* 1. Update Kartu: Gunakan Flexbox */
#layanan .layanan-card {
  /* Tampilan Visual (Background, Border, dll) */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 30px 20px; 
  border-radius: 16px; 
  text-align: center;
  position: relative; 
  overflow: hidden; 
  border: 2px solid transparent;
  transition: transform .25s, box-shadow .25s;

  /* FIX PENTING: Flexbox agar tinggi sama & tombol di bawah */
  display: flex;
  flex-direction: column;
  height: 100%; 
  justify-content: flex-start;
  align-items: center;
}

/* Border Gradient Tetap */
#layanan .layanan-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: linear-gradient(135deg, #4f46e5, #3b82f6, #06b6d4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* Hover Effect */
#layanan .layanan-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 12px 32px rgba(0,0,0,0.3); 
}

/* Atur Deskripsi agar mengisi ruang kosong */
#layanan .layanan-card p {
  font-size: 16px; 
  color: #4b5563; 
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1; /* Ini memaksa teks mendorong tombol ke paling bawah */
}

/* 2. Update Tombol Harga (Mentok Bawah) */
.price-tag {
  margin-top: auto; /* FIX: Paksa tombol turun ke dasar kartu */
  
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(11, 97, 19, 0.2);
  transition: all 0.3s ease;
  width: fit-content;
}

/* Hover Tombol */
.layanan-card:hover .price-tag {
  transform: scale(1.05);
  background-color: var(--accent);
  color: #1f2937;
}

/* Highlight Khusus */
.price-tag.highlight {
  background-color: #084f0e;
  border: 1px solid rgba(255,255,255,0.2);
}

/* =========================================
   FIX TYPING EFFECT 1 BARIS DI HP
   ========================================= */
@media (max-width: 768px) {
  .typing-text {
    /* 1. Kunci agar teks DILARANG turun baris */
    white-space: nowrap;
    
    /* 2. Sesuaikan ukuran font agar muat dalam 1 baris */
    /* Coba sesuaikan angka ini jika masih kepotong (misal: 16px atau 14px) */
    font-size: 18px !important; 
    
    /* 3. Pastikan lebar mengikuti layar */
    max-width: 100%;
    display: inline-block;
    overflow: visible; /* Agar kursor ketikan tetap terlihat */
  }
  
  /* Opsional: Sesuaikan tinggi kursor ketik di HP */
  .typing-text.caret::after {
    height: 18px; /* Samakan dengan font-size di atas */
  }
}


/* =========================================
   UPDATE LIST HERO (2 KOLOM)
   ========================================= */
.hero-bullets {
  margin-top: 20px;
  display: grid;
  /* Membuat 2 kolom otomatis */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 12px 20px; /* Jarak antar item */
}

.hero-bullets li {
  display: flex;
  align-items: flex-start; /* Ikon tetap di atas jika teks panjang */
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-bullets i {
  color: #ffd54d; /* Warna Ikon Emas */
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0; /* Agar ikon tidak gepeng */
  margin-top: 2px;
}

/* Di HP tetap 1 kolom agar terbaca jelas */
@media (max-width: 600px) {
  .hero-bullets {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   UPDATE HERO SECTION (LIST KEBAWAH & LEBIH PANJANG)
   ========================================= */

/* 1. Atur List Poin agar Menurun (Vertikal) */
.hero-bullets {
  display: flex;
  flex-direction: column; /* Paksa susun ke bawah */
  gap: 15px;              /* Jarak antar poin agar tidak dempet */
  margin-top: 25px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.hero-bullets i {
  color: #ffd54d;      /* Ikon Emas */
  margin-right: 12px;
  font-size: 1.3rem;
  margin-top: 2px;     /* Rapikan posisi ikon */
  flex-shrink: 0;
}

/* 2. Perpanjang Background Hijau */
.hero {
  /* Tambahkan padding atas & bawah agar background hijau memanjang */
  padding-top: 60px !important;    
  padding-bottom: 100px !important; 
  
  /* Pastikan tinggi otomatis mengikuti banyaknya teks */
  height: auto !important; 
  min-height: 100vh; /* Opsi: Agar minimal setinggi layar (bisa dihapus jika terlalu panjang) */
}

/* Responsif di HP */
@media (max-width: 768px) {
  .hero {
    padding-bottom: 60px !important; /* Di HP jangan terlalu panjang */
    min-height: auto;
  }
}

/* =========================================
   PERBAIKAN TAMPILAN MENU MOBILE (DROPDOWN)
   ========================================= */

@media (max-width: 900px) {
  
  /* 1. Tampilkan Tombol Garis Tiga */
  .nav-toggle {
    display: block !important;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
  }

  /* 2. Sembunyikan Menu Desktop Secara Default */
  .nav-menu {
    position: fixed;         /* Mengambang */
    top: 70px;               /* Muncul tepat di bawah header */
    left: 0;
    width: 100%;             /* Lebar penuh */
    background: #ffffff;     /* WAJIB: Background Putih Solid */
    
    display: flex;
    flex-direction: column;  /* Susun menu ke bawah */
    padding: 20px;
    gap: 15px;
    
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Bayangan agar terlihat mengambang */
    border-top: 1px solid #eee;
    
    /* Animasi Sembunyi */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px); /* Geser ke atas sedikit */
    transition: all 0.3s ease;
    z-index: 9999;
  }

  /* 3. Tampilan Saat Menu Dibuka (Ada class .open) */
  .nav-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); /* Turun ke posisi normal */
  }

  /* 4. Style Link di dalam Mobile */
  .nav-link {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    text-align: center; /* Rata tengah */
    background: #f8f9fa; /* Abu tipis */
  }

  .nav-link:hover, .nav-link.active {
    background: var(--primary);
    color: #fff !important;
  }
  
}