/* Popup Special Day Sale Styles */
.special-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.special-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.special-popup-content {
    background: linear-gradient(135deg, #198754 0%, #0a5c46 100%);
    border-radius: 20px;
    padding: 0rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
    animation: popupBounce 0.6s ease-out;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.special-popup-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.special-badge {
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.special-days {
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.special-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.special-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.special-close-btn:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
}

/* Tambahkan di file CSS Anda */
.country-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
}

.country-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.country-list {
    max-height: 120px;
    overflow-y: auto;
}

.country-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.country-item:last-child {
    border-bottom: none;
}

.country-flag {
    width: 20px;
    margin-right: 8px;
    font-weight: bold;
}

.country-name {
    flex: 1;
    font-size: 12px;
    color: white;
}

.country-count {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    color: white;
}


/* Styles untuk gambar */

.popup-display-image {
    max-width: 100%;
    max-height: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Styles untuk PDF */
.pdf-display-container {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.pdf-display-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.pdf-display-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pdf-display-size {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Description */
.popup-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.popup-description p {
    color: #495057;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.special-popup-footer {
    margin-top: 0.2rem;
}

.special-action-btn {
    background: #ffd700;
    color: #198754;
    border: none;
    width: 100%;
    padding: 12px 25px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.special-action-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #198754;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 480px) {
    .special-popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .special-title {
        font-size: 1.3rem;
    }
    
    .pdf-display-container {
        padding: 1.5rem 1rem;
    }
    
    .pdf-display-icon {
        font-size: 2.5rem;
    }
}
/* Compact Footer Styling */
.section-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 1px;
}

/* Link List Compact */
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-item {
    display: flex;
    align-items: center;
    color: #e5e7eb;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
    font-size: 0.85rem;
}

.link-item:hover {
    color: #f59e0b;
    border-left-color: #f59e0b;
    transform: translateX(3px);
}

.link-item i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.link-item:hover i {
    transform: translateX(2px);
}

/* Masjid Info Compact */
.masjid-info {
    color: #ffffff;
}

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.75rem;
}

.masjid-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.3;
}

.masjid-address {
    color: #d1d5db;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.masjid-address i {
    color: #f59e0b;
    margin-top: 0.1rem;
    font-size: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #d1d5db;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.contact-item:hover {
    color: #f59e0b;
}

.contact-item i {
    color: #f59e0b;
    width: 16px;
    font-size: 0.8rem;
}

/* Visitor Stats Compact */
.visitor-stats-compact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-item-compact {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stat-item-compact:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-icon-compact {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
}

.stat-icon-compact.online {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.stat-icon-compact i {
    color: white;
    font-size: 0.9rem;
}

.online-dot-compact {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.stat-info-compact {
    text-align: center;
}

.stat-number-compact {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.2rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.stat-label-compact {
    font-size: 0.7rem;
    color: #d1d5db;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Traffic Compact */
.traffic-compact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
}

.traffic-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.traffic-label {
    color: #d1d5db;
    font-size: 0.75rem;
    font-weight: 500;
}

.traffic-percent-compact {
    color: #f59e0b;
    font-weight: 700;
    font-size: 0.75rem;
}

.progress-bar-compact {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 8px;
    transition: width 0.8s ease-in-out;
    width: 0%;
}

.update-time {
    text-align: center;
    color: #9ca3af;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item-compact {
        padding: 0.5rem 0.3rem;
    }
    
    .visitor-stats-compact {
        padding: 0.75rem;
    }
    
    .section-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number-compact {
        font-size: 1rem;
    }
    
    .stat-icon-compact {
        width: 28px;
        height: 28px;
    }
    
    .stat-icon-compact i {
        font-size: 0.8rem;
    }
}

/* Ensure equal height alignment */
.ft-links, .masjid-info, .visitor-stats-compact {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.ft-links .section-title,
.masjid-info .masjid-name,
.visitor-stats-compact .section-title {
    flex-shrink: 0;
}

.link-list,
.contact-info,
.stats-grid-compact {
    flex: 1;
}
/* === Jadwal Shalat Section === */
.bcg-green {
  background: linear-gradient(to bottom, #007D6F, #002B23) !important;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.shalat-card {
  background: #ffffff !important;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 100px;

}

.shalat-card h3 {
  font-size: 1.3rem;
  color: #00695C;
  font-weight: 700;
  letter-spacing: 0.5px;
  marggin:0;
}

.shalat-card i {
  color: #009688;
  font-size: 1.2rem;
  margin-top: 5px;
  letter-spacing:2px;
}
.shalat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.call-to {
  color: #fff;
}

@media (max-width: 768px) {
  .shalat-card {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 480px) {
  .shalat-card {
    margin-bottom: 1rem !important;
  }
}

h2.section-title {
      color: #007D6F;
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
    }
    
.berita-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 0px;
    }

    /* Berita besar di kiri */
    .berita-utama {
       position: relative;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      height: 480px;
      background: #fff;
    }
    .berita-utama img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.5s ease;
      
    }
    .berita-utama:hover img {
        transform: scale(1.05);
      }

    .kategori {
      background: linear-gradient(135deg, #007D6F, #009688);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 12px;
      position: absolute;
      top: 15px;
      left: 15px;
      border-radius: 5px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 2;
    }

    .berita-utama .judul {
      position: absolute;
      bottom: 10px;       
      left: 10px;        
      background: rgba(255,255,255,0.9);
      padding: 10px 15px;
      width: fit-content; 
      max-width: 90%;     
      border-radius: 5px;
      box-sizing: border-box;
    }

    .berita-utama .judul h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #2C3E50; /* Warna hitam gelap */
      margin: 0;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .berita-utama .judul h3 a {
      
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .berita-utama .judul h3 a:hover {
      color: #000;
    }

    .berita-utama .judul p {
      font-size: 0.85rem;
      color: #000;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .berita-utama .judul p i {
      color: #009688;
      font-style: normal;
    }

    /* Berita kecil di kanan */
    .berita-list {
      display: flex;
      flex-direction: column;
      gap: 0px;
      height: 100%;
      
    }

    .berita-item {
      position: relative;
      overflow: hidden;
    }


    .berita-item a {
      display: flex;
      text-decoration: none;
      width: 100%;
      height: 100%;
    }

    .berita-item img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .berita-item:hover img {
        transform: scale(1.05);
      }

    .berita-item .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }

    .berita-item .text {
      position: absolute;
      bottom: 5px;
      left: 5px;
      right: 2px;
      color: #fff;
    }

    .berita-item .text .kategori {
      background: #007D6F;
      position: relative;
      top: 0;
      left: 0;
      padding: 0px 8px 0px 8px;
      border-radius: 3px;
      font-size: 11px;
      display: inline-block;
      margin-bottom: 5px;
    }

    .berita-item .text h4 {
      background: #fff;
      font-size: 12px;
      width: fit-content; 
      max-width: 90%; 
      padding: 3px;
      margin: 1px;
      border-radius: 5px;
      box-sizing: border-box;
      line-height:15px;
    }

    .berita-item .text .tanggal {
      background: #fff;
      font-size: 11px;
      color: #000;
      padding: 3px;
      width: fit-content; 
      max-width: 90%; 
      margin-left: 0px;
      border-radius: 5px;
      box-sizing: border-box;
    }

    /* Responsive Berita Grid */
@media (max-width: 992px) {
  .berita-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .berita-utama {
    height: 400px;
  }
  
  .berita-utama img {
    height: 100%;
  }
  
  .berita-utama .judul {
    height: 15%;
    padding: 5px 5px 5px;
  }
  
  .berita-utama .judul h3 {
    font-size: 1rem;
  }
  
  .berita-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  
  .berita-item {
    height: 130px;
  }
  
  .berita-item .text-content {
    padding: 12px;
  }
  .berita-item .text .tanggal{
    font-size: 0.6rem;
    padding: 0px 5px 0px 5px;
  }
}

@media (max-width: 768px) {
  .berita-list {
    grid-template-columns: 1fr;
  }
  
  .berita-utama {
    height: 400px;
  }
  
  .berita-utama .judul h3 {
    font-size: 1.2rem;
  }
  
  .berita-item {
    height: 120px;
  }
  
  .berita-item .text-content h4 {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .berita-utama {
    height: 400px;
  }
  
  .berita-utama img {
    height: 100%;
  }
  
  .berita-utama .judul {
    height: 25%;
    padding: 12px 15px 15px;
  }
  
  .berita-utama .judul h3 {
    font-size: 1.1rem;
    -webkit-line-clamp: 2;
  }
  
  .berita-item {
    height: 110px;
  }
  
  .berita-item .image-container {
    width: 35%;
  }
  
  .berita-item .text-content {
    width: 65%;
    padding: 10px;
  }
  
  .berita-item .text-content h4 {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
}

/* ======== BERITA LAINNYA ======== */
.berita-lainnya {
  margin-top: 50px;
}

.berita-lain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.berita-lain-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.berita-lain-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s ease;
  }

.berita-lain-item:hover img {
    transform: scale(1.05);
  }

.berita-lain-text {
  flex: 1;
}

.berita-lain-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #d50000;
  margin: 0 0 6px 0;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.berita-lain-text h3 a {  
  transition: color 0.3s ease;
}

.berita-lain-text h3 a:hover {
  color: #d50000;
}

.berita-lain-text .meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.berita-lain-text .meta span {
  color: #d50000;
  font-weight: 600;
}

.berita-lain-text p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 20px;
}

/* Read More Button */
.read-more {
  color: #0a7601;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.read-more:hover {
  color: #009688;
  transform: translateX(3px);
  text-decoration: none;
}

.read-more::after {
  content: '→';
  font-weight: bold;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* Responsive Design */
@media (min-width: 768px) {
  .berita-lain-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
  }
  
  .berita-lain-item {
    flex-direction: row;
  }
  
  .berita-lain-item img {
    width: 45%;
    height: 200px;
  }
}


/* === Overlay agar teks terlihat di atas gambar === */
.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45); /* ubah opacity sesuai selera */
  z-index: 2;
}

/* === Teks di atas gambar === */
.text-overlay {
  z-index: 3;
  color: #fff; /* pastikan putih */
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
}

/* Judul besar */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  background: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.9), 0 0 25px rgba(0,150,136,0.8);
}

/* Subjudul */
.hero-subtitle {
  font-size: 1.5rem;
  color: #e0f2f1;
}

/* Deskripsi */
.hero-desc {
  font-size: 1.1rem;
  color: #f5f5f5;
  max-width: 600px;
}

/* Responsif */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
}

 /* ====== RESPONSIVE TITLE ====== */
  h1.responsive-title b {
    display: inline-block;
    font-size: clamp(1.3rem, 5vw, 3.5rem); /* menyesuaikan otomatis */
    background: rgba(255, 255, 255, 0.85);
    padding: clamp(8px, 2vw, 15px) clamp(12px, 3vw, 25px);
    border-radius: 15px;
    color: #007D6F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
  }

  /* ====== RESPONSIVE SUBTITLE ====== */
  h2.responsive-subtitle b {
    display: inline-block;
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(6px, 1.5vw, 12px) clamp(10px, 2.5vw, 20px);
    border-radius: 15px;
    color: #000;
    letter-spacing: 0.5px;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  /* ====== NAVBAR GLOBAL ====== */

/* ===============================
   DROPDOWN MENU KHUSUS HEADER
   =============================== */
.header_menu .navbar-nav .dropdown {
  position: relative;
  color: #00695C;
}

/* Default style dropdown */
.header_menu .dropdown-menu {
  display: block;
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.3, 1);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 6px 0;
}

.header_menu .navbar-nav .nav-item .nav-link{
  color: #00695C !important;
  font-weight: bold;
}

/* Item style */
.header_menu .dropdown-menu .nav-link,
.header_menu .dropdown-menu .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #00695C !important;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

/* Hover warna lembut */
.header_menu .dropdown-menu .nav-link:hover,
.header_menu .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 105, 92, 0.08);
  color: #004d40 !important;
}

/* Dropdown ke bawah */
.header_menu .dropdown-menu li {
  display: block;
  text-align: left;
}

/* Hover hanya aktif di desktop */
@media (min-width: 992px) {
  .header_menu .navbar-nav .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Di HP/tablet (klik, bukan hover) */
@media (max-width: 991px) {
  .header_menu .dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    transition: none;
  }
}






/* Atur ukuran gambar agar konsisten */
.qk-blg-img img {
  width: 150px;
  height: 80px;            /* tinggi seragam */
  object-fit: cover;       /* biar gambar proporsional, tidak gepeng */
  border-radius: 4px;
}

/* Pastikan isi sejajar di atas, bukan tengah */
.quick-post-wp {
  align-items: flex-start !important; /* override align-items-center */
}

/* Biar teks rapi dan tidak terlalu mepet */
.quick-bg-title {
  flex: 1;
}

