/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.event-header {
  text-align: center;
  padding: 20px 15px;
  background-image: url('../img/event-berita.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #f8f9fa;
  width: 100%;
  height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  /* Hapus properti ini: */
  /* position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; */
}

.event-header h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0 0 10px 0; /* Tambahkan margin bottom */
  text-transform: uppercase;
  color: #1a5f5f;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Container untuk subtitle */
.event-subtitle {
  font-size: 18px;
  color: #1a5f5f;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Halaman event-berita
--------------------------------------------------------------*/
/* Filter Section */
.berita-filters {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.berita-filter-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.berita-filter-item {
  position: relative;
}

.berita-filter-select {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 15px 50px 15px 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-width: 200px;
  appearance: none;
  border-radius: 4px;
}

.berita-filter-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,165,0,0.3);
}

.berita-filter-item::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: white;
  font-size: 12px;
}

.berita-filter-input {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 500;
  min-width: 200px;
  border-radius: 4px;
}

.berita-filter-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,165,0,0.3);
}

.berita-filter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.berita-btn-apply {
  background: #1a5f5f;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.berita-btn-apply:hover {
  background: #145252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26,95,95,0.3);
}

/* Berita Section */
.berita-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* PERBAIKAN: HAPUS cursor: pointer DARI BERITA CARD */
.berita-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  /* HAPUS: cursor: pointer; */
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: default !important; /* TAMBAHKAN INI */
}

/* PERBAIKAN: HAPUS hover effect dari card */
.berita-card:hover {
  /* HAPUS: transform: translateY(-5px); */
  /* HAPUS: box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
}

/* Perbaikan untuk gambar auto height - MENYESUAIKAN UKURAN ASLI */
.berita-card-image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  /* HILANGKAN fixed height, biarkan gambar menentukan tinggi */
  height: auto;
  cursor: default !important;
}

.berita-card-image {
  width: 100%;
  height: auto; /* Biarkan tinggi menyesuaikan proporsi gambar */
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
  cursor: default !important;
}

/* Untuk menjaga rasio aspek gambar */
.berita-card-image.aspect-ratio {
  aspect-ratio: 16/9; /* Default rasio jika diperlukan */
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* PERBAIKAN: HAPUS hover effect dari gambar */
.berita-card:hover .berita-card-image {
  /* HAPUS: transform: scale(1.05); */
}

.berita-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default !important;
}

/* TANGGAL DENGAN EMOTIKON */
/* TANGGAL DENGAN ICON KALENDER SIMPLE */
.berita-date {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default !important;
}

.berita-date::before {
  content: '🗓️';
  font-size: 16px;
  line-height: 1;
  filter: grayscale(100%);
  opacity: 0.7;
}

.berita-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 15px 0;
  line-height: 1.4;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: default !important;
}

.berita-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: default !important;
}

/* PERBAIKAN: HANYA LINK YANG MEMILIKI CURSOR POINTER */
.berita-link {
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer !important; /* INI SATU-SATUNYA YANG BISA DIKLIK */
}

.berita-link:hover {
  color: #1a5f5f;
  gap: 12px;
}

.berita-link::after {
  content: '→';
  font-size: 16px;
}

/* Pagination */
.berita-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 40px;
}

.berita-pagination-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #ddd;
  color: #666;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.berita-pagination-btn:hover {
  background: #f0f0f0;
  border-color: #999;
}

.berita-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.berita-pagination-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #ddd;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.berita-pagination-number:hover {
  background: #f0f0f0;
  border-color: #999;
}

.berita-pagination-number.active {
  background: #2c2c2c;
  color: white;
  border-color: #2c2c2c;
}

.berita-pagination-dots {
  color: #666;
  font-size: 20px;
  font-weight: bold;
  padding: 0 5px;
}

/* Date Input Styling */
.berita-filter-input[type="date"] {
  color-scheme: dark;
}

.berita-filter-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Empty State Styles */
.berita-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.berita-empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.berita-empty-icon i {
    display: block;
}

.berita-empty-state h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.berita-empty-state p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.berita-empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.berita-empty-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.berita-empty-actions .btn-primary {
    background-color: #1a5f5f;
    color: white;
    border: 2px solid #1a5f5f;
}

.berita-empty-actions .btn-primary:hover {
    background-color: #145252;
    border-color: #145252;
    transform: translateY(-2px);
}

.berita-empty-actions .btn-secondary {
    background-color: transparent;
    color: #1a5f5f;
    border: 2px solid #1a5f5f;
}

.berita-empty-actions .btn-secondary:hover {
    background-color: #1a5f5f;
    color: white;
    transform: translateY(-2px);
}

