/* ============================================
   PAS JELI - Main Stylesheet
   style.css
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #19692c;
  --primary-dark: #0f4a1e;
  --primary-light: #248a3d;
  --white: #ffffff;
  --light-gray: #f4f5f7;
  --text-dark: #0d2d14;
  --text-mid: #444;
  --shadow: 0 4px 24px rgba(25, 105, 44, 0.12);

  /* Retaining legacy names for compatibility with existing classes if any, 
     but mapped to the new green theme */
  --red: #19692c;
  --dark-blue: #0f4a1e;
  --mid-blue: #19692c;
  --gold: #ffffff;
  /* User specifically asked for #19692C and white */
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

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

/* ===== PRE HEADER ===== */
.pre-header {
  background: #19692c;
  color: #ffffff;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pre-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.v-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.pre-header-left a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.pre-header-left a i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.pre-header-left a:hover {
  color: #ffffff;
  opacity: 0.8;
}

.pre-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pre-header-right span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

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

.social-links a {
  color: #ffffff;
  height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ===== MAIN HEADER ===== */
.main-header {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}



.logo-text h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.logo-text h1 span {
  color: var(--primary);
}

.logo-text p {
  font-size: 10px;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav>li {
  position: relative;
}

.main-nav>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}

.main-nav>li>a:hover,
.main-nav>li.active>a {
  color: var(--white);
  background: var(--primary);
}

.main-nav>li>a i {
  font-size: 10px;
  opacity: 0.6;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(2, 20, 96, 0.15);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 999;
  border-top: 3px solid var(--primary);
}

.main-nav>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-dark);
  transition: all 0.2s;
  font-weight: 500;
}

.dropdown li a:hover {
  background: var(--primary);
  color: var(--white);
  padding-left: 24px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark-blue);
  cursor: pointer;
  padding: 6px;
}


/* ===== HERO SLIDER (CINEMATIC FLAT) ===== */
.hero-slider {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: var(--dark-blue); /* Fallback */
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide:nth-child(1) .slide-bg {
  background: url('../images/hero_slider_1_1776480290178.png') center/cover no-repeat;
}

.slide:nth-child(2) .slide-bg {
  background: url('../images/hero_slider_2_1776480479866.png') center/cover no-repeat;
}

.slide:nth-child(3) .slide-bg {
  background: url('../images/hero_slider_3_1776480504222.png') center/cover no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic dark gradient from the left */
  background: linear-gradient(to right, rgba(13, 45, 20, 0.9) 0%, rgba(13, 45, 20, 0.7) 40%, rgba(13, 45, 20, 0.1) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide-content .container {
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.slide-text {
  max-width: 600px;
  color: #fff;
}

.slide-tag {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-left: 3px solid #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease 0.3s;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateX(0);
}

.slide-title {
  font-family: 'Barlow', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease 0.5s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateX(0);
}

.slide-subtitle {
  font-size: 18px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.6;
  transform: translateX(-30px);
  transition: all 0.6s ease 0.7s;
}

.slide.active .slide-subtitle {
  opacity: 1;
  transform: translateX(0);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary-dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-30px);
}

.slide.active .slide-btn {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease 0.9s, background 0.3s, color 0.3s, transform 0.3s;
}

.slide-btn:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Slider nav dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
}

.dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #fff;
  width: 45px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: 40px;
}

.slider-arrow.next {
  right: 40px;
}


/* ===== QUICK LINKS BAR ===== */
.quick-links {
  background: #fff;
  box-shadow: 0 8px 30px rgba(2, 20, 96, 0.1);
  position: relative;
  z-index: 10;
}

.quick-links-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid #eee;
  transition: all 0.3s;
  cursor: pointer;
}

.quick-link-item:last-child {
  border-right: none;
}

.quick-link-item:hover {
  background: var(--dark-blue);
}

.quick-link-item:hover .ql-icon,
.quick-link-item:hover .ql-title,
.quick-link-item:hover .ql-sub {
  color: #fff !important;
}

.ql-icon {
  font-size: 26px;
  color: var(--red);
  flex-shrink: 0;
  transition: color 0.3s;
}

.ql-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-blue);
  transition: color 0.3s;
}

.ql-sub {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
  transition: color 0.3s;
}


/* ===== PAGE HEADER (For Inner Pages) ===== */
.page-header {
  padding: 80px 0 60px;
  background: var(--primary);
  background-image: radial-gradient(at 0% 0%, hsla(140, 62%, 25%, 1) 0, transparent 50%), 
                    radial-gradient(at 100% 0%, hsla(140, 62%, 40%, 1) 0, transparent 50%);
  position: relative;
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 600;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
}

.page-title {
  font-family: 'Barlow', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}


/* ===== CATEGORY BLOCK SECTION ===== */
.category-block {
  padding: 80px 0;
}

.category-block:nth-of-type(even) {
  background: #fff;
}

.category-block:nth-of-type(odd) {
  background: var(--light-gray);
}

.leader-section-title {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.leader-section-title h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-blue);
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.leader-section-title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(227, 4, 46, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

.divider {
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px 0 24px;
}

/* ===== ABOUT SECTION ===== */

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 4, 46, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-left: 12px;
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ===== PROGRAM SECTION ===== */
.program-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.program-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.program-section .section-title {
  color: #fff;
}

.program-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.program-section .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.program-section .divider {
  background: rgba(255, 255, 255, 0.4);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.program-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.pc-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.pc-title {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pc-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
  background: var(--light-gray);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.leader-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(25, 105, 44, 0.15);
}

.leader-img {
  height: 200px;
  background: linear-gradient(135deg, #19692c, #0d2d14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, rgba(25, 105, 44, 0.5));
}

.leader-avatar {
  font-size: 64px;
  opacity: 0.6;
}

.leader-info {
  padding: 18px 20px;
  border-top: 3px solid var(--primary);
}

.leader-name {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.leader-pos {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ===== INFOGRAFIK SECTION ===== */
.infografik-section {
  background: var(--light-gray);
}

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

/* ===== BULETIN SECTION ===== */
.buletin-section {
  background: var(--light-gray);
}

.buletin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.buletin-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.buletin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(25, 105, 44, 0.15);
}

.bc-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.buletin-card:hover .bc-img img {
  transform: scale(1.1);
}

.bc-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bc-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-title {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bc-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.bc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

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

/* ===== JOIN SECTION ===== */
.join-section {
  background: var(--primary);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.join-section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.join-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.join-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-border-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-border-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ===== FOOTER ===== */
footer .logo-img {
  width: 65px;
  margin-bottom: 5px;
}

footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text h1 {
  color: #fff;
}

.footer-brand .logo-text p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  font-size: 13.5px;
  line-height: 1.7;
  margin: 16px 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ===== FOOTER DPPM LOGO ===== */
.footer-dppm {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dppm-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  border-radius: 6px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dppm-logo:hover {
  opacity: 0.85;
  transform: scale(1.06);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(25, 105, 44, 0.4);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* ===== BULLETIN MODAL ===== */
.bulletin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.bulletin-modal.active {
  display: flex;
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 10;
  background: rgba(255,255,255,0.8);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.1);
}

.modal-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.modal-content {
  padding: 30px;
}

.modal-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.modal-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-green);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-date {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--dark-blue);
  line-height: 1.3;
}

.modal-body {
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .modal-img {
    height: 250px;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-title {
    font-size: 1.4rem;
  }
}

.scroll-top:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}