.card-rating , .burger-icon-2 ,.footer-bottom  {
    display: none !important;
}

/* 1. إخفاء حقل الموقع تماماً */
.box-bottom-search .item-search:has(label[for="location-input"]),
.box-bottom-search .item-search:first-child {
    display: none !important;
}

/* 2. إعادة ضبط توزيع المساحة للحقول المتبقية */
.box-bottom-search {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
}

/* 3. جعل الحقول المتبقية تتوسع لتملأ الفراغ */
.box-bottom-search .item-search {
    flex: 1 1 250px; /* ستأخذ الحقول مساحة متساوية */
    min-width: 200px;
    border-right: 1px solid #eee; /* اختياري: لإضافة خط فاصل بين الحقلين */
    padding-right: 15px;
}

/* 4. استثناء زر البحث من التوسع ليبقى في جهة اليمين */
.box-bottom-search .item-search.justify-content-end {
    flex: 0 0 auto;
    border-right: none;
}







#movy-card-id {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%) !important;
    color: #ffffff !important;
    padding: 30px !important;
    border-radius: 15px !important;
    display: block !important;
    border: 1px solid #444 !important;
}
.movy-test-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #00000 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin: 20px 0;
    border: 4px solid #444;
}

.movy-test-card h2 {
    color: #f39c12; /* لون ذهبي احترافي */
    font-size: 24px;
    margin-bottom: 10px;
}

.movy-test-card p {
    font-size: 16px;
    opacity: 0.9;
}

.movy-btn {
    display: inline-block;
    background-color: #f39c12;
    color: #000 !important;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}

.movy-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}




FOOTER 

/* ===========================
   Movy Footer — Shared CSS
   Prefix: movy-ft-
   =========================== */

.movy-ft {
  background: #0f1117;
  color: #7a7a85;
  font-family: sans-serif;
  padding: 60px 0 0;
  width: 100%;
  box-sizing: border-box;
}

.movy-ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.movy-ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

/* Logo */
.movy-ft-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Brand col */
.movy-ft-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: #7a7a85;
  max-width: 280px;
}

/* Social */
.movy-ft-social {
  display: flex;
  gap: 10px;
}

.movy-ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #7a7a85;
  transition: border-color 0.2s, color 0.2s;
}

.movy-ft-social a:hover {
  border-color: #4f8ef7;
  color: #4f8ef7;
}

/* Columns */
.movy-ft-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: 0.3px;
}

.movy-ft-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.movy-ft-col ul li {
  margin-bottom: 12px;
}

.movy-ft-col ul li a {
  color: #7a7a85;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.movy-ft-col ul li a:hover {
  color: #fff;
}

/* Contact */
.movy-ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.movy-ft-contact-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.45;
  color: #fff;
}

.movy-ft-contact-item span {
  font-size: 14px;
  color: #7a7a85;
  line-height: 1.5;
}

/* Bottom bar */
.movy-ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.movy-ft-bottom p {
  font-size: 13px;
  color: #4a4a54;
  margin: 0;
}

.movy-ft-bottom-links {
  display: flex;
  gap: 24px;
}

.movy-ft-bottom-links a {
  font-size: 13px;
  color: #4a4a54;
  text-decoration: none;
  transition: color 0.2s;
}

.movy-ft-bottom-links a:hover {
  color: #7a7a85;
}

/* RTL tweak */
.movy-ft-rtl {
  direction: rtl;
  text-align: right;
}

.movy-ft-ltr {
  direction: ltr;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .movy-ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .movy-ft-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .movy-ft-grid {
    grid-template-columns: 1fr;
  }
  .movy-ft-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .movy-ft-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}



/* 5. ضبط الموبايل لضمان عدم تداخل الحقول */
@media (max-width: 768px) {
    .box-bottom-search {
        flex-direction: column;
        align-items: stretch;
    }
    .box-bottom-search .item-search {
        border-right: none;
        padding-right: 0;
        margin-bottom: 15px;
    }
}