/* استيراد الخطوط */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --color-primary: #0F172A; /* أزرق داكن ملكي */
  --color-secondary: #1E293B; /* أزرق داكن متوسط */
  --color-gold: #D4AF37; /* ذهبي فاخر */
  --color-gold-hover: #AA8B2C; /* ذهبي أغمق للحوميات */
  --font-family: 'Cairo', sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: #F8FAFC;
  color: #1E293B;
  scroll-behavior: smooth;
}

/* تأثير التدرج الذهبي الفاخر */
.bg-gold-gradient {
  background: linear-gradient(135deg, #E2C974 0%, #D4AF37 50%, #9A7B1C 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #E2C974 0%, #D4AF37 50%, #9A7B1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* تأثير التدرج الأزرق الملكي */
.bg-navy-gradient {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 50%, #3A506B 100%);
}

/* تأثير البطاقات الفاخرة (Glassmorphism + Shadow) */
.luxury-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

/* زر الواتساب العائم */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px; /* بما أن الموقع عربي (RTL) نضعه في اليسار */
  z-index: 50;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}

/* حركة الأنيميشن المخصصة للتحميل */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* تحسينات القائمة المنسدلة في الجوال */
#mobile-menu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* شريط التمرير المخصص */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}