/* Loading State */
.berita-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.berita-loading:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1a5f5f;
    border-radius: 50%;
    animation: berita-spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes berita-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .berita-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .berita-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .berita-filter-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .berita-filter-select,
  .berita-filter-input {
    width: 100%;
    min-width: auto;
  }

  .berita-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 25px;
  }
  
  .berita-title {
    font-size: 16px;
    min-height: auto;
  }
  
  .berita-pagination-btn,
  .berita-pagination-number {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  
  .berita-empty-state {
    padding: 3rem 1rem;
  }
  
  .berita-empty-icon {
    font-size: 3rem;
  }
  
  .berita-empty-state h3 {
    font-size: 1.3rem;
  }
  
  .berita-empty-state p {
    font-size: 1rem;
  }
  
  .berita-empty-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .berita-empty-actions .btn {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .berita-card-content {
    padding: 20px;
  }
  
  .berita-title {
    font-size: 16px;
  }
  
  .berita-filter-select,
  .berita-filter-input {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .berita-btn-apply {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Halaman Event
--------------------------------------------------------------*/
/* Event Filter Section */
.ep-event-filters {
  background: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}

.ep-filter-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ep-filter-item {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.ep-filter-select {
  background: #f8f9fa;
  color: #2c2c2c;
  border: 2px solid #e0e0e0;
  padding: 12px 40px 12px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  appearance: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.ep-filter-select:focus {
  outline: none;
  border-color: #1a5f5f;
  box-shadow: 0 0 0 3px rgba(26, 95, 95, 0.1);
}

.ep-filter-select:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.ep-filter-item::after {
  content: '▼';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
  font-size: 10px;
}

.ep-filter-input {
  background: #f8f9fa;
  color: #2c2c2c;
  border: 2px solid #e0e0e0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.ep-filter-input:focus {
  outline: none;
  border-color: #1a5f5f;
  box-shadow: 0 0 0 3px rgba(26, 95, 95, 0.1);
}

.ep-filter-input:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.ep-filter-input::placeholder {
  color: rgba(102, 102, 102, 0.7);
}

.ep-btn-apply {
  background: #1a5f5f;
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  font-family: inherit;
  min-width: 120px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 2px;
}

.ep-btn-apply:hover {
  background: #145252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 95, 95, 0.2);
}

.ep-btn-apply:active {
  transform: translateY(0);
}

/* Event Section */
.ep-event-section {
  padding: 40px 0 60px 0;
  background: #ffffff;
  min-height: 60vh;
}

.ep-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Event Card */
.ep-event-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.ep-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: #e0e0e0;
}

/* Card Image dengan Auto Height */
.ep-card-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  min-height: 200px;
  max-height: 350px;
}

.ep-card-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.ep-event-card:hover .ep-card-image {
  transform: scale(1.05);
}

.ep-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

/* Event Meta Information */
.ep-card-date {
  color: #1a5f5f;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.ep-card-location {
  color: #666;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-left: 10px;
}

.ep-card-location::before {
  content: "📍 ";
  margin-right: 3px;
  font-size: 11px;
}

.ep-card-category {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 15px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid #e0e0e0;
}

.ep-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 8px 0 4px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}

.ep-card-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.ep-card-link {
  color: #1a5f5f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ep-card-link:hover {
  color: #145252;
  gap: 12px;
}

.ep-card-link::after {
  content: '→';
  font-size: 18px;
  font-weight: 400;
}

/* Pagination */
.ep-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  padding-bottom: 30px;
}

.ep-pagination-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.ep-pagination-btn:hover:not(:disabled) {
  background: #1a5f5f;
  border-color: #1a5f5f;
  color: white;
  transform: translateY(-2px);
}

.ep-pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ep-pagination-number {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.ep-pagination-number:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

.ep-pagination-number.active {
  background: #1a5f5f;
  color: white;
  border-color: #1a5f5f;
}

.ep-pagination-dots {
  color: #666;
  font-size: 18px;
  font-weight: bold;
  padding: 0 5px;
}

/* Date Input Styling */
.ep-filter-input[type="date"] {
  color-scheme: light;
}

.ep-filter-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  cursor: pointer;
  opacity: 0.7;
}

.ep-filter-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Empty State */
.ep-empty-state {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.ep-empty-icon {
  font-size: 5rem;
  color: #ddd;
  margin-bottom: 25px;
  opacity: 0.8;
}

.ep-empty-icon i {
  display: block;
}

.ep-empty-state h3 {
  color: #2c2c2c;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

.ep-empty-state p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.ep-empty-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.ep-empty-actions .ep-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

.ep-empty-actions .ep-btn i {
  font-size: 16px;
}

.ep-empty-actions .ep-btn-primary {
  background-color: #1a5f5f;
  color: white;
}

.ep-empty-actions .ep-btn-primary:hover {
  background-color: #145252;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26,95,95,0.3);
}

.ep-empty-actions .ep-btn-secondary {
  background-color: transparent;
  color: #1a5f5f;
  border: 2px solid #1a5f5f;
}

.ep-empty-actions .ep-btn-secondary:hover {
  background-color: #1a5f5f;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26,95,95,0.3);
}

/* Loading State */
.ep-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
  background: #ffffff;
  border-radius: 12px;
  margin: 20px;
  border: 1px solid #f0f0f0;
}

.ep-loading::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #1a5f5f;
  border-radius: 50%;
  animation: ep-spin 0.8s linear infinite;
  margin-right: 12px;
  vertical-align: middle;
}

@keyframes ep-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ep-event-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .ep-event-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .ep-card-image-wrapper {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .event-header {
    padding: 40px 0 20px 0;
  }
  
  .event-header h1 {
    font-size: 2rem;
  }
  
  .ep-event-filters {
    padding: 15px 0;
    position: static;
  }
  
  .ep-filter-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .ep-filter-item {
    max-width: 100%;
  }

  .ep-filter-select,
  .ep-filter-input,
  .ep-btn-apply {
    width: 100%;
    min-width: auto;
  }
  
  .ep-btn-apply {
    align-self: stretch;
    margin-bottom: 0;
    height: 46px;
  }

  .ep-event-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 20px;
  }
  
  .ep-card-image-wrapper {
    max-height: 250px;
    min-height: 180px;
  }
  
  .ep-card-title {
    font-size: 17px;
    min-height: auto;
  }
  
  .ep-pagination-btn,
  .ep-pagination-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .ep-empty-state {
    padding: 60px 20px;
    margin: 20px auto;
  }
  
  .ep-empty-icon {
    font-size: 4rem;
  }
  
  .ep-empty-state h3 {
    font-size: 1.5rem;
  }
  
  .ep-empty-state p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .event-header h1 {
    font-size: 1.8rem;
  }
  
  .ep-card-content {
    padding: 20px;
  }
  
  .ep-card-title {
    font-size: 16px;
  }
  
  .ep-filter-select,
  .ep-filter-input {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .ep-btn-apply {
    padding: 10px 25px;
    font-size: 13px;
  }
  
  .ep-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .ep-empty-actions .ep-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    justify-content: center;
  }
  
  .ep-card-image-wrapper {
    max-height: 200px;
    min-height: 150px;
  }
  
  .ep-card-content {
    min-height: 200px;
  }
}
/*--------------------------------------------------------------
# Detail event
--------------------------------------------------------------*/
/* Main Sections */
.event-detail-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.event-detail-section .event-container {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Event Title Section */
.event-detail-section .header-section {
  background: #ffffff;
  padding: 30px;
  border-bottom: 1px solid #eeeeee;
}

.event-detail-section .header-section .main-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333333;
  line-height: 1.3;
}

/* Breadcrumb - TANPA GARIS BAWAH */
.event-detail-section .breadcrumb-nav {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px;
}

.event-detail-section .breadcrumb-nav .nav-item + .nav-item::before {
  content: "›" !important;
  color: #999999;
  padding: 0 8px;
}

.event-detail-section .breadcrumb-nav .nav-item a {
  color: #1a5f5f;
  text-decoration: none !important; /* HILANGKAN GARIS BAWAH */
  transition: all 0.3s ease;
}

.event-detail-section .breadcrumb-nav .nav-item a:hover {
  color: #1a5f5f;
  text-decoration: none !important; /* JAGA TANPA GARIS BAWAH SAAT HOVER */
}

.event-detail-section .breadcrumb-nav .nav-item.active {
  color: #666666;
}

/* Event Content */
.event-detail-section .content-area {
  padding: 30px;
}

.event-detail-section .poster-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.event-detail-section .poster-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Event Info Box */
.event-detail-section .info-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.event-detail-section .date-box {
  margin-bottom: 0;
}

.event-detail-section .date-box .title {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  color: #333333;
  font-weight: 600;
}

.event-detail-section .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.event-detail-section .info-label {
  min-width: 80px;
  color: #666666;
  font-weight: normal;
}

.event-detail-section .info-value {
  color: #1a5f5f;
  font-weight: 600;
}

/* Event Description */
.event-detail-section .description-box {
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
  font-size: 15px;
}

.event-detail-section .description-box p {
  margin-bottom: 15px;
}

.event-detail-section .emoji-icon {
  font-size: 18px;
}

.event-detail-section .tags-container {
  color: #0066cc;
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.6;
}

.event-detail-section .tags-container a {
  text-decoration: none; /* Pastikan tag juga tanpa garis bawah */
}

/* Recommendations Section */
.event-detail-section .recommendations-area {
  padding: 50px 0;
  background: #ffffff;
}

.event-detail-section .recommendations-area.alternate-bg {
  background: #f8f9fa;
}

.event-detail-section .section-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #333333;
  display: inline-block;
}

