.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;
}

@media (max-width: 992px) {
  .intro-video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
