     /* متغيرات التصميم الاحترافية الشفافة والماكية */
    :root {
      --primary: rgba(0, 150, 136, .7);        /* أزرق غامق شفاف */
      --secondary: rgba(52, 152, 219, 0.9);      /* أزرق فاتح شفاف */
      --accent: rgba(231, 76, 60, 0.9);          /* أحمر مميز شفاف */
      --light: rgba(236, 240, 241, 0.95);        /* رمادي فاتح شفاف */
      --dark: rgba(0, 150, 136, .7);             /* أزرق غامق شفاف */
      --success: rgba(39, 174, 96, 0.9);         /* أخضر ناجح شفاف */
      --gold: rgba(243, 156, 18, 0.9);           /* ذهبي دافئ شفاف */
      --glass: rgba(255, 255, 255, 0.1);         /* خلفية زجاجية */
      --glass-dark: rgba(0, 0, 0, 0);          /* خلفية زجاجية داكنة */
      --text-dark: #2c3e5009;                      /* نص غامق */
      --text-light: #7f8c8d;                     /* نص فاتح */
      --shadow: 0 8px 32px rgba(182, 173, 173, 0.1);
      --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --border-radius: 16px;
      --gradient-primary: linear-gradient(135deg, rgba(44, 80, 59, 0.95) 0%, rgba(52, 152, 219, 0.9) 100%);
      --gradient-glass: linear-gradient(135deg, rgba(29, 190, 37, 0.795) 0%, rgba(255, 255, 255, 0.05) 100%);
      --gradient-accent: linear-gradient(135deg, rgba(231, 76, 60, 0.9) 0%, rgba(243, 156, 18, 0.9) 100%);
      --blur: blur(15px);
      --raad: rgba(52, 152, 219, 0.9);
    }

    /* تأثيرات الزجاج الماكي */
    .glass-effect {
      background: var(--glass);
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .glass-dark {
      background: var(--glass-dark);
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

/* الخلفية للصفحة كاملة */
body {
  margin: 0;
  padding: 0;
  background:white; /* أو أي صورة / لون */
  background-attachment: fixed;        /* يخلي الخلفية ثابتة */
  background-size: cover;              /* تغطي الصفحة كلها */
}

/* الهيدر فوق الخلفية */
header {
  background: rgba(0, 150, 136, .7);   /* لون شبه ثابت (ممكن تخليه solid) */
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;                       /* يخليه فوق الخلفية */
  padding: 0 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 20px;
}


.icon-btn {
  background: rgba(149, 165, 166, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  color: rgba(149, 165, 166, 0.8);
  font-size: 20px;
  padding: 8px;
  border-radius: 12px;
  transition: var(--transition);
  backdrop-filter: var(--blur);
}

.icon-btn:hover {
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  border-color: rgba(39, 174, 96, 0.3);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
}

.view-property {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, rgba(149, 165, 166, 0.9) 0%, rgba(127, 140, 141, 0.9) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--blur);
}

.view-property:hover {
    background: transparent;
    border-color: #95a5a6;
    color: #95a5a6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.3);
}

.icon-btnraad {
  background: rgba(52, 73, 94, 0.15);
  border: 1px solid rgba(189, 195, 199, 0.3);
  cursor: pointer;
  color: rgba(52, 73, 94, 0.8);
  font-size: 16px;
  padding: 10px;
  border-radius: 12px;
  transition: var(--transition);
  backdrop-filter: var(--blur);
}

.icon-btnraad:hover {
  color: #2980b9;
  background: rgba(52, 152, 219, 0.15);
  border-color: rgba(41, 128, 185, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
}

    /* إعادة ضبط العناصر */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

  /* 🎨 تصميم الهيدر الاحترافي الشفاف */


    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      max-width: 1400px;
      margin: 0 auto;
    }

.hero-content {
    position: relative;
    z-index: 3;
    color: rgba(255, 255, 255, 0.098);
    text-align: center;
    padding: 0 10px;
    max-width: 2800px;
    width: 100%;
    margin-top: 700px;


}




.element  .style {
display: flex;
      align-items: center;
      gap: 12px;
    }



    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      height: 35px;
      border-radius: 8px;
      transition: var(--transition);
      filter: brightness(0) invert(1);
      padding: 5px;
      background: rgba(255, 255, 255, 0.1);
    }

    .logo:hover img {
      transform: rotate(5deg) scale(1.1);
      background: rgba(255, 255, 255, 0.2);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text h1 {
      font-size: 1.3rem;
      margin-bottom: 3px;
      color: var(--light);
      font-weight: 700;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .logo-text p {
      font-size: 0.85rem;
      opacity: 0.9;
      color: var(--light);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 20px;
    }

    .nav-links li a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: var(--transition);
      padding: 10px 16px;
      border-radius: var(--border-radius);
      position: relative;
      backdrop-filter: var(--blur);
    }

    .nav-links li a:hover {
      color: var(--gold);
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
      border-radius: 2px;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    .nav-buttons {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn {
      text-decoration: none;
      padding: 12px 24px;
      border-radius: var(--border-radius);
      font-weight: 600;
      font-size: 1rem;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      backdrop-filter: var(--blur);
    }

    .btn i {
      font-size: 1.2rem;
    }

    .login-btn {
      background: var(--accent);
      color: white;
      box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
      border: 1px solid rgba(231, 76, 60, 0.3);
    }

    .login-btn:hover {
      background: rgba(231, 76, 60, 0.8);
      border-color: rgba(231, 76, 60, 0.6);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    }

    .lang-btn {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .lang-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-3px);
      color: var(--gold);
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: white;
      transition: var(--transition);
      padding: 8px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
    }

    .menu-toggle:hover {
      color: var(--gold);
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    /* تأثيرات إضافية للاحترافية */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      min-width: 220px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      padding: 12px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-15px);
      transition: var(--transition);
      z-index: 1001;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(5px);
    }

    .dropdown-menu a {
      color: var(--text-dark);
      padding: 12px 20px;
      display: block;
      transition: var(--transition);
      font-weight: 500;
    }

    .dropdown-menu a:hover {
      background: rgba(52, 152, 219, 0.1);
      color: var(--secondary);
      padding-right: 25px;
      transform: translateX(-5px);
    }

    /* تحسينات للشاشات الصغيرة */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.95);
        backdrop-filter: var(--blur);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        width: 100%;
        text-align: center;
      }

      .nav-links li a {
        display: block;
        padding: 15px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 5px;
      }

      .menu-toggle {
        display: block;
      }

      .nav-buttons {
        gap: 10px;
      }

      .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
      }
    }

    /* تأثيرات متقدمة */
    .notification-badge {
      position: relative;
    }

    .notification-badge::after {
      content: '';
      position: absolute;
      top: -5px;
      right: -5px;
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
      box-shadow: 0 0 10px var(--accent);
    }

    @keyframes pulse {
      0% { transform: scale(0.8); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0.7; }
      100% { transform: scale(0.8); opacity: 1; }
    }

    /* تأثيرات الشفافية للعناصر الأخرى */
    .service-card,
    .property-card,
    .stat-item {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: var(--blur);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-content {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: var(--blur);
      padding: 30px;
      border-radius: var(--border-radius);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* بقية الأقسام - تطبيق تأثير الشفافية */
    section {
      padding: 60px 5%;
      max-width: 100%;
      margin: 0 auto;
    }

    .services {
      background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.9) 100%);
    }

    .featured-properties {
      background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    }

    .stats {
      background: var(--gradient-primary);
    }

    footer {
      background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.9) 100%);
    }

    /* تأثيرات hover محسنة للبطاقات */
    .service-card:hover,
    .property-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      background: rgba(255, 255, 255, 0.95);
    }

    /* تحسينات للفيديو الخلفية */
    #heroSection {
      position: relative;
      width: 100%;
      height: 150px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #heroVideo {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 50%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -1;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: -1;
    }
    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
      color: white;
      z-index: 1;
    }

    .hero-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      line-height: 1.3;
    }

    .hero-title span {
      color: var(--gold);
      display: block;
      font-size: 3rem;
      margin-top: 10px;
    }

    .hero-subtitle {
      font-size: 1.8rem;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .hero-btn {
      padding: 15px 35px;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: var(--border-radius);
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: var(--shadow);
    }

    .hero-btn-primary {
      background: var(--accent);
      color: white;
      border: 2px solid var(--accent);
    }

    .hero-btn-primary:hover {
      background: transparent;
      transform: translateY(-5px);
    }

    .hero-btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .hero-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
    }

    /* الأقسام العامة */
    section {
      padding: 40px 5%;
      max-width: 100%;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      display: inline-block;
      padding-bottom: 15px;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 50%;
      transform: translateX(50%);
      width: 120px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    /* قسم الخدمات */
    .services {
      background: white;
            padding: 5px 15px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      padding: 40px 25px;
      border-top: 4px solid var(--secondary);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: 3.5rem;
      color: var(--secondary);
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      color: var(--primary);
    }

    .service-card p {
      color: #666;
      font-size: 1.1rem;
    }

    /* قسم العقارات المميزة */
    .featured-properties {
      background: linear-gradient(to bottom, #f9fafb, #f1f5f9);
    }

    .properties-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .property-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .property-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .property-image {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .property-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .property-card:hover .property-image img {
      transform: scale(1.1);
    }

    .property-type {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--accent);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: bold;
    }

    .property-price {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 8px 15px;
      border-radius: var(--border-radius);
      font-size: 1.3rem;
      font-weight: bold;
    }

    .property-details {
      padding: 25px;
    }

    .property-details h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--primary);
    }

    .property-features {
      display: flex;
      justify-content: space-between;
      margin: 20px 0;
      padding: 15px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }

    .feature {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .feature i {
      font-size: 1.5rem;
      color: var(--secondary);
      margin-bottom: 8px;
    }

    .view-property {
      display: block;
      text-align: center;
      background: var(--primary);
      color: white;
      padding: 12px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: var(--transition);
    }

    .view-property:hover {
      background: var(--secondary);
    }

    /* قسم الإحصائيات */
    .stats {
      background: linear-gradient(135deg, var(--primary), var(--dark));
      color: white;
      text-align: center;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .stat-item {
      padding: 30px;
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: bold;
      color: var(--gold);
      margin-bottom: 15px;
    }

    .stat-text {
      font-size: 1.3rem;
    }

    /* قسم من نحن */
    .about {
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-image {
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-image img {
      width: 100%;
      height: 100px;
      display: block;
    }

    .about-content h2 {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 25px;
    }

    .about-content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      color: #555;
      line-height: 1.8;
    }

    .about-features {
      margin: 30px 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }

    .feature-item i {
      color: var(--success);
      font-size: 1.3rem;
    }

    /* الفوتر */
    footer {
        background: rgba(0, 150, 136, .7);   /* لون شبه ثابت (ممكن تخليه solid) */

      color: white;
      padding: 70px 5% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto 50px;
    }

    .footer-column h3 {
      font-size: 1.6rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50px;
      height: 3px;
      background: var(--accent);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 15px;
    }

    .footer-links a {
      color: #ddd;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--gold);
      transform: translateX(5px);
    }

    .contact-info {
      list-style: none;
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }

    .contact-info i {
      font-size: 1.3rem;
    color: #f8f9fa;
      margin-top: 5px;
    }





    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 1.3rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-5px);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.911);
      font-size: 1.1rem;
      color: white;
    }

    /* تصميم متجاوب */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-title span {
        font-size: 3.3rem;
      }
      
      .about {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .nav-buttons {
        display: none;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .hero-title {
        font-size: 2.3rem;
      }
      
      .hero-title span {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.4rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      .logo-text h1 {
        font-size: 1.1rem;
      }
      
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-title span {
        font-size: 2rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
      }
    }

    /* فتح القائمة على الجوال */
    .nav-links.show,
    .nav-buttons.show {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      background: var(--dark);
      padding: 20px;
      gap: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.show li,
    .nav-buttons.show {
      width: 100%;
    }

    .nav-links.show li a {
      display: block;
      padding: 12px;
    }

    .nav-buttons.show {
      padding: 20px;
      background: rgba(0, 0, 0, 0.1);
    }
  