/* Landing Page Styles */

:root {
  --primary-color: #2E7D32;
  --primary-light: #4CAF50;
  --primary-dark: #1B5E20;
  --secondary-color: #66BB6A;
  --accent-color: #FFC107;
  --accent-gold: #FFD54F;
  --dark-color: #1B5E20;
  --text-dark: #F57F17;  /* Amber Dark - Warm yellow/gold */
  --light-color: #F1F8E9;
  --white: #FFFFFF;
  --gray: #757575;
  --success: #4CAF50;
  --shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
  --shadow-hover: 0 10px 30px rgba(46, 125, 50, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2E7D32;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
  padding: 2px;
  background: white;
}

.nav-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.btn-login {
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-login:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/hero-pattern.png') center/cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background: #FFC700;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--light-color);
  border-radius: 10px;
  transition: all 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-item i {
  width: 50px;
  height: 50px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-item h3 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--gray);
  font-size: 16px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray);
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--gray);
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item i {
  width: 24px;
  height: 24px;
  color: var(--success);
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.feature-item p {
  color: var(--gray);
  font-size: 14px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.service-icon i {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card ul li {
  padding: 8px 0;
  color: var(--gray);
  border-bottom: 1px solid var(--light-color);
}

.service-card ul li:last-child {
  border-bottom: none;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: var(--light-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card.featured {
  border: 3px solid var(--accent-color);
}

.product-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.product-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-badge.popular {
  background: var(--accent-color);
  color: var(--dark-color);
}

.product-body {
  padding: 30px 20px;
}

.product-desc {
  color: var(--gray);
  margin-bottom: 20px;
  text-align: center;
}

.product-features {
  list-style: none;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--gray);
}

.product-features i {
  width: 20px;
  height: 20px;
  color: var(--success);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
  pointer-events: none; /* Prevent blocking clicks */
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1; /* Ensure content is above ::before */
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--accent-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  background: #FFC700;
}

.btn-cta i {
  width: 24px;
  height: 24px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.contact-item p {
  color: var(--gray);
}

.contact-form {
  background: var(--light-color);
  padding: 40px;
  border-radius: 10px;
}

.contact-form h3 {
  margin-bottom: 30px;
  color: var(--dark-color);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-block {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-col p {
  color: var(--light-color);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-col ul li i {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

/* Footer Contact Styling */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--light-color);
  line-height: 1.6;
}

.footer-contact .contact-item i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent-color);
}

.footer-contact .contact-item span {
  flex: 1;
  word-break: break-word;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-links i {
  width: 20px;
  height: 20px;
}

/* Social Media Colors - Semua Gold dengan Shade Berbeda */

/* Facebook - Dark Gold */
.social-facebook {
  background: linear-gradient(135deg, #F57F17, #FFC107) !important;
}

.social-facebook:hover {
  background: linear-gradient(135deg, #F57C00, #FFB300) !important;
  border-color: #FFD54F;
}

/* Instagram - Bright Gold */
.social-instagram {
  background: linear-gradient(135deg, #FFB300, #FFD54F) !important;
}

.social-instagram:hover {
  background: linear-gradient(135deg, #FFA000, #FFC107) !important;
  border-color: #FFE082;
}

/* Twitter - Light Gold */
.social-twitter {
  background: linear-gradient(135deg, #FFA726, #FFB74D) !important;
}

.social-twitter:hover {
  background: linear-gradient(135deg, #FB8C00, #FFA726) !important;
  border-color: #FFCC80;
}

/* LinkedIn - Amber Gold */
.social-linkedin {
  background: linear-gradient(135deg, #FFB300, #FFC107) !important;
}

.social-linkedin:hover {
  background: linear-gradient(135deg, #FFA000, #FFB300) !important;
  border-color: #FFD54F;
}

/* YouTube - Orange Gold */
.social-youtube {
  background: linear-gradient(135deg, #FF8F00, #FFA726) !important;
}

.social-youtube:hover {
  background: linear-gradient(135deg, #F57C00, #FF8F00) !important;
  border-color: #FFB74D;
}

.social-links a i {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--light-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 50px 0;
    transition: left 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== PUBLIKASI SECTION ===== */
.publikasi-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #2E7D32;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

.section-footer .btn-outline {
  background: white;
  color: #2E7D32;
  border: 2px solid #2E7D32;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
  transition: all 0.3s;
}

.section-footer .btn-outline:hover {
  background: #2E7D32;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

/* Artikel Grid */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.artikel-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.artikel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.artikel-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.artikel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.artikel-card:hover .artikel-image img {
  transform: scale(1.1);
}

.artikel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artikel-placeholder i {
  width: 64px;
  height: 64px;
  color: #2E7D32;
}

.artikel-kategori {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2E7D32;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.artikel-content {
  padding: 24px;
}

.artikel-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #666;
}

.artikel-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.artikel-meta i {
  width: 16px;
  height: 16px;
}

.artikel-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2E7D32;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.artikel-link:hover {
  gap: 12px;
}

.artikel-link i {
  width: 18px;
  height: 18px;
}

/* Galeri Grid */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.galeri-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.galeri-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.galeri-item:hover img {
  transform: scale(1.1);
}

.galeri-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 24px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.galeri-item:hover .galeri-overlay {
  transform: translateY(0);
}

.galeri-overlay h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.galeri-overlay p {
  margin: 0 0 12px 0;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.galeri-kategori {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-content h3 {
  color: white;
  margin-top: 20px;
  font-size: 24px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: #f44336;
  color: white;
  transform: rotate(90deg);
}

/* Loading State */
.loading {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .publikasi-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .artikel-grid,
  .galeri-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .artikel-image {
    height: 200px;
  }
  
  .lightbox-content h3 {
    font-size: 18px;
  }
}


/* ===== PENGURUS SECTION ===== */
.pengurus {
  padding: 80px 0;
  background: white;
}

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

.pengurus-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-align: center;
}

.pengurus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pengurus-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  position: relative;
}

.pengurus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.pengurus-card:hover .pengurus-photo img {
  transform: scale(1.1);
}

.pengurus-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pengurus-placeholder i {
  width: 80px;
  height: 80px;
  color: #2E7D32;
}

.pengurus-info {
  padding: 24px;
}

.pengurus-info h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.pengurus-jabatan {
  font-size: 16px;
  color: #2E7D32;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pengurus-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.pengurus-contact i {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .pengurus {
    padding: 60px 0;
  }
  
  .pengurus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pengurus-photo {
    height: 320px;
  }
}