/* Event Card Items */
.event-detail-section .card-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.event-detail-section .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-detail-section .card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #f0f0f0;
}

.event-detail-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-detail-section .card-item:hover .card-image img {
  transform: scale(1.05);
}

.event-detail-section .card-body {
  padding: 20px;
}

.event-detail-section .card-date {
  font-size: 13px;
  color: #999999;
  margin-bottom: 10px;
}

.event-detail-section .card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333333;
  min-height: 45px;
  line-height: 1.4;
}

.event-detail-section .action-button {
  background: #333333;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none !important; /* TANPA GARIS BAWAH */
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.event-detail-section .action-button:hover {
  background: #555555;
  color: #ffffff !important;
  text-decoration: none !important; /* JAGA TANPA GARIS BAWAH */
  transform: translateX(5px);
}

/* Recommendations Section */
.recommendations-area {
  padding: 50px 0;
  background: #ffffff;
}

.recommendations-area.alternate-bg {
  background: #f8f9fa;
}

.recommendations-area .section-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #333333;
  display: inline-block;
  color: #333333;
}

/* Card Items - 3 Sejajar */
.recommendations-area .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.recommendations-area .col-lg-4,
.recommendations-area .col-md-6 {
  padding: 0 15px;
  margin-bottom: 30px;
}

