@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');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  /* Colors */
  --primary-hsl: 152, 69%, 19%; /* Forest Green */
  --primary: hsl(var(--primary-hsl));
  --primary-light: hsl(152, 65%, 26%);
  --primary-dark: hsl(152, 75%, 12%);
  --primary-rgb: 15, 81, 50;

  --accent-hsl: 43, 56%, 49%; /* Warm Gold */
  --accent: hsl(var(--accent-hsl));
  --accent-light: hsl(43, 60%, 55%);
  --accent-dark: hsl(43, 60%, 38%);
  --accent-rgb: 194, 155, 56;

  --bg-cream: hsl(38, 33%, 98%); /* Soft Warm Background */
  --bg-white: hsl(0, 0%, 100%);
  --bg-dark: hsl(152, 69%, 8%);
  
  --text-main: hsl(210, 11%, 15%);
  --text-muted: hsl(210, 8%, 45%);
  --text-light: hsl(0, 0%, 95%);
  
  --border-light: hsl(38, 20%, 90%);
  --border-focus: hsl(152, 69%, 35%);

  /* Layout / Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 12px rgba(15, 81, 50, 0.06);
  --shadow-lg: 0 10px 30px rgba(15, 81, 50, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Animations */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select {
  font-family: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  width: 100%;
  max-width: 720px; /* Centered narrow column for mobile-first landing experience (simulating the reference image flow) */
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-green { color: var(--primary); }

.bg-primary-dark { background-color: var(--primary-dark); color: var(--text-light); }
.bg-primary { background-color: var(--primary); color: var(--text-light); }
.bg-cream-sec { background-color: var(--bg-cream); }
.bg-white-sec { background-color: var(--bg-white); }

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #dc3545;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ==========================================
   LAYOUT COMPONENTS
   ========================================== */

/* Header */
header {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 2rem 0;
  border-bottom: 4px solid var(--accent);
  text-align: center;
}

.header-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.header-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  background-color: var(--bg-white);
  padding: 4px;
  box-shadow: var(--shadow-md);
}

.bismillah-text {
  font-size: 1.75rem;
  margin: 0.5rem 0 1.25rem 0;
  color: var(--accent-light);
  font-family: 'Amiri', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: 0;
}

.header-title-inst {
  font-family: 'Outfit', sans-serif;
  color: var(--bg-white);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.5rem auto 1.25rem auto;
  max-width: 550px;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.leaders-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  margin-top: 0.75rem;
}

