    /* ====== Reset & Base ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", Arial, sans-serif;
      background: #f5f7fa;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ====== Glass Header ====== */
    .header-area {
      position: fixed;
      top: 0;
      width: 100%;
      height: 130px;
      z-index: 999;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .header-area.scrolled {
      background: rgba(255, 255, 255, 0.1);
      box-shadow: none;
    }

    .main-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 30px;
      max-width: 1300px;
      margin: auto;
    }

    .logo img {
      width: 100px;
      padding-top: 5px;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.05);
    }

    /* ====== Navigation Links ====== */
    .nav {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    .nav li a {
      color: rgba(26, 61, 124, 0.95);
      font-weight: 500;
      letter-spacing: 0.3px;
      position: relative;
      transition: all 0.3s ease;
    }

    .nav li a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0%;
      height: 2px;
      background: #ab2424;
      transition: width 0.3s ease;
    }

    .nav li a:hover {
      color: #ab2424;
    }

    .nav li a:hover::after,
    .nav li a.active::after {
      width: 100%;
    }

    /* ====== CTA Button ====== */
    .cta-btn {
      /* background: #ab2424; */
      color: #fff;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(171,36,36,0.3);
    }

    .cta-btn:hover {
      color: #911c1c;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(171,36,36,0.4);
    }

    /* ====== Menu Trigger (Mobile) ====== */
    .menu-trigger {
      display: none;
      color: #fff;
      font-weight: 600;
      background: #ab2424;
      padding: 8px 15px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .menu-trigger:hover {
      background: #8f1d1d;
    }

    /* ====== Responsive ====== */
    @media (max-width: 992px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 35px;
      gap: 25px;
      background: linear-gradient(135deg, rgba(26, 61, 124, 0.92), rgba(171, 36, 36, 0.88));
      backdrop-filter: blur(12px) saturate(180%);
      box-shadow: -6px 0 20px rgba(0, 0, 0, 0.3);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
    }

    /* عند الفتح */
    .nav.open {
      right: 0;
    }

    /* تنسيق الروابط داخل القائمة */
    .nav li a {
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.3px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    /* خط أنيق عند التمرير */
    .nav li a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #f1c40f;
      transition: width 0.3s ease;
    }

    .nav li a:hover {
      color: #f1c40f;
    }

    .nav li a:hover::after {
      width: 100%;
    }

    /* أنيميشن دخول القائمة */
    @keyframes slideInNav {
      from {
        right: -280px;
        opacity: 0;
      }
      to {
        right: 0;
        opacity: 1;
      }
    }

    .nav.open {
      animation: slideInNav 0.4s ease forwards;
    }


/* ====== زر القائمة في وضع الجوال ====== */
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 46px;
  height: 38px;
  background: rgba(171, 36, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1001;
}

/* الخطوط الثلاثة */
.menu-trigger span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* تأثير عند المرور */
.menu-trigger:hover {
  background: rgba(171, 36, 36, 0.95);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ====== حالة التفعيل (عند فتح المنيو) ====== */
.menu-trigger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


    /* ====== زر الدعوة إلى الإجراء (CTA Button) ====== */
    .cta-btn {
      width: 100%;
      text-align: center;
      background: linear-gradient(135deg, #1a3d7c, #ab2424);
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-weight: 600;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      border: none;
      display: inline-block;
      text-decoration: none;
    }

    .cta-btn:hover {
      background: linear-gradient(135deg, #ab2424, #1a3d7c);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    }

/* ===== شريط التواصل العائم ===== */
.floating-contact {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  animation: slideIn 1s ease-out;
}

/* ===== أيقونات التواصل ===== */
.floating-contact {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  animation: slideIn 1s ease-out;
}

/* ===== أيقونات التواصل ===== */
.floating-contact .contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  backdrop-filter: blur(6px);
}

/* ===== التأخير التدريجي للحركة ===== */
.floating-contact .contact-icon:nth-child(1) { animation-delay: 0.3s; }
.floating-contact .contact-icon:nth-child(2) { animation-delay: 0.5s; }
.floating-contact .contact-icon:nth-child(3) { animation-delay: 0.7s; }
.floating-contact .contact-icon:nth-child(4) { animation-delay: 0.9s; }

/* ===== ألوان الأيقونات (واضحة واحترافية) ===== */
.floating-contact .email {
  background: linear-gradient(135deg, #ff4b2b, #ff6f61);
}
.floating-contact .phone {
  background: linear-gradient(135deg, #006400, #00b300);
}
.floating-contact .whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.floating-contact .facebook {
  background: linear-gradient(135deg, #1877f2, #145dbf);
}

/* ===== تأثير التحويم ===== */
.floating-contact .contact-icon:hover {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  opacity: 0.95;
}

/* ===== الحركات ===== */
@keyframes slideIn {
  from { right: -80px; opacity: 0; }
  to { right: 15px; opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== متجاوب مع الهواتف ===== */
@media (max-width: 768px) {
  .floating-contact {
    right: 10px;
  }
  .floating-contact .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
}