
    /* =====================
       إعدادات عامة للصفحة
    ====================== */
    body.custom {
      font-family: 'Cairo', sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 0;
      direction: rtl;
    }

    /* =====================
       شريط التبديل العلوي
    ====================== */
    .custom-tabs {
      display: flex;
      margin-top: 90px;
      justify-content: center;
      background: #ff6600;
    }

    .custom-tab-btn {
      flex: 1;
      padding: 15px;
      font-size: 1.2rem;
      border: none;
      cursor: pointer;
      background: #ff6600;
      color: #fff;
      transition: background .3s;
    }

    .custom-tab-btn.active {
      background: #e65500;
    }

    /* =====================
       مربع البحث العام
    ====================== */
    .custom-search-box {
      display: block;
      margin: 20px auto;
      padding: 10px 15px;
      font-size: 1rem;
      border: 2px solid #ddd;
      border-radius: 8px;
      width: 90%;
      max-width: 400px;
      outline: none;
      transition: border-color .3s;
    }

    .custom-search-box:focus {
      border-color: #ff6600;
    }

    /* =====================
       أقسام الصفحة
    ====================== */
    .custom-section {
      display: none;
      padding: 30px 20px;
    }

    .custom-section.active {
      display: block;
    }

    .custom-section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }

    /* =====================
       شبكة البطاقات
    ====================== */
    .custom-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    /* =====================
       تصميم البطاقات
    ====================== */
    .custom-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform .5s ease, box-shadow .5s ease;
      
      transform: translateY(50px);
      text-align: center;
    }

    .custom-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .custom-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }

    .custom-name {
      font-size: 1.4rem;
      margin: 10px 0;
      color: #d4af37;
    }

    .custom-address {
      font-size: 1.2rem;
      color: #000;
      margin-bottom: 15px;
    }

    .custom-btn {
      display: inline-block;
      background: #d4af37;
      color: #000;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background .3s;
      cursor: pointer;
    }

    .custom-btn:hover {
      background: #000;
      color: #fff;
    }

    /* =====================
       نافذة منبثقة للخرائط
    ====================== */
    .custom-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    .custom-modal-content {
      background: #fff;
      border-radius: 12px;
      width: 90%;
      max-width: 700px;
      padding: 10px;
      position: relative;
      animation: fadeIn .4s;
    }

    .custom-modal iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 10px;
    }

    .custom-close {
      position: absolute;
      top: 8px;
      left: 12px;
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
