/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #1a5f3f;
  --secondary-color: #2d8f5f;
  --accent-color: #4ade80;
  --gold-color: #fbbf24;
  --dark-color: #0f172a;
  --light-color: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --gradient-primary: linear-gradient(135deg, #1a5f3f 0%, #2d8f5f 100%);
  --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== IMAGE OPTIMIZATION ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: bicubic;
}

/* Lazy loading optimization */
img[loading="lazy"] {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[loading="lazy"]:not([src]) {
  opacity: 0;
}

/* WebP support fallback */
.webp img {
  image-rendering: crisp-edges;
}

/* Reduce layout shift for images */
.stage-image,
.documentation-image,
.gallery-image {
  position: relative;
  overflow: hidden;
}

.stage-image::before,
.documentation-image::before,
.gallery-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.stage-image img,
.documentation-image img,
.gallery-image img {
  position: relative;
  z-index: 2;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ACCESSIBILITY STYLES ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Focus indicators for better accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn:focus,
.nav-link:focus,
.navbar-brand:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .card {
    border: 2px solid var(--dark-color);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white !important;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  color: var(--accent-color);
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white !important;
  background: rgba(74, 222, 128, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Kompensasi untuk navbar fixed-top */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero.jpg") center/cover;

  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--gradient-accent);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== SECTIONS ===== */
.about-section {
  background: var(--light-color);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}
.cb {
  color: #aeaeae;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 222, 128, 0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.stat-card {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PROJECT STAGES SECTION ===== */
.project-stages {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stage-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(46, 133, 87, 0.1);
}

.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(46, 133, 87, 0.15);
}

.stage-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 10px;
}

.stage-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stage-card:hover .stage-image img {
  transform: scale(1.05);
}

.stage-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.stage-content p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.schedule-card {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-card .stage-image img {
  height: auto;
  max-height: 400px;
}

@media (max-width: 768px) {
  .stage-card {
    margin-bottom: 2rem;
  }

  .stage-image img {
    height: 100%;
  }

  .schedule-card .stage-image img {
    max-height: 250px;
  }
}

/* ===== COMPLETED WORK SECTION ===== */
.completed-work-section {
  background: white;
  position: relative;
}

.work-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(74, 222, 128, 0.1);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.work-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 95, 63, 0.8) 0%, rgba(74, 222, 128, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-overlay i {
  color: white;
  font-size: 2.5rem;
}

.work-content {
  padding: 1.5rem;
}

.work-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.work-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.work-status {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  width: fit-content;
}

/* ===== DOCUMENTATION SECTION ===== */
.documentation-section {
  background: var(--light-color);
  position: relative;
}

.documentation-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.documentation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.documentation-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.documentation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.documentation-card:hover .documentation-image img {
  transform: scale(1.1);
}

.documentation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 95, 63, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.documentation-card:hover .documentation-overlay {
  opacity: 1;
}

.documentation-overlay i {
  color: white;
  font-size: 2rem;
}

.documentation-content {
  padding: 1.5rem;
}

.documentation-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.documentation-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.documentation-date {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-info p {
  margin-bottom: 0.8rem;
  align-items: center;
}

.contact-info i {
  color: var(--accent-color);
  width: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .feature-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Mobile Animation Overrides */
@media (max-width: 768px) {
  /* Override fade-left to fade-up on mobile */
  [data-aos="fade-left"] {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
  }

  [data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  /* Override fade-right to fade-up on mobile */
  [data-aos="fade-right"] {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
  }

  [data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  /* Custom mobile animations */
  [data-aos="mobile-slide-up"] {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
  }

  [data-aos="mobile-slide-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  [data-aos="mobile-zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
  }

  [data-aos="mobile-zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
  }

  /* Reduce animation duration on mobile for better performance */
  [data-aos] {
    transition-duration: 0.4s !important;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== VISION SECTION ===== */
.vision-section {
  background: var(--light-color);
  position: relative;
}

.vision-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--accent-color);
  position: relative;
}

.vision-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  font-family: serif;
}

.vision-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: var(--shadow-xl);
}

/* ===== BACKGROUND SECTION ===== */
.background-section {
  background: white;
}

.content-card {
  background: var(--light-color);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74, 222, 128, 0.1);
}

/* ===== NAME MEANING SECTION ===== */
.name-meaning-section {
  background: var(--light-color);
}

.meaning-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(74, 222, 128, 0.1);
}

.meaning-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.meaning-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.meaning-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* ===== LOCATION SECTION ===== */
.location-section {
  background: white;
}

.location-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(74, 222, 128, 0.05);
  transform: translateX(10px);
}

.location-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  min-width: 30px;
}

.location-item h5 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.location-item p {
  color: var(--text-light);
  margin: 0;
}

.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.map-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: var(--light-color);
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(74, 222, 128, 0.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.value-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PROGRESS OVERVIEW SECTION ===== */
.progress-overview {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.progress-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.progress-header h4 {
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
}

.progress-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.progress-custom {
  height: 20px;
  border-radius: 10px;
  background: #e9ecef;
  overflow: hidden;
  position: relative;
}

.progress-custom .progress-bar {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  animation: progressAnimation 2s ease-in-out;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}

.progress-info {
  margin-top: 0.5rem;
  text-align: right;
}

@keyframes progressAnimation {
  from {
    width: 0% !important;
  }
}

/* ===== CAPACITY CARDS ===== */
.capacity-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.capacity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.capacity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.capacity-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0 0.5rem;
}

.capacity-card h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.capacity-card p {
  color: var(--text-light);
  margin: 0;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  background: white;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 55%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
  margin-right: 0;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 60px;
  height: 60px;
  background: white;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.5rem;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item.completed .timeline-marker {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.timeline-item.in-progress .timeline-marker {
  background: #ffc107;
  color: white;
  border-color: #ffc107;
}

.timeline-item.pending .timeline-marker {
  background: #e9ecef;
  color: #6c757d;
  border-color: #dee2e6;
}

.timeline-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: white;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.timeline-header h4 {
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
  flex: 1;
}

.timeline-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-status.completed {
  background: #d4edda;
  color: #155724;
}

.timeline-status.in-progress {
  background: #fff3cd;
  color: #856404;
}

.timeline-status.pending {
  background: #f8f9fa;
  color: #6c757d;
}

.timeline-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.timeline-checklist li i {
  margin-right: 0.8rem;
  width: 16px;
}

.timeline-checklist li.completed i {
  color: #28a745;
}

.timeline-checklist li.in-progress i {
  color: #ffc107;
}

.timeline-checklist li.pending i {
  color: #6c757d;
}

.timeline-date {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
  color: var(--text-light);
  font-size: 0.9rem;
}

.timeline-date i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* ===== CURRENT STATUS SECTION ===== */
.current-status {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.status-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.current-activities {
  margin-top: 2rem;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
}

.activity-item i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
  width: 30px;
  text-align: center;
}

.activity-item h5 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.activity-item p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PROGRESS CIRCLE ===== */
.progress-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #e9ecef;
  position: relative;
  overflow: hidden;
}

.circle .mask {
  width: 150px;
  height: 150px;
  position: absolute;
  border-radius: 50%;
  clip: rect(0px, 150px, 150px, 75px);
}

.circle .mask .fill {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  position: absolute;
  clip: rect(0px, 75px, 150px, 0px);
  transform: rotate(45deg);
}

.circle .mask.full {
  clip: rect(0px, 75px, 150px, 0px);
}

.inside-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inside-circle .percentage {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.inside-circle .label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* ===== MONITORING SECTION ===== */
.monitoring-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.monitoring-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.monitoring-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.monitoring-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.monitoring-card h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.monitoring-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE TIMELINE ===== */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 30px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    right: auto;
    border-right-color: white;
    border-left-color: transparent;
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .progress-circle {
    width: 120px;
    height: 120px;
  }

  .circle {
    width: 120px;
    height: 120px;
  }

  .circle .mask {
    width: 120px;
    height: 120px;
    clip: rect(0px, 120px, 120px, 60px);
  }

  .circle .mask .fill {
    width: 120px;
    height: 120px;
    clip: rect(0px, 60px, 120px, 0px);
  }

  .circle .mask.full {
    clip: rect(0px, 60px, 120px, 0px);
  }

  .inside-circle {
    width: 90px;
    height: 90px;
    top: 15px;
    left: 15px;
  }

  .inside-circle .percentage {
    font-size: 1.5rem;
  }
}

/* ===== GALLERY FILTER SECTION ===== */
.gallery-filter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: var(--text-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.filter-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  opacity: 1;
  transition: all 0.5s ease;
}

.gallery-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(46, 139, 87, 0.9), rgba(70, 130, 180, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: white;
  padding: 1rem;
}

.gallery-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.gallery-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-content a:hover {
  background: white;
  color: var(--primary-color);
  transform: scale(1.1);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 2rem;
}

.video-info h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.video-info p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.video-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.video-meta span {
  display: flex;
  align-items: center;
}

.video-meta i {
  color: var(--primary-color);
}

/* ===== DOCUMENTATION STATS ===== */
.documentation-stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== LOAD MORE BUTTON ===== */
.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== MODAL CUSTOMIZATION ===== */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  filter: invert(1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .filter-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .video-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contents {
    min-height: 341px !important;
  }
  .ct {
    height: 600px;
  }
  .imgg {
    height: 196% !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .tii {
    margin-top: 2rem;
  }
  .gallery-image {
    height: 200px;
  }

  .video-thumbnail {
    height: 200px;
  }
}

/* ===== UTILITY CLASSES ===== */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.text-primary-custom {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.border-accent {
  border-color: var(--accent-color) !important;
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

.rounded-custom {
  border-radius: 16px;
}

/* ===== DONATION PAGE STYLES ===== */

/* Donation CTA Section */
.donation-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.donation-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.verse-quote {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

.verse-quote blockquote {
  margin: 0;
  font-style: italic;
}

.verse-quote .blockquote-footer {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

/* Donation Methods */
.donation-methods {
  background: var(--light-color);
}

.donation-method-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 222, 128, 0.1);
  height: 100%;
}

.donation-method-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.donation-method-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.donation-method-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Featured Method (QRIS) */
.featured-method {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(26, 95, 63, 0.1));
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
  position: relative;
}

.featured-method::before {
  content: "⭐ REKOMENDASI";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.featured-method:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(74, 222, 128, 0.3);
}

.featured-method .method-icon {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
}

.featured-method h4 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
}

.featured-method p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Donation Form */
.donation-form {
  background: var(--light-color);
}

.form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74, 222, 128, 0.1);
}

.form-header h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.donation-form-content .form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.donation-form-content .form-control,
.donation-form-content .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.donation-form-content .form-control:focus,
.donation-form-content .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 95, 63, 0.25);
}

