') center/cover; color: white; padding: 180px 0 100px; text-align: center; margin-top: 90px; } .hero h2 { font-size: 48px; margin-bottom: 20px; font-weight: 800; } .hero p { font-size: 22px; margin-bottom: 30px; max-width: 600px; margin-right: auto; margin-left: auto; } .cta-button { display: inline-block; background: #ffc107; color: #1e3a5f; padding: 15px 40px; border-radius: 30px; font-weight: 700; font-size: 18px; transition: transform 0.3s ease; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,193,7,0.4); } /* Section Styles */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 60px; } .section-title h2 { font-size: 36px; color: #1e3a5f; margin-bottom: 15px; font-weight: 800; } .section-title p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; } /* Properties Section */ .properties { background: white; } .property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; } .property-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .property-card:hover { transform: translateY(-10px); } .property-image { height: 250px; background: linear-gradient(45deg, #e3f2fd, #bbdefb); display: flex; align-items: center; justify-content: center; font-size: 48px; color: #1e3a5f; position: relative; } .property-badge { position: absolute; top: 15px; left: 15px; background: #28a745; color: white; padding: 5px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; } .property-badge.rent { background: #dc3545; } .property-info { padding: 25px; } .property-info h3 { font-size: 22px; margin-bottom: 10px; color: #1e3a5f; } .property-location { color: #666; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; } .property-features { display: flex; gap: 20px; margin-bottom: 20px; } .feature { display: flex; align-items: center; gap: 5px; color: #666; font-size: 14px; } .property-price { font-size: 24px; font-weight: 800; color: #ffc107; text-align: left; } /* Team Section */ .team { background: #f8f9fa; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; } .team-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s ease; } .team-card:hover { transform: translateY(-10px); } .team-image { height: 300px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; font-size: 64px; color: white; } .team-info { padding: 25px; } .team-info h3 { font-size: 22px; margin-bottom: 5px; color: #1e3a5f; } .team-info .position { color: #ffc107; font-weight: 600; margin-bottom: 15px; } .team-info p { color: #666; font-size: 15px; margin-bottom: 20px; } .social-links { display: flex; justify-content: center; gap: 15px; } .social-links a { width: 40px; height: 40px; background: #1e3a5f; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; } .social-links a:hover { background: #ffc107; color: #1e3a5f; } /* Contact Section */ .contact { background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%); color: white; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info h3 { font-size: 28px; margin-bottom: 25px; font-weight: 800; } .contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; } .contact-icon { width: 50px; height: 50px; background: #ffc107; color: #1e3a5f; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; } .contact-item h4 { font-size: 18px; margin-bottom: 5px; } .contact-item p { opacity: 0.9; font-size: 16px; } .contact-form { background: rgba(255,255,255,0.1); padding: 40px; border-radius: 15px; backdrop-filter: blur(10px); } .contact-form h3 { font-size: 24px; margin-bottom: 30px; text-align: center; font-weight: 800; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-group input, .form-group textarea { width: 100%; padding: 15px; border: none; border-radius: 10px; font-family: 'Tajawal', sans-serif; font-size: 16px; } .form-group textarea { resize: vertical; min-height: 120px; } .submit-btn { width: 100%; background: #ffc107; color: #1e3a5f; border: none; padding: 15px; border-radius: 10px; font-size: 18px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; } .submit-btn:hover { background: #e6ac00; transform: translateY(-2px); } /* Footer */ .footer { background: #0f2942; color: white; padding: 40px 0 20px; text-align: center; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 30px; } .footer-section h4 { font-size: 20px; margin-bottom: 20px; font-weight: 700; color: #ffc107; } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 10px; } .footer-section a { color: #ccc; } .footer-section a:hover { color: #ffc107; } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #999; font-size: 14px; } /* Blog Posts Section */ .blog-posts { background: white; } .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; } .blog-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .blog-card:hover { transform: translateY(-5px); } .blog-image { height: 200px; background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; color: white; } .blog-content { padding: 25px; } .blog-content h3 { font-size: 20px; margin-bottom: 10px; color: #1e3a5f; } .blog-content .date { color: #666; font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; } .blog-content p { color: #666; margin-bottom: 15px; line-height: 1.6; } .read-more { color: #1e3a5f; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; } .read-more:hover { color: #ffc107; } /* Stats Section */ .stats { background: #ffc107; padding: 60px 0; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; } .stat-item h3 { font-size: 48px; font-weight: 800; color: #1e3a5f; margin-bottom: 10px; } .stat-item p { font-size: 18px; color: #333; font-weight: 600; } /* Responsive Design */ @media (max-width: 768px) { .header-content { flex-direction: column; gap: 20px; } .nav-menu { flex-wrap: wrap; justify-content: center; gap: 15px; } .hero { padding: 150px 0 80px; margin-top: 140px; } .hero h2 { font-size: 32px; } .hero p { font-size: 18px; } .section { padding: 60px 0; } .section-title h2 { font-size: 28px; } .property-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; } } /* Mobile Menu */ .mobile-menu-toggle { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; } @media (max-width: 768px) { .mobile-menu-toggle { display: block; } .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #1e3a5f; flex-direction: column; padding: 20px; gap: 10px; } .nav-menu.active { display: flex; } } /* Widget Styles */ .widget { margin-bottom: 40px; } .widget-title { font-size: 20px; font-weight: 700; color: #1e3a5f; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid #ffc107; } /* Sidebar */ .sidebar { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); } /* Post Body */ .post-body { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); margin-bottom: 30px; } .post-title { font-size: 32px; color: #1e3a5f; margin-bottom: 20px; font-weight: 800; } .post-meta { color: #666; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; } .post-content { font-size: 18px; line-height: 1.8; color: #333; } .post-content h3 { color: #1e3a5f; margin: 30px 0 15px; font-size: 24px; } .post-content img { width: 100%; border-radius: 10px; margin: 20px 0; } /* Comments Section */ .comments { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); } /* Pagination */ .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; } .pagination a { display: inline-block; padding: 10px 20px; background: white; color: #1e3a5f; border-radius: 25px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); font-weight: 600; } .pagination a:hover, .pagination a.active { background: #1e3a5f; color: white; } /* Breadcrumb */ .breadcrumb { background: white; padding: 20px 30px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); margin-bottom: 30px; } .breadcrumb a { color: #1e3a5f; font-weight: 600; } .breadcrumb span { color: #666; margin: 0 10px; } /* Alert Messages */ .alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 20px; } .alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; } .alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; } ]]>

