/* Premium Header Design */ .auction-header { position: relative; background: linear-gradient(150deg, var(--primary) 0%, var(--primary-light) 60%, #2a8fd6 100%); color: white; padding: 0; overflow: hidden; border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-md); } .auction-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://athman.qiam.sa/img/pattern.png'); opacity: 0.1; z-index: 0; } .auction-header-content { position: relative; z-index: 1; padding: 3rem 0; } .auction-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); } .auction-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 1.5rem; } .auction-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; } .auction-meta-item { display: flex; align-items: center; gap: 0.5rem; background-color: rgba(255, 255, 255, 0.15); padding: 0.5rem 1rem; border-radius: var(--radius-md); backdrop-filter: blur(5px); transition: var(--transition); } .auction-meta-item:hover { background-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); } .auction-meta-item i { font-size: 1.2rem; } /* Premium Status Badge */ .status-badge { position: absolute; top: 2rem; left: 2rem; padding: 0.6rem 1.2rem; border-radius: var(--radius-lg); font-weight: 700; font-size: 1rem; text-transform: uppercase; box-shadow: var(--shadow-sm); z-index: 2; } .status-finished { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; } .status-ongoing { background: var(--success-soft); color: #065f46; border: 1px solid #6ee7b7; } .status-upcoming { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; } /* Premium Tabs Design */ .premium-tabs { margin-top: -2rem; position: relative; z-index: 10; } .premium-tabs .nav-tabs { border: none; background: white; border-radius: var(--radius-md); padding: 0.5rem; box-shadow: var(--shadow-md); display: flex; justify-content: space-between; } .premium-tabs .nav-item { flex: 1; text-align: center; margin: 0 0.25rem; } .premium-tabs .nav-link { border: none; border-radius: var(--radius-sm); padding: 1rem; font-weight: 600; color: var(--dark); transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; } .premium-tabs .nav-link i { font-size: 1.5rem; transition: var(--transition); } .premium-tabs .nav-link.active { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; box-shadow: var(--shadow-sm); } .premium-tabs .nav-link:hover:not(.active) { background-color: var(--accent); transform: translateY(-2px); } .premium-tabs .nav-link.active i { transform: scale(1.2); } /* Premium Tab Content */ .premium-tab-content { background-color: white; border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 2rem; margin-top: 2rem; } .tab-pane { animation: fadeIn 0.5s ease-out; } /* Premium Section Titles */ .section-title { position: relative; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; padding-bottom: 0.75rem; } .section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 2px; } /* Premium Info Cards */ .info-card { background-color: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 1.5rem; height: 100%; transition: var(--transition); border-top: 4px solid var(--primary-light); border: 1px solid var(--border); border-top: 4px solid var(--primary-light); } .info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); } .info-card-title { display: flex; align-items: center; gap: 0.75rem; font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; } .info-card-title i { font-size: 1.5rem; } .info-item { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .info-item:last-child { border-bottom: none; } .info-label { font-weight: 600; color: var(--dark); } .info-value { color: var(--secondary); } /* Premium Map Container */ .map-container { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); height: 600px; } #map_canvas { width: 100%; height: 100%; } .map-overlay { position: absolute; top: 1rem; right: 1rem; background: white; border-radius: var(--radius-sm); padding: 0.75rem; box-shadow: var(--shadow-sm); z-index: 10; max-width: 300px; } .map-overlay-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); } /* Premium Property Cards */ .property-card { background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); margin-bottom: 1.5rem; border: none; } .property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); } .property-card-header { padding: 1.25rem; border-bottom: 1px solid rgba(0, 0, 0, 0.05); display: flex; justify-content: space-between; align-items: center; } .property-card-title { font-size: 1.25rem; font-weight: 700; margin: 0; color: var(--primary-dark); } .property-card-body { padding: 1.25rem; } .property-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; } .property-info-item { display: flex; flex-direction: column; } .property-info-label { font-size: 0.875rem; color: #666; } .property-info-value { font-weight: 600; color: var(--dark); } .property-card-footer { background-color: #f8f9fa; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; } .property-price { font-weight: 700; font-size: 1.1rem; color: var(--primary); } /* Premium Buttons */ .btn-premium { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; border: none; border-radius: var(--radius-md); padding: 0.75rem 1.5rem; font-weight: 700; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 14px rgba(13,61,107,.3); text-decoration: none; } .btn-premium:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,61,107,.4); color: white; text-decoration: none; } .btn-premium-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: var(--radius-md); padding: 0.75rem 1.5rem; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; } .btn-premium-outline:hover { background-color: var(--primary); color: white; transform: translateY(-2px); text-decoration: none; } .btn-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); } .btn-icon:hover { transform: translateY(-2px); } /* Premium PDF Viewer */ .pdf-container { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); height: 600px; } .pdf-container iframe { width: 100%; height: 100%; border: none; } /* Premium Platform Section */ .platform-section { text-align: center; padding: 3rem 0; } .platform-logo { max-width: 200px; margin-bottom: 2rem; } .platform-description { max-width: 600px; margin: 0 auto 2rem; color: #666; } /* Custom Google Maps Info Window */ .gm-style .gm-style-iw-c { padding: 0 !important; border-radius: var(--radius-md) !important; overflow: hidden !important; max-width: 320px !important; box-shadow: var(--shadow-md) !important; } .gm-style .gm-style-iw-d { overflow: hidden !important; padding: 0 !important; } .gm-style-iw-d::-webkit-scrollbar { display: none !important; } /* Hide default close button */ .gm-style .gm-style-iw-t::after, .gm-ui-hover-effect { display: none !important; } /* Custom Info Window */ .custom-info-window { font-family: 'Tajawal', sans-serif; direction: rtl; text-align: right; padding: 0; border-radius: var(--radius-md); overflow: hidden; width: 100%; max-width: 320px; background-color: #fff; position: relative; } .info-window-close { position: absolute; top: 10px; left: 10px; width: 28px; height: 28px; background-color: rgba(255, 255, 255, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 18px; color: #666; border: none; box-shadow: var(--shadow-sm); transition: var(--transition); } .info-window-close:hover { background-color: #fff; transform: scale(1.1); color: #333; } .info-window-header { position: relative; padding: 0; overflow: hidden; height: 160px; } .info-window-header-image { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform 0.5s ease; } .info-window-header:hover .info-window-header-image { transform: scale(1.05); } .info-window-header-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; } .info-window-title { color: #fff; margin: 0 0 5px 0; font-size: 18px; font-weight: bold; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); line-height: 1.4; } .info-window-subtitle { color: #eee; margin: 0; font-size: 14px; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); } .info-window-badges { display: flex; gap: 8px; margin-top: 8px; } .info-window-badge { background-color: var(--primary); color: white; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: bold; display: inline-flex; align-items: center; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); } .info-window-badge.electronic { background-color: #006e5f; } .info-window-badge.upcoming { background-color: var(--warning); } .info-window-badge.ongoing { background-color: var(--success); } .info-window-badge.finished { background-color: var(--danger); } .info-window-content { padding: 16px; } .info-window-property-info { display: flex; flex-wrap: wrap; margin-bottom: 16px; background-color: #f8f9fa; border-radius: var(--radius-sm); padding: 12px; } .info-window-property-item { flex: 1; min-width: 100px; margin-bottom: 8px; } .info-window-property-label { color: #666; font-size: 12px; display: block; margin-bottom: 2px; } .info-window-property-value { color: #333; font-weight: bold; font-size: 14px; } .info-window-actions { display: flex; gap: 8px; margin-top: 16px; } .info-window-button { flex: 1; text-align: center; background-color: var(--primary); color: white; text-decoration: none; padding: 10px 0; border-radius: var(--radius-sm); transition: var(--transition); font-size: 14px; font-weight: bold; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; } .info-window-button:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; text-decoration: none; } .info-window-button.secondary { background-color: #f0f0f0; color: #333; } .info-window-button.secondary:hover { background-color: #e0e0e0; color: #333; } .info-window-price { background-color: var(--primary); color: white; text-align: center; padding: 12px; font-weight: bold; font-size: 16px; margin-top: 16px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); } /* Animation effects */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } /* Responsive Adjustments */ @media (max-width: 992px) { .auction-title { font-size: 1.8rem; } .auction-meta { gap: 1rem; } .status-badge { top: 1.5rem; left: 1.5rem; padding: 0.5rem 1rem; font-size: 0.9rem; } } @media (max-width: 768px) { .auction-header-content { padding: 2rem 0; } .auction-title { font-size: 1.5rem; } .auction-subtitle { font-size: 1rem; } .auction-meta { flex-direction: column; gap: 0.75rem; } .premium-tabs .nav-link { padding: 0.75rem 0.5rem; font-size: 0.9rem; } .premium-tabs .nav-link i { font-size: 1.2rem; } .premium-tab-content { padding: 1.5rem; } .map-container { height: 400px; } .property-info-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 576px) { .status-badge { top: 1rem; left: 1rem; padding: 0.4rem 0.8rem; font-size: 0.8rem; } .premium-tabs .nav-item { margin: 0 0.1rem; } .premium-tabs .nav-link { padding: 0.5rem 0.25rem; font-size: 0.8rem; } .premium-tabs .nav-link i { font-size: 1rem; } .property-info-grid { grid-template-columns: 1fr; } .property-card-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; } .property-card-footer { flex-direction: column; gap: 1rem; align-items: flex-start; } }
منتهي

الشاطئ

مكة المكرمة - جدة
شركة ربيز العقارية
الكتروني
2024-11-10 - 2024-11-12
معلومات المزاد
المزاد
الشاطئ
الشركة المنفذة
شركة ربيز العقارية
بداية المزاد
2024-11-10
نهاية المزاد
2024-11-12
معلومات المزاد
منصة المزايدة
نوع المزاد
الكتروني
المنطقة
مكة المكرمة
المدينة
جدة

يمكنك الانتقال إلى منصة المزاد للمشاركة في المزايدة على هذا العقار والاطلاع على التفاصيل الكاملة للمزاد.

الانتقال إلى منصة المزاد

بنود المزاد

المساحة غير متوفر م²
رقم الصك 5.93969E+11
الاستخدام عمارة
الموقع مكة المكرمة - جدة -الفيصلية

المساحة غير متوفر م²
رقم الصك 7.20204E+11
الاستخدام غير متوفر
الموقع مكة المكرمة - جدة -الربوة

المساحة غير متوفر م²
رقم الصك 2.20225E+11
الاستخدام عمارة
الموقع مكة المكرمة - جدة -الصالحية

المساحة غير متوفر م²
رقم الصك 9.60631E+11
الاستخدام غير متوفر
الموقع مكة المكرمة - جدة -الياقوت

المساحة غير متوفر م²
رقم الصك 3.20219E+11
الاستخدام غير متوفر
الموقع مكة المكرمة - جدة -خليج سـلمان بابحر الشــمالية

المساحة غير متوفر م²
رقم الصك 2.20219E+11
الاستخدام غير متوفر
الموقع مكة المكرمة - جدة -القرينية

المساحة غير متوفر م²
رقم الصك 2.99611E+11
الاستخدام فيلا
الموقع مكة المكرمة - رابغ -الصليب الشرقي