.recommendations-area .card-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.recommendations-area .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.recommendations-area .card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #f0f0f0;
}

.recommendations-area .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recommendations-area .card-item:hover .card-image img {
  transform: scale(1.05);
}

.recommendations-area .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recommendations-area .card-date {
  font-size: 13px;
  color: #999999;
  margin-bottom: 10px;
}

.recommendations-area .card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333333;
  line-height: 1.4;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommendations-area .action-button {
  background: #333333;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  text-align: center;
  margin-top: auto;
}

.recommendations-area .action-button:hover {
  background: #555555;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .recommendations-area .card-image {
    height: 200px;
  }
  
  /* 2 cards per row on tablet */
  .recommendations-area .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .recommendations-area {
    padding: 40px 0;
  }
  
  .recommendations-area .section-heading {
    font-size: 20px;
  }

  .recommendations-area .card-image {
    height: 180px;
  }
  
  /* 2 cards per row on smaller tablets */
  .recommendations-area .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .recommendations-area {
    padding: 30px 0;
  }
  
  .recommendations-area .card-image {
    height: 200px;
  }
  
  /* 1 card per row on mobile */
  .recommendations-area .col-lg-4,
  .recommendations-area .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .recommendations-area .card-item {
    margin-bottom: 20px;
  }
}
/* Responsive Styles */
@media (max-width: 991px) {
  .event-detail-section .header-section .main-title {
    font-size: 26px;
  }
  
  .event-detail-section .content-area {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .event-detail-section .header-section {
    padding: 20px;
  }

  .event-detail-section .header-section .main-title {
    font-size: 22px;
  }
  
  .event-detail-section .section-heading {
    font-size: 20px;
  }

  .event-detail-section .card-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .event-detail-section {
    padding: 40px 0;
  }

  .event-detail-section .content-area {
    padding: 15px;
  }

  .event-detail-section .recommendations-area {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Detail Berita
--------------------------------------------------------------*/
/* News Page Header */
    .news-page-header {
      background: linear-gradient(135deg, #333 0%, #555 100%);
      padding: 100px 0 60px;
      margin-top: 0;
      position: relative;
    }

    .news-page-header h1 {
      color: white;
      font-size: 3.5rem;
      font-weight: 700;
      margin: 0;
      text-align: center;
      letter-spacing: 8px;
      text-transform: uppercase;
    }

    /* News Detail Container */
    .news-detail-container {
      padding: 60px 0;
      background: #f8f9fa;
    }

    .news-detail-wrapper {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* News Breadcrumb */
    .news-breadcrumb-section {
      padding: 20px 30px;
      background: white;
      border-bottom: 1px solid #eee;
    }

    .news-breadcrumb-section .breadcrumb {
      margin: 0;
      background: transparent;
      padding: 0;
      font-size: 14px;
    }

    .news-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
      content: "/" !important;
      color: #999;
      padding: 0 8px;
    }

    .news-breadcrumb-section .breadcrumb-item a {
      color: #1a5f5f;
      text-decoration: none;
    }

    .news-breadcrumb-section .breadcrumb-item a:hover {
      color: #1a5f5f;
      text-decoration: underline;
    }

    .news-breadcrumb-section .breadcrumb-item.active {
      color: #666;
    }

    /* News Header Info */
    .news-header-info {
      padding: 30px 30px 20px;
      background: white;
      border-bottom: 1px solid #eee;
    }

    .news-title-main {
      font-size: 32px;
      font-weight: 700;
      color: #333;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .news-meta-info {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #6c757d;
      font-size: 14px;
      padding-bottom: 0;
      border-bottom: none;
    }

    .news-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .news-meta-item i {
      color: #1a5f5f;
    }

    /* News Featured Image */
    .news-featured-image {
      width: 100%;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .news-featured-image img {
      width: 100%;
      height: auto;
      max-height: 600px;
      display: block;
      object-fit: contain;
      object-position: center;
      background: #f5f5f5;
    }

    /* News Content Body */
    .news-content-body {
      padding: 30px;
      background: white;
    }

    .news-content-body p {
      font-size: 15px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 15px;
      text-align: justify;
    }

    .news-content-body .news-emoji {
      font-size: 18px;
    }

    /* Recommendations Section */
    .news-recommendations {
      padding: 50px 0;
      background: white;
    }

    .news-recommendations .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .news-recommendations .section-title {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      margin-bottom: 30px;
      padding-bottom: 10px;
      border-bottom: 3px solid #333;
      display: inline-block;
    }

    .news-recommendations .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
    }

    .news-recommendations .col-lg-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
      padding: 0 15px;
      margin-bottom: 30px;
    }

    .news-recommendations .col-md-6 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
      padding: 0 15px;
      margin-bottom: 30px;
    }

    .news-card-item {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .news-card-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .news-card-img {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #f0f0f0;
    }

    .news-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .news-card-item:hover .news-card-img img {
      transform: scale(1.05);
    }

    .news-card-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .news-card-date {
      color: #999;
      font-size: 13px;
      font-weight: normal;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .news-card-title {
      font-size: 16px;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
      line-height: 1.4;
      flex-grow: 1;
      min-height: 45px;
    }

    .news-btn-detail {
      display: inline-block;
      padding: 10px 24px;
      background: #333;
      color: white;
      border-radius: 5px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      transition: all 0.3s ease;
      align-self: flex-start;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .news-btn-detail:hover {
      background: #555;
      color: white;
      text-decoration: none;
      transform: translateX(5px);
    }

    /* Responsive */
    @media (max-width: 991px) {
      .news-page-header h1 {
        font-size: 3rem;
        letter-spacing: 6px;
      }

      .news-title-main {
        font-size: 26px;
      }
      
      .news-header-info {
        padding: 25px;
      }

      .news-content-body {
        padding: 25px;
      }

      .news-breadcrumb-section {
        padding: 20px 25px;
      }

      .news-recommendations .col-lg-4,
      .news-recommendations .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    @media (max-width: 768px) {
      .news-page-header {
        padding: 80px 0 40px;
      }

      .news-page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
      }

      .news-title-main {
        font-size: 22px;
      }

      .news-header-info {
        padding: 20px;
      }

      .news-content-body {
        padding: 20px;
      }

      .news-content-body p {
        font-size: 14px;
        text-align: left;
      }

      .news-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
      }

      .news-breadcrumb-section {
        padding: 15px 20px;
      }

      .news-breadcrumb-section .breadcrumb {
        font-size: 13px;
      }

      .news-card-img {
        height: 180px;
      }

      .news-recommendations .section-title {
        font-size: 20px;
      }

      .news-card-body {
        padding: 15px;
      }

      .news-card-title {
        font-size: 15px;
        min-height: 40px;
      }

      .news-card-date {
        font-size: 12px;
      }

      .news-btn-detail {
        font-size: 12px;
        padding: 8px 20px;
      }

      .news-recommendations {
        padding: 40px 0;
      }

      .news-recommendations .col-lg-4,
      .news-recommendations .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    @media (max-width: 576px) {
      .news-page-header {
        padding: 70px 0 35px;
      }

      .news-page-header h1 {
        font-size: 2rem;
        letter-spacing: 3px;
      }

      .news-title-main {
        font-size: 20px;
        line-height: 1.4;
      }

      .news-header-info {
        padding: 15px;
      }

      .news-content-body {
        padding: 15px;
      }

      .news-content-body p {
        font-size: 14px;
        margin-bottom: 12px;
      }

      .news-breadcrumb-section {
        padding: 12px 15px;
      }

      .news-breadcrumb-section .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
      }

      .news-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 5px;
      }

      .news-featured-image {
        margin: 0;
      }

      .news-featured-image img {
        max-height: 350px;
      }

      .news-card-img {
        height: 160px;
      }

      .news-card-body {
        padding: 12px;
      }

      .news-card-title {
        font-size: 14px;
        margin-bottom: 10px;
        min-height: 38px;
      }

      .news-recommendations .section-title {
        font-size: 18px;
        margin-bottom: 20px;
      }

      .news-recommendations {
        padding: 30px 0;
      }

      .news-detail-wrapper {
        border-radius: 8px;
      }
    }

    @media (max-width: 400px) {
      .news-page-header h1 {
        font-size: 1.75rem;
        letter-spacing: 2px;
      }

      .news-title-main {
        font-size: 18px;
      }

      .news-meta-info {
        font-size: 12px;
      }

      .news-content-body p {
        font-size: 13px;
      }
    }
/*--------------------------------------------------------------
# Galeri M N 
--------------------------------------------------------------*/
  body {
  font-family: 'Segoe UI', Arial, sans-serif;
}

.event-header .container {
  position: relative;
  z-index: 1;
}

.event-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 30px 0;
  background: #f8f9fa;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-home,
.btn-gallery {
  background: #667eea;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-home:hover,
.btn-gallery:hover {
  background: #5568d3;
  color: white;
  transform: translateY(-2px);
}

/* Gallery Items */
.gallery-item {
  margin-bottom: 30px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.gallery-content {
  display: flex;
  align-items: center;
  min-height: 200px;
}

.gallery-image {
  flex: 0 0 30%;
  max-width: 30%;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.gallery-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image::after {
  opacity: 1;
}

.gallery-image .view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: white;
  color: #667eea;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image .view-icon {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-description {
  flex: 1;
  padding: 25px;
}

.gallery-description h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.gallery-description .location {
  color: #667eea;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-description .location i {
  font-size: 1rem;
}

.gallery-description p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.gallery-item.reverse .gallery-content {
  flex-direction: row-reverse;
}

/* Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-content-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.modal-info {
  background: white;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

.modal-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.modal-info .location {
  color: #667eea;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-info .location i {
  font-size: 1.2rem;
}

.modal-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  text-decoration: none;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #667eea;
  color: white;
}

/* Rental Section */
.rental-section {
  padding: 50px 0;
  background: white;
}

.rental-box {
  background: #667eea;
  border-radius: 15px;
  padding: 40px;
}

.rental-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.rental-icon {
  flex-shrink: 0;
}

.rental-icon i {
  font-size: 3rem;
  color: white;
}

.rental-text {
  flex: 1;
  color: white;
}

.rental-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rental-text p {
  font-size: 1rem;
  margin: 0;
}

.rental-button {
  flex-shrink: 0;
}

.btn-rent {
  background: white;
  color: #667eea;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-rent:hover {
  background: #f8f9fa;
  color: #5568d3;
  transform: translateY(-2px);
}

/* =================================================================
   Responsive Design
   ================================================================= */

/* Tablet & Below (992px) */
@media (max-width: 992px) {
  .event-header h1 {
    font-size: 2.2rem;
  }

  .event-header p {
    font-size: 1rem;
  }

  .gallery-image {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .gallery-description {
    padding: 20px;
  }

  .rental-box {
    padding: 35px;
  }

  .rental-text h2 {
    font-size: 1.6rem;
  }
}

/* Mobile & Below (768px) */
@media (max-width: 768px) {
  .event-header {
    padding: 80px 0 40px;
  }

  .event-header h1 {
    font-size: 1.8rem;
  }

  .event-header p {
    font-size: 0.95rem;
  }

  .gallery-section {
    padding: 30px 0;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-home,
  .btn-gallery {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .gallery-item {
    margin-bottom: 20px;
  }

  .gallery-content {
    flex-direction: column !important;
    min-height: auto;
  }

  .gallery-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gallery-description {
    padding: 20px;
  }

  .gallery-description h3 {
    font-size: 1.2rem;
  }

  .gallery-description .location {
    font-size: 0.85rem;
  }

  .gallery-description p {
    font-size: 0.85rem;
  }

  .rental-section {
    padding: 35px 0;
  }

  .rental-box {
    padding: 30px;
  }

  .rental-content {
    flex-direction: column;
    text-align: center;
  }

  .rental-icon i {
    font-size: 2.8rem;
  }

  .rental-text h2 {
    font-size: 1.4rem;
  }

  .rental-text p {
    font-size: 0.9rem;
  }

  .btn-rent {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .modal-content-wrapper {
    max-width: 95%;
  }

  .modal-info {
    padding: 15px;
  }

  .modal-info h3 {
    font-size: 1.2rem;
  }

  .close-modal {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}

/* Small Mobile (576px) */
@media (max-width: 576px) {
  .event-header h1 {
    font-size: 1.5rem;
  }

  .event-header p {
    font-size: 0.85rem;
  }

  .gallery-description h3 {
    font-size: 1.1rem;
  }

  .gallery-description {
    padding: 15px;
  }

  .rental-box {
    padding: 25px 20px;
  }

  .rental-icon i {
    font-size: 2.5rem;
  }

  .rental-text h2 {
    font-size: 1.2rem;
  }

  .rental-text p {
    font-size: 0.85rem;
  }

  .btn-rent {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Galeri detail
--------------------------------------------------------------*/
/* ===== BREADCRUMB ===== */
.event-detail-breadcrumb {
  background: #f5f5f5;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.event-detail-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.event-detail-breadcrumb a {
  color: #2c5282;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.event-detail-breadcrumb a:hover {
  color: #1a365d;
  text-decoration: underline;
}

.event-detail-breadcrumb span {
  color: #718096;
}

.event-detail-breadcrumb span:last-child {
  color: #2d3748;
  font-weight: 600;
}

/* ===== EVENT DETAIL CONTENT ===== */
.event-detail-content {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.event-detail-content .container {
  max-width: 1200px;
}

/* ===== EVENT CARD ===== */
.event-detail-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.event-detail-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== CONTENT WRAPPER ===== */
.event-detail-wrapper {
  padding: 30px;
}

/* ===== EVENT POSTER ===== */
.event-detail-poster {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.event-detail-poster img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.event-detail-poster:hover img {
  transform: scale(1.02);
}

/* ===== EVENT DESCRIPTION ===== */
.event-detail-description {
  line-height: 1.7;
  color: #4a5568;
}

.event-detail-description p {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: justify;
}

.event-detail-meta {
  background: #f7fafc;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
  border-left: 4px solid #1a5f5f;
}

.event-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

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

.event-detail-meta-item span:first-child {
  color: #718096;
  min-width: 100px;
  font-weight: 500;
}

.event-detail-meta-item span:last-child {
  color: #2d3748;
  font-weight: 600;
}

/* ===== SIDEBAR CARD ===== */
.event-detail-sidebar {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 100px;
}

.event-detail-sidebar h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #1a5f5f;
}

/* ===== INFO TABLE ===== */
.event-detail-table {
  width: 100%;
  margin-bottom: 25px;
  border-collapse: separate;
  border-spacing: 0;
}

.event-detail-table tr {
  border-bottom: 1px solid #edf2f7;
  transition: background 0.2s ease;
}

.event-detail-table tr:hover {
  background: #f7fafc;
}

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

.event-detail-table td {
  padding: 14px 8px;
  font-size: 0.95rem;
  vertical-align: middle;
}

.event-detail-table td:first-child {
  color: #718096;
  width: 100px;
  font-weight: 500;
}

.event-detail-table td:nth-child(2) {
  width: 10px;
  text-align: center;
  color: #cbd5e0;
}

.event-detail-table td.info-value {
  color: #2d3748;
  font-weight: 600;
}

/* ===== LOCATION DETAILS ===== */
.event-detail-location {
  background: #f7fafc;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  border-left: 4px solid #1a5f5f;
}

.event-detail-location strong {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 15px;
  display: block;
}

.location-detail-item {
  display: flex;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.location-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.location-detail-label {
  color: #718096;
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
}

.location-detail-value {
  color: #2d3748;
  font-weight: 600;
  flex-grow: 1;
}

/* ===== INFO ICONS ===== */
.event-detail-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.event-detail-icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f7fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.event-detail-icon-item:hover {
  background: #ebf8ff;
  border-color: #4299e1;
  transform: translateY(-2px);
}

.event-detail-icon-item i {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #4299e1;
}

.event-detail-icon-item span {
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.5;
  font-weight: 500;
}

/* ===== RELATED LINKS ===== */
.event-detail-links {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

.event-detail-links h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.event-detail-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-detail-link-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  background: #f7fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #2d3748;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.event-detail-link-item:hover {
  background: #ebf8ff;
  border-color: #4299e1;
  color: #2b6cb0;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
}

.event-detail-link-item i {
  font-size: 1.3rem;
  color: #4299e1;
  flex-shrink: 0;
}

.event-detail-link-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== RECOMMENDATIONS ===== */
.event-detail-recommendations {
  padding: 60px 0;
  background: #f8fafc;
}

.event-detail-recommendations h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.event-detail-recommendations h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #070707;
  border-radius: 2px;
}

.event-detail-recommendation-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.event-detail-recommendation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #4299e1;
}

.event-detail-recommendation-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-detail-recommendation-card:hover img {
  transform: scale(1.05);
}

.event-detail-recommendation-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-detail-recommendation-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #718096;
  font-size: 0.8rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.event-detail-recommendation-meta i {
  font-size: 0.9rem;
  color: #1a5f5f;
}

.event-detail-recommendation-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.event-detail-recommendation-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1a5f5f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.event-detail-recommendation-btn:hover {
  background: #1a5f5f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .event-detail-sidebar {
    position: static;
    margin-top: 30px;
  }
  
  .event-detail-wrapper {
    padding: 25px;
  }
  
  .event-detail-recommendations h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .event-detail-content {
    padding: 30px 0 50px;
  }
  
  .event-detail-wrapper {
    padding: 20px;
  }
  
  .event-detail-sidebar {
    padding: 20px;
  }
  
  .event-detail-location {
    padding: 20px;
  }
  
  .event-detail-recommendation-card img {
    height: 160px;
  }
  
  .event-detail-recommendations {
    padding: 40px 0;
  }
  
  .event-detail-recommendations h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .event-detail-breadcrumb {
    padding: 10px 0;
  }
  
  .event-detail-breadcrumb .container {
    font-size: 0.85rem;
  }
  
  .event-detail-icon-item {
    padding: 12px;
    gap: 12px;
  }
  
  .event-detail-icon-item i {
    font-size: 1.1rem;
  }
  
  .event-detail-link-item {
    padding: 12px 15px;
  }
  
  .location-detail-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .location-detail-label {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Galeri Selengkapnya
--------------------------------------------------------------*/
/* Filter Section Styles */
.filter-container {
  padding: 40px 0 20px;
  background-color: #f8f9fa;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid #1a5f5f;
  background-color: white;
  color: #1a5f5f;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover {
  background-color: #1a5f5f;
  color: white;
  text-decoration: none;
}

.filter-btn.active {
  background-color: #1a5f5f;
  color: white;
  text-decoration: none;
}

/* Event Gallery Styles */
.event-gallery-section {
  padding: 40px 0 60px;
  background-color: #f8f9fa;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.event-gallery-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.event-gallery-card.hidden {
  display: none;
}

.event-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.event-gallery-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.event-gallery-card-content {
  padding: 20px;
}

.event-gallery-card-date {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.event-gallery-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 50px;
}

.event-gallery-card-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-gallery-card-button {
  background-color: #000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.event-gallery-card-button:hover {
  background-color: #333;
  color: white;
}

/* Pagination Styles */
.event-pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.event-pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-pagination li {
  margin: 0;
}

.event-pagination a,
.event-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  background-color: white;
  color: #1a5f5f;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.event-pagination a:hover {
  background-color: #1a5f5f;
  color: white;
  border-color: #1a5f5f;
}

.event-pagination .active span {
  background-color: #1a5f5f;
  color: white;
  border-color: #1a5f5f;
}

.event-pagination .disabled span {
  color: #ccc;
  cursor: not-allowed;
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .event-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .event-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .event-gallery-card-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .event-gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* No Results Style */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results i {
  font-size: 64px;
  color: #ccc;
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.no-results p {
  color: #666;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Informasi detail
--------------------------------------------------------------*/
/* ===== Info Detail Section Styles ===== */
    .info-header {
      padding: 80px 0 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-align: center;
    }
    
    .info-header h1 {
      font-size: 32px;
      font-weight: 700;
      margin: 0;
    }
    
    .info-detail {
      padding: 40px 0 60px;
      background-color: #f8f9fa;
    }
    
    .info-card {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: none;
      border: 1px solid #e0e0e0;
    }
    
    /* ===== PDF Viewer Styles ===== */
    .info-detail-pdf-section {
      margin-top: 30px;
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .info-detail-pdf-list {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding: 15px;
      height: 100%;
    }
    
    .info-detail-pdf-item {
      display: flex;
      align-items: center;
      padding: 12px;
      margin-bottom: 10px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      background-color: #ffffff;
    }
    
    .info-detail-pdf-item:hover {
      background-color: #e9ecef;
      transform: translateX(5px);
    }
    
    .info-detail-pdf-item.active {
      background-color: #1a5f5f;
      color: #ffffff;
    }
    
    .info-detail-pdf-icon {
      font-size: 24px;
      margin-right: 12px;
      color: #dc3545;
    }
    
    .info-detail-pdf-item.active .info-detail-pdf-icon {
      color: #ffffff;
    }
    
    .info-detail-pdf-info {
      flex: 1;
    }
    
    .info-detail-pdf-name {
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 2px;
    }
    
    .info-detail-pdf-size {
      font-size: 12px;
      opacity: 0.7;
      margin: 0;
    }
    
    .info-detail-pdf-container {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      overflow: hidden;
      height: 500px;
      background-color: #f8f9fa;
      box-shadow: none;
      max-width: 100%;
    }
    
    .info-detail-pdf-iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .info-detail-btn-download {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #1a5f5f;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
    }
    
    .info-detail-btn-download:hover {
      background-color: #1a5f5f;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    }
    
    .info-detail-section-title {
      margin-bottom: 15px;
      color: #333333;
      font-weight: 600;
      font-size: 18px;
      text-align: center;
      width: 100%;
    }
    
    /* ===== Report Preview Styles ===== */
    .info-detail-report-preview {
      background-color: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .info-detail-report-header {
      text-align: center;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid #dee2e6;
    }
    
    .info-detail-report-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #333333;
      line-height: 1.4;
    }
    
    .info-detail-report-date {
      font-size: 14px;
      color: #666666;
      margin-bottom: 15px;
      font-weight: 500;
    }
    
    .info-detail-report-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, #dee2e6, transparent);
      margin: 15px 0;
    }
    
    .info-detail-report-subtitle {
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      margin: 20px 0;
      color: #333333;
    }
    
    .info-detail-report-institution {
      text-align: center;
      font-weight: 600;
      margin: 15px 0;
      color: #333333;
    }
    
    .info-detail-report-content {
      line-height: 1.6;
      color: #444444;
      margin-top: 20px;
      text-align: justify;
    }
    
    .info-detail-report-attachment {
      background-color: #f8f9fa;
      padding: 15px;
      border-radius: 6px;
      margin-top: 20px;
      border-left: 4px solid #0d6efd;
    }
    
    .info-detail-attachment-title {
      font-weight: 600;
      margin-bottom: 10px;
      color: #333333;
      font-size: 16px;
    }
    
    /* ===== Attachment Image Styles ===== */
    .info-detail-attachment-image-container {
      margin: 20px 0;
    }
    
    .info-detail-attachment-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin: 20px auto;
      display: block;
      border: 1px solid #dddddd;
      transition: transform 0.3s ease;
    }
    
    .info-detail-attachment-image:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }
    
    .info-detail-image-caption {
      text-align: center;
      font-style: italic;
      color: #666666;
      margin-top: 10px;
      font-size: 14px;
    }
    
    /* ===== Responsive Styles ===== */
    @media (max-width: 992px) {
      .info-detail-pdf-section .row {
        justify-content: center;
      }
      
      .info-detail-pdf-section .col-lg-8 {
        max-width: 100%;
        flex: 0 0 100%;
      }
      
      .info-header h1 {
        font-size: 28px;
      }
    }
    
    @media (max-width: 768px) {
      .info-header {
        padding: 60px 0 30px;
      }
      
      .info-header h1 {
        font-size: 24px;
      }
      
      .info-detail {
        padding: 30px 0 50px;
      }
      
      .info-card {
        padding: 20px;
      }
      
      .info-detail-pdf-container {
        height: 450px;
      }
      
      .info-detail-report-preview {
        padding: 15px;
      }
      
      .info-detail-report-title {
        font-size: 18px;
      }
      
      .info-detail-attachment-image {
        max-width: 100%;
      }
      
      .info-detail-pdf-item {
        padding: 10px;
      }
      
      .info-detail-section-title {
        font-size: 16px;
      }
    }
    
    @media (max-width: 576px) {
      .info-header {
        padding: 50px 0 25px;
      }
      
      .info-header h1 {
        font-size: 20px;
      }
      
      .info-detail {
        padding: 20px 0 40px;
      }
      
      .info-card {
        padding: 15px;
      }
      
      .info-detail-pdf-container {
        height: 400px;
      }
      
      .info-detail-report-title {
        font-size: 16px;
      }
      
      .info-detail-btn-download {
        padding: 8px 16px;
        font-size: 14px;
      }
      
      .info-detail-pdf-section {
        padding: 15px 0;
      }
    }
    
    @media (max-width: 400px) {
      .info-detail-pdf-container {
        height: 350px;
      }
      
      .info-header h1 {
        font-size: 18px;
      }
    }