.visible-print {
    display: block !important;
}

.hidden-print {
    display: none !important;
}

#x-feed {
    max-height: 300px;   /* ارتفاع ثابت */
    overflow-y: auto;    /* تمرير عمودي */
    padding-right: 6px;  /* مسافة صغيرة عشان السكروول */
  }

  /* شكل شريط التمرير (اختياري) */
  #x-feed::-webkit-scrollbar {
    width: 6px;
  }
  #x-feed::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 3px;
  }
  #x-feed::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

/* ===================================================
   MAPS SECTION (FORCED LIGHT)
   =================================================== */
.maps-section {
  background: #f8f9fa !important; /* Extremely light gray */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.maps-section .section-title h2 {
  color: #2e4056 !important; /* Dark primary color */
}
.maps-section .section-title p {
  color: #555 !important; /* Darker muted text */
}
.maps-section .section-title .eyebrow {
  color: #b5996b !important; /* Gold/Secondary */
}
.maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.map-card {
  background: #ffffff !important; /* Pure white cards */
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #b5996b;
}
.map-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.map-card-header .icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(181, 153, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5996b;
}
.map-card-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #2e4056 !important;
}
.map-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}
.map-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===================================================
   INTRO VIDEO SECTION
   =================================================== */
.intro-video-section {
  background: var(--white);
  position: relative;
}
.intro-video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-promo-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.video-promo-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
.video-frame {
  position: relative;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.video-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(46, 64, 86, 0.25);
}
.video-aspect-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.video-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ===================================================
   SECTION: ANNUAL REPORTS (CARDS SYSTEM)
   =================================================== */
.wud-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    padding: 15px 0;
    direction: rtl;
    width: 100%;
}

.wud-report-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none !important;
    border: 1px solid var(--gray-100);
    height: 100%;
    margin-bottom: 0 !important;
}

.wud-report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.wud-report-thumb {
    aspect-ratio: 1 / 1.1;
    background: var(--gray-50);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: var(--transition);
    position: relative;
}

.wud-report-card:hover .wud-report-thumb {
    background: var(--primary);
}

.wud-report-thumb img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.wud-report-card:hover .wud-report-thumb img {
    transform: scale(1.05);
}

.wud-report-info {
    padding: 10px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--gray-50);
}

.wud-report-info h4 {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    transition: var(--transition);
}

.wud-report-card:hover .wud-report-info h4 {
    color: var(--gold) !important;
}

.wud-report-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

/* Ensure typography doesn't break grid */
.typography .wud-reports-grid {
    display: grid !important;
}

@media (max-width: 768px) {
    .wud-reports-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .wud-reports-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 992px) {
  .intro-video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