.donation-form-content .input-group-text {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 10px 0 0 10px;
}

/* Donation Progress */
.donation-progress {
  background: white;
}

.progress-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.progress-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>')
    repeat;
}

.progress-header {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.progress-header h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.progress-amount {
  font-size: 1.5rem;
  font-weight: 700;
}

.current-amount {
  color: #ffd700;
}

.target-amount {
  opacity: 0.8;
  font-size: 1.2rem;
}

.progress-bar-container {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.progress-large {
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-large .progress-bar {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.progress-details {
  position: relative;
  z-index: 2;
}

.detail-item {
  padding: 1rem;
}

.detail-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.detail-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Donation Stats */
.donation-stats {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Recent Donations */
.recent-donations {
  background: var(--light-color);
}

.donations-list {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.donation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.donation-item:last-child {
  border-bottom: none;
}

.donor-info {
  display: flex;
  align-items: center;
}

.donor-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.donor-details h5 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.donor-details p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.donation-amount {
  text-align: right;
}

.donation-amount .amount {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.donation-amount .method {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Bank and E-wallet Account Styles */
.bank-account,
.ewallet-account {
  background: var(--light-color);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.bank-account:hover,
.ewallet-account:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.bank-logo,
.ewallet-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.account-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: "Courier New", monospace;
}

.account-name {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-list {
  padding: 1rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact-info h6 {
  margin: 0 0 0.2rem 0;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive Design for Donation Page */
@media (max-width: 768px) {
  .donation-method-card {
    margin-bottom: 2rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .progress-card {
    padding: 1.5rem;
  }

  .progress-amount {
    font-size: 1.2rem;
  }

  .detail-number {
    font-size: 1.2rem;
  }

  .donation-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .donation-amount {
    text-align: left;
  }

  .verse-quote {
    padding: 1.5rem;
  }

  .bank-account,
  .ewallet-account {
    margin-bottom: 1rem;
  }
}

/* CONTACT PAGE STYLES */

/* Contact Information */
.contact-info {
  background: var(--light-bg);
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.contact-card .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.contact-card h4 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.phone-list {
  text-align: left;
}

.phone-item {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.phone-item strong {
  display: block;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.phone-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.phone-item a:hover {
  color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
  background: var(--light-bg);
}

.contact-form .form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-form .form-header h3 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-content .form-label {
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.contact-form-content .form-control,
.contact-form-content .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form-content .form-control:focus,
.contact-form-content .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

/* Management Team */
.management-team {
  background: white;
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(26, 95, 63, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
  transition: left 0.6s ease;
}

.team-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(26, 95, 63, 0.15), 0 15px 35px rgba(74, 222, 128, 0.1);
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.team-card:hover::before {
  left: 100%;
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(26, 95, 63, 0.2);
}

.team-card:hover .team-avatar {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  box-shadow: 0 15px 35px rgba(74, 222, 128, 0.3);
}

.team-avatar::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color), var(--gold-color), var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-avatar::after {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.team-info h5 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.team-card:hover .team-info h5 {
  color: var(--primary-color);
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(26, 95, 63, 0.1);
}

.team-info .position {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-style: italic;
  transition: all 0.3s ease;
}

.team-card:hover .team-info .position {
  color: var(--secondary-color);
  transform: translateY(-1px);
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--light-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.85rem;
  border: 1px solid rgba(26, 95, 63, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(26, 95, 63, 0.3);
  border-color: var(--accent-color);
}

.contact-btn:hover::before {
  left: 100%;
}

.team-card:hover .contact-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(-3px) scale(1.05);
  }
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}

.contact-btn i {
  font-size: 1rem;
}

/* Location Map */
.location-map {
  background: var(--light-bg);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: white;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mapgrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23mapgrid)"/></svg>')
    repeat;
}

.map-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.map-content h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.map-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quick Contact */
.quick-contact {
  background: white;
}

.quick-contact-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.quick-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quickdots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23quickdots)"/></svg>')
    repeat;
}

.quick-contact-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.quick-contact-card p {
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.quick-contact-card .btn {
  position: relative;
  z-index: 2;
}

/* Office Hours */
.office-hours {
  background: var(--light-bg);
}

.hours-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  height: 100%;
}

.hours-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-bg);
}

.hours-header i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.hours-header h4 {
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.hours-item .day {
  font-weight: 500;
  color: var(--dark-color);
}

.hours-item .time {
  color: var(--text-muted);
  font-weight: 600;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 2rem;
  }

  .team-card {
    margin-bottom: 2rem;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .map-placeholder {
    height: 300px;
  }

  .map-content i {
    font-size: 2rem;
  }

  .map-actions {
    flex-direction: column;
    align-items: center;
  }

  .quick-contact-card {
    padding: 2rem;
    text-align: center;
  }

  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .phone-list {
    text-align: center;
  }
}

/* ===== LOADING ANIMATION ===== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(74, 222, 128, 0.3);
  border-top: 3px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