.leader-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-title {
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.leader-name {
  font-size: 0.938rem;
  color: var(--bg-white);
  font-weight: 700;
  line-height: 1.35;
}

.hero-institution-name {
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.813rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Card layout wrapper */
.card-section {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card-section:hover {
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* Custom Image Showcase (Grid) */
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gallery-main {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.intro-text {
  font-size: 0.938rem;
  color: var(--text-main);
  background-color: var(--bg-cream);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  margin-top: 1.25rem;
}

/* Donation Widget & Progress Card */
.donation-card-wrapper {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.donation-card-wrapper:hover {
  box-shadow: var(--shadow-lg);
}

.donation-card-header {
  background-color: var(--primary-dark);
  padding: 1.75rem 1rem;
  text-align: center;
}

.kebutuhan-label {
  font-size: 0.813rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.kebutuhan-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.donation-card-body {
  padding: 1.5rem;
}

/* Progress bar styling */
.progress-container {
  background-color: #f2edd9;
  height: 14px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  background-color: var(--primary);
  height: 100%;
  width: 0%; /* Dynamic animation */
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Progress Labels */
.progress-labels-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.progress-label-left {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 700;
}

.progress-label-right {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 700;
}

/* Stat Cards Grid */
.stat-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-collected {
  border: 1px solid rgba(15, 81, 50, 0.15);
  background-color: rgba(15, 81, 50, 0.03);
}

.stat-shortage {
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
}

.stat-card-title {
  font-size: 0.688rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
}

.stat-card-value {
  font-size: 1.188rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.stat-collected .stat-card-value {
  color: var(--primary);
}

.stat-shortage .stat-card-value {
  color: var(--accent-dark);
}

/* Notice Bar inside body */
.notice-bar {
  background-color: #f2edd9;
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  text-align: center;
  font-size: 0.813rem;
  color: var(--text-main);
  line-height: 1.45;
  border: 1px solid rgba(194, 155, 56, 0.15);
}

.notice-bar strong {
  color: var(--primary-dark);
}

/* Interactive Packages Group */
.package-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  display: block;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.package-btn {
  background-color: var(--bg-cream);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.875rem 0.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.package-btn span {
  font-size: 0.688rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-btn:hover {
  border-color: var(--primary-light);
  background-color: rgba(15, 81, 50, 0.03);
}

.package-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
}

.package-btn.active span {
  color: rgba(255, 255, 255, 0.8);
}

/* Custom Input Group */
.custom-amount-wrapper {
  margin-bottom: 1.25rem;
  display: none; /* Toggled by active button JS */
  animation: slideDown 0.3s ease-out;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.input-field {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition);
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.1);
}

/* Callouts */
.callout-box {
  background-color: #fff9e6;
  border: 1px solid #ffeeba;
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.813rem;
  color: #856404;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.callout-box svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: #856404;
}

/* CTA Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-transfer {
  background-color: var(--primary);
  color: #fff;
}

.btn-transfer:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(15, 81, 50, 0.25);
}

.btn-qris {
  background-color: var(--accent);
  color: #fff;
}

.btn-qris:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 155, 56, 0.25);
}

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

.btn-bank-outline:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.report-container {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-light);
}

.report-date-text {
  font-size: 0.875rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.report-static-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  margin-top: 0.5rem;
  user-select: none;
}

.report-static-text {
  line-height: 1.2;
}

.report-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.report-btn-text {
  line-height: 1.2;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.813rem;
  text-align: left;
}

.report-table th, .report-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.report-table th {
  font-weight: 700;
  color: var(--primary-dark);
  background-color: var(--bg-cream);
}

.report-table td {
  color: var(--text-main);
}

.status-badge {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* Content Details Section */
.section-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.paragraph-content {
  font-size: 0.938rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.detail-card {
  background-color: var(--bg-cream);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--primary-light);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  background-color: var(--bg-white);
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.detail-title {
  font-size: 0.938rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.detail-desc {
  font-size: 0.813rem;
  color: var(--text-muted);
}

/* Table Style Summary */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.875rem;
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.info-table tr {
  border-bottom: 1px solid var(--border-light);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table td {
  padding: 1rem;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--primary-dark);
  width: 40%;
}

.info-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-main);
}

/* Facilities Grid Section */
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.facility-tag {
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.facility-tag:hover {
  transform: translateY(-3px);
}

.facility-tag svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.facility-tag:hover svg {
  transform: scale(1.1);
}

.facility-tag:nth-child(3n+1) {
  background-color: #FFD633;
  border-color: #E2BE1A;
  color: #111827;
}
.facility-tag:nth-child(3n+1) svg {
  fill: #111827;
}
.facility-tag:nth-child(3n+1):hover {
  box-shadow: 0 4px 12px rgba(255, 214, 51, 0.3);
}

.facility-tag:nth-child(3n+2) {
  background-color: #33B8E6;
  border-color: #26A3CE;
  color: #111827;
}
.facility-tag:nth-child(3n+2) svg {
  fill: #111827;
}
.facility-tag:nth-child(3n+2):hover {
  box-shadow: 0 4px 12px rgba(51, 184, 230, 0.3);
}

.facility-tag:nth-child(3n) {
  background-color: #FF4D80;
  border-color: #E03567;
  color: #111827;
}
.facility-tag:nth-child(3n) svg {
  fill: #111827;
}
.facility-tag:nth-child(3n):hover {
  box-shadow: 0 4px 12px rgba(255, 77, 128, 0.3);
}

/* Double CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  border-bottom: 5px solid var(--accent);
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.cta-banner .btn {
  margin-bottom: 0.5rem;
}

.cta-footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
}

/* Contact Info / Legal */
.legal-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.legal-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.legal-card-link:hover .legal-card {
  border-color: var(--accent);
  background-color: rgba(194, 155, 56, 0.03);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.legal-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.pdf-icon-box {
  width: 70px;
  height: 90px;
  background-color: #fff1f0;
  border: 1.5px solid #ffa39e;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  padding-bottom: 12px;
}

.pdf-icon-box svg {
  width: 38px;
  height: 38px;
  fill: #f5222d;
}

.pdf-badge {
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff;
  background-color: #f5222d;
  padding: 1px 4px;
  border-radius: 3px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.5px;
}

.legal-card-link:hover .pdf-icon-box {
  transform: scale(1.03);
  border-color: #ff4d4f;
}

.legal-info h4 {
  font-size: 0.875rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.legal-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Bank Account Detail Modal (Glassmorphism & Overlay) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 81, 50, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

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

.modal-content {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 1.5rem;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-title {
  font-size: 1.125rem;
  color: var(--primary-dark);
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.bank-item-box {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  position: relative;
  margin-bottom: 1rem;
}

.bank-item-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #005691; /* BRI or standard Indonesian bank style */
  font-style: italic;
  margin-bottom: 0.5rem;
}

.bank-item-logo.bni {
  color: #e55300;
}

.bank-item-no {
  font-family: monospace;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  background-color: var(--bg-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.btn-copy {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

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

.btn-copy svg {
  width: 20px;
  height: 20px;
}

.bank-item-holder {
  font-size: 0.813rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bank-item-holder strong {
  color: var(--text-main);
  display: block;
}

.tooltip {
  position: absolute;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.688rem;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

.tooltip.show {
  opacity: 1;
}

/* Image Fullscreen Modal */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.image-modal-img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 4px solid var(--accent-dark);
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--accent);
}

footer a:hover {
  color: var(--accent-light);
}

/* ==========================================
   NEW SECTIONS: TUITION, DORM, SCHEDULE
   ========================================== */
/* Tuition / Registration Info */
.tuition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .tuition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tuition-card:last-child {
    grid-column: span 2;
  }
}

.tuition-card {
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1.5px solid transparent;
}

.tuition-card:hover {
  transform: translateY(-4px);
}

.tuition-card:nth-child(1) {
  background-color: #FFD633;
  border-color: #E2BE1A;
  box-shadow: 0 4px 14px rgba(255, 214, 51, 0.2);
}
.tuition-card:nth-child(1):hover {
  box-shadow: 0 8px 24px rgba(255, 214, 51, 0.4);
}

.tuition-card:nth-child(2) {
  background-color: #33B8E6;
  border-color: #26A3CE;
  box-shadow: 0 4px 14px rgba(51, 184, 230, 0.2);
}
.tuition-card:nth-child(2):hover {
  box-shadow: 0 8px 24px rgba(51, 184, 230, 0.4);
}

.tuition-card:nth-child(3) {
  background-color: #FF4D80;
  border-color: #E03567;
  box-shadow: 0 4px 14px rgba(255, 77, 128, 0.2);
}
.tuition-card:nth-child(3):hover {
  box-shadow: 0 8px 24px rgba(255, 77, 128, 0.4);
}

.tuition-card:nth-child(n) .tuition-card-title,
.tuition-card:nth-child(n) .tuition-card-amount,
.tuition-card:nth-child(n) .tuition-card-amount span,
.tuition-card:nth-child(n) .tuition-card-desc {
  color: #111827 !important;
}

.tuition-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.tuition-card-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.tuition-card-desc {
  font-size: 0.813rem;
  font-weight: 500;
}

/* Dorm Details */
.dorm-detail-box {
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
  transition: var(--transition);
}

.dorm-detail-box:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.dorm-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dorm-detail-item:last-child {
  margin-bottom: 0;
}

.dorm-detail-icon {
  background-color: var(--bg-cream);
  padding: 0.625rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 42px;
  width: 42px;
  border: 1px solid var(--border-light);
}

.dorm-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.dorm-detail-text h4 {
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.dorm-detail-text p {
  font-size: 0.813rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* Daily Schedule Timeline */
.timeline-container {
  position: relative;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  background-color: var(--border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 2px solid var(--bg-white);
  transform: translateX(-5px);
  z-index: 1;
}

.timeline-item:hover .timeline-dot {
  background-color: var(--primary);
  transform: translateX(-5px) scale(1.2);
  transition: var(--transition);
}

.timeline-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.timeline-time {
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(15, 81, 50, 0.08);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.5;
}

.timeline-sublist {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.813rem;
  color: var(--text-main);
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.375rem;
}

@media (min-width: 480px) {
  .timeline-sublist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.timeline-subitem {
  position: relative;
  padding-left: 1rem;
}

.timeline-subitem::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ==========================================
   PRESTASI SANTRI SECTION (MOCKUP PATTERN)
   ========================================== */
.prestasi-title-sec {
  text-align: center;
  margin-bottom: 1.5rem;
}

.prestasi-intro {
  text-align: center;
  font-size: 0.938rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.prestasi-item {
  margin-bottom: 2.5rem;
}

.prestasi-item:last-child {
  margin-bottom: 0;
}

.prestasi-img-card {
  background-color: #fcfbf7;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
}

.prestasi-img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.prestasi-img-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.prestasi-desc {
  font-size: 0.938rem;
  color: var(--text-main);
  line-height: 1.6;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================
   VISI & MISI SECTION
   ========================================== */
.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .visi-misi-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.visi-card {
  background: linear-gradient(135deg, rgba(15, 81, 50, 0.03) 0%, rgba(194, 155, 56, 0.05) 100%);
  border: 1.5px solid var(--border-light);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.visi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.visi-quote-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 3rem;
  color: rgba(15, 81, 50, 0.05);
  font-family: serif;
  line-height: 1;
}

.visi-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visi-title svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.visi-text {
  font-size: 0.938rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
}

.misi-card {
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.misi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.misi-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.misi-title svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.misi-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.5;
}

.misi-number {
  background-color: rgba(194, 155, 56, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-cream);
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(5%) contrast(105%);
  transition: var(--transition);
}

.map-wrapper:hover iframe {
  filter: none;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 6px rgba(220, 53, 69, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Overrides (For tablets and larger screens) */
@media (min-width: 768px) {
  body {
    padding: 2rem 0;
  }
  .container {
    max-width: 680px; /* Kept compact to mirror standard high-impact short landing layouts */
  }
  .card-section {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .leaders-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  .bismillah-text {
    font-size: 1.5rem;
  }
  .leader-name {
    font-size: 0.875rem;
  }
  .modal-content {
    padding: 1.25rem 1rem;
  }
  .bank-item-box {
    padding: 1rem;
  }
  .qris-card-box {
    padding: 0.75rem !important;
  }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waBounceIn 0.8s ease-out, waPulse 2s infinite;
}

.floating-wa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.floating-wa:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-wa:hover img {
  transform: rotate(10deg);
  filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.45));
}

/* Animations */
@keyframes waBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(20px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) translateY(-5px);
  }
  70% {
    transform: scale(0.9) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustment for small mobiles */
@media (max-width: 480px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}
