/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Design Tokens & Custom Variables */
:root {
  --primary: #0b3d22;
  --primary-light: #165b37;
  --primary-dark: #072615;
  --primary-rgb: 11, 61, 34;
  
  --accent: #b5842c;
  --accent-hover: #d29e3d;
  --accent-light: #f5edd6;
  --accent-rgb: 181, 132, 44;
  
  --bg: #faf8f4;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-dark: rgba(11, 61, 34, 0.03);
  
  --text: #1d2a23;
  --text-muted: #53695d;
  --text-light: #ffffff;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(11, 61, 34, 0.05), 0 2px 4px -1px rgba(11, 61, 34, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 61, 34, 0.08), 0 4px 6px -2px rgba(11, 61, 34, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(11, 61, 34, 0.1), 0 10px 10px -5px rgba(11, 61, 34, 0.04);
  --shadow-gold: 0 10px 20px -5px rgba(181, 132, 44, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  section {
    padding: 60px 0;
  }
}

.section-desc {
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button & Action Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 61, 34, 0.2);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(181, 132, 44, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: rgba(11, 61, 34, 0.05);
  transform: translateY(-2px);
}

/* Site Header (Branding only, no navbar) */
.site-header {
  width: 100%;
  padding: 20px 0;
  background-color: var(--bg);
  border-bottom: 1px solid rgba(11, 61, 34, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-brand img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
}

.header-brand h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.header-brand p {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 576px) {
  .header-actions {
    display: none;
  }
  .header-container {
    justify-content: center;
  }
  .header-brand {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 89px);
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 80% 20%, rgba(181, 132, 44, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(11, 61, 34, 0.08) 0%, transparent 50%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-img {
    width: 240px;
    height: 240px;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-backdrop {
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, rgba(11, 61, 34, 0.1) 0%, rgba(181, 132, 44, 0.1) 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphing 15s infinite alternate;
  z-index: 1;
}

.hero-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 6px solid var(--text-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.hero-img:hover {
  transform: scale(1.03) rotate(2deg);
}

@keyframes morphing {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 70% 30% 50% 50% / 50% 60% 40% 60%; }
}

/* Glass Card styling */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(11, 61, 34, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Program Pembebasan Lahan (Donasi) */
.lahan-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

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

.lahan-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lahan-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.urgency-badge {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.progress-container {
  margin-top: 16px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}

.progress-bar-bg {
  width: 100%;
  height: 16px;
  background-color: rgba(11, 61, 34, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 45.03%; /* Dari analysis */
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
  position: relative;
  animation: fillBar 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fillBar {
  from { width: 0; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.stat-item {
  background-color: var(--bg-card-dark);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(11, 61, 34, 0.04);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-val {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.stat-val.positive {
  color: var(--primary-light);
}

.stat-val.warning {
  color: var(--accent);
}

.lahan-details-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lahan-details-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lahan-details-list i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 2px;
}

/* PSB Section (Penerimaan Santri Baru) */
.psb-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

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

.cost-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.cost-card {
  background: var(--text-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 61, 34, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.cost-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.cost-card.highlight::before {
  background: var(--primary);
}

.cost-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cost-card.highlight .cost-icon {
  background-color: rgba(11, 61, 34, 0.1);
  color: var(--primary);
}

.cost-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cost-amount {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.cost-desc {
  font-size: 0.9rem;
}

.psb-form {
  background: var(--primary-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.psb-form h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.psb-form p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Facilities Section */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

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

.facility-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 61, 34, 0.05);
  box-shadow: var(--shadow-sm);
}

.facility-num {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.facility-text h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

/* Timeline & Schedule Section */
.schedule-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.schedule-timeline {
  position: relative;
  padding-left: 32px;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: rgba(11, 61, 34, 0.15);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(181, 132, 44, 0.2);
  transition: var(--transition);
}

.timeline-item:hover::before {
  background-color: var(--primary);
  box-shadow: 0 0 0 5px rgba(11, 61, 34, 0.2);
}

.timeline-time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.95rem;
}

/* Map & Footer */
.footer-map-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background-color: var(--primary-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-map-container {
    grid-template-columns: 1fr;
  }
}

.footer-info-pane {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 576px) {
  .footer-info-pane {
    padding: 30px;
  }
}

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

.footer-logo img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  object-fit: cover;
}

.footer-logo h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-link i {
  color: var(--accent);
  font-size: 1.25rem;
}

.contact-link:hover {
  color: var(--accent);
}

.map-pane {
  min-height: 350px;
  width: 100%;
  background-color: #e5e3df;
  z-index: 10;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(11, 61, 34, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 38, 21, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg);
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  border: 1px solid rgba(11, 61, 34, 0.08);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  background: var(--primary);
  color: var(--text-light);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--text-light);
  transform: scale(1.1);
}

.modal-body {
  padding: 30px;
}

/* Donation Modal Elements */
.bank-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bank-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #00875a;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bank-logo-text {
  font-size: 0.8rem;
  line-height: 1.1;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
}

.account-num-container {
  background-color: var(--bg-card-dark);
  border: 1px dashed var(--primary-light);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.account-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.account-holder {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.btn-copy {
  background: var(--accent);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--accent-hover);
}

.qris-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qris-img-wrapper {
  background: var(--text-light);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 61, 34, 0.05);
  margin-bottom: 16px;
}

.qris-img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: -300px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 3000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.active {
  right: 24px;
}

/* Floating Bottom Sticky Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(11, 61, 34, 0.08);
  box-shadow: 0 -10px 30px rgba(11, 61, 34, 0.05);
  padding: 12px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: var(--transition-slow);
  display: none;
}

.sticky-bar.active {
  transform: translateY(0);
  display: block;
}

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-info img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
}

.sticky-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
}

.sticky-text p {
  font-size: 0.75rem;
}

.sticky-btns {
  display: flex;
  gap: 12px;
}

.sticky-btns .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

@media (max-width: 576px) {
  .sticky-info {
    display: none;
  }
  .sticky-btns {
    width: 100%;
    justify-content: space-between;
  }
  .sticky-btns .btn {
    flex: 1;
    text-align: center;
  }
}

/* Galeri Prestasi Section */
.prestasi-section {
  background-color: var(--bg);
}

.prestasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.prestasi-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background-color: var(--bg-card);
  border: 1px solid rgba(11, 61, 34, 0.05);
}

@media (min-width: 992px) {
  .prestasi-card.card-wide {
    grid-column: span 2;
    aspect-ratio: 8 / 3;
  }
}

.prestasi-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.prestasi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.prestasi-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(11, 61, 34, 0.95) 0%, rgba(11, 61, 34, 0.5) 60%, transparent 100%);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.prestasi-card:hover .prestasi-img {
  transform: scale(1.08);
}

.prestasi-card:hover .prestasi-overlay {
  opacity: 1;
  transform: translateY(0);
}

.prestasi-badge {
  background: var(--accent);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.prestasi-overlay h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.prestasi-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .prestasi-grid {
    gap: 20px;
  }
  .prestasi-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(11, 61, 34, 0.95) 0%, rgba(11, 61, 34, 0.4) 70%, transparent 100%);
    padding: 20px;
  }
  .prestasi-overlay h4 {
    font-size: 1.15rem;
  }
}

/* Dokumen & Tata Tertib Section */
.docs-section {
  background-color: rgba(11, 61, 34, 0.02);
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.docs-column {
  display: flex;
  flex-direction: column;
}

.column-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
}

.column-title i {
  color: var(--accent);
}

.doc-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(11, 61, 34, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.doc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 61, 34, 0.15);
}

.doc-icon {
  font-size: 2.5rem;
  color: #dc3545; /* PDF Red icon color */
  display: flex;
  align-items: flex-start;
  margin-top: 4px;
}

.doc-card:nth-child(2) .doc-icon {
  color: var(--primary); /* Green icon for calendar/schedule */
}

.doc-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.doc-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.doc-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.doc-actions {
  display: flex;
  gap: 12px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Accordion Tata Tertib */
.tatib-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tatib-item {
  background-color: var(--bg-card);
  border: 1px solid rgba(11, 61, 34, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tatib-item:hover {
  border-color: rgba(11, 61, 34, 0.15);
}

.tatib-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  text-align: left;
  transition: var(--transition);
}

.tatib-header span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tatib-header i.arrow {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.tatib-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}

.tatib-item.active .tatib-content {
  max-height: 800px; /* High enough to fit long text */
  padding-bottom: 24px;
  border-top: 1px solid rgba(11, 61, 34, 0.05);
  padding-top: 16px;
}

.tatib-item.active .tatib-header i.arrow {
  transform: rotate(180deg);
}

.tatib-content ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tatib-content ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.tatib-content ul li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.tatib-content ul li ul {
  margin-top: 8px;
  gap: 6px;
}

.tatib-content ul li ul li {
  font-size: 0.85rem;
}

.tatib-content ul li ul li::before {
  content: '-';
  font-size: 1rem;
  top: -1px;
}

/* WhatsApp Preview Box */
.wa-preview-box {
  background-color: rgba(37, 211, 102, 0.05); /* Light green WhatsApp theme */
  border: 1px dashed rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.wa-preview-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: #128c7e; /* Dark WhatsApp Green */
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wa-preview-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.wa-preview-body strong {
  color: var(--primary-dark);
}

.placeholder-span {
  color: #b5842c; /* Gold Accent for placeholder text */
  font-style: italic;
  font-weight: 600;
}