AH View Realty

التسويق العقاري في مصر
  • الرئيسية
  • العقارات
  • فريق العمل
  • المدونة
  • اتصل بنا

AH View Realty

اكتشف أفضل العقارات في مصر مع فريق محترف متخصص في التسويق العقاري

تصفح العقارات

500+

عقار متاح

1000+

عميل سعيد

15+

سنة خبرة

50+

فريق العمل

أحدث العقارات

اكتشف مجموعة مختارة من أفضل العقارات المتاحة للبيع والإيجار في مصر

للبيع

فيلا فاخرة بالتجمع الخامس

التجمع الخامس، القاهرة الجديدة
5 غرف نوم 4 حمامات 500 م²
8,500,000 جنيه
للإيجار

شقة مميزة بالمعادي

المعادي، القاهرة
3 غرف نوم 2 حمامات 180 م²
15,000 جنيه/شهر
للبيع

دوبلكس بمارينا

مارينا، الساحل الشمالي
4 غرف نوم 3 حمامات 350 م²
12,000,000 جنيه

فريق العمل

تعرف على فريقنا المحترف من خبراء التسويق العقاري

أحمد حسن

المدير العام

خبرة 20 عاماً في مجال التسويق العقاري، متخصص في العقارات الفاخرة والاستثمار العقاري.

محمد علي

مستشار عقاري

متخصص في شقق التمليك والعقارات التجارية، يقدم استشارات مجانية لاختيار العقار المناسب.

سارة أحمد

مسؤولة المبيعات

تتابع كافة إجراءات البيع والشراء، وتقدم خدمة ما بعد البيع المتميزة لعملائنا.

خالد عمر

مدير التسويق

خبير في التسويق الرقمي للعقارات، يدير جميع الحملات الإعلانية وقنوات التواصل.

أحدث المقالات

تعرف على أحدث نصائح وأسرار السوق العقاري من خبرائنا

15 يناير 2026

5 نصائح لشراء عقارك الأول في مصر

تعرف على أهم النصائح التي يجب مراعاتها عند شراء أول عقار لك، من اختيار الموقع إلى التمويل...

قراءة المزيد
10 يناير 2026

أفضل مناطق القاهرة للاستثمار العقاري

استكشف المناطق الأكثر طلباً في القاهرة وفرص الاستثمار العقاري المتاحة في كل منطقة...

قراءة المزيد
5 يناير 2026

كيفية حساب العائد على الاستثمار العقاري

تعلم الطرق الصحيحة لحساب العائد على الاستثمار العقاري وعوامل النجاح في الاستثمار...

قراءة المزيد

اتصل بنا

نحن هنا للإجابة على جميع استفساراتك

معلومات التواصل

اتصل بنا

+20 100 123 4567
+20 111 234 5678

البريد الإلكتروني

info@ahviewrealty.com
sales@ahviewrealty.com

العنوان

شارع 90، التجمع الخامس
القاهرة الجديدة، مصر

واتساب

+20 100 123 4567
تواصل معنا على واتساب

أرسل رسالة

عن الشركة

AH View Realty هي شركة رائدة في مجال التسويق العقاري في مصر، تقدم خدمات احترافية تشمل بيع وشراء وتأجير العقارات.

روابط سريعة

  • العقارات
  • فريق العمل
  • المدونة
  • اتصل بنا

تابعنا

جميع الحقوق محفوظة © 2026 AH View Realty | تصميم وتطوير فريق العمل

الرئيسية /

|

شارك المقال:

قراءة المزيد
السابق التالي

التعليقات

ابحث عن عقار

المقالات الشائعة

التصنيفات

()