@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================================================== 
   BASE STYLES
   ========================================================================== */

*,
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f172a;
}

/* ========================================================================== 
   LIGHT ANIMATIONS ONLY (one-time on appear)
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes cardSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCircles {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-25px) rotate(120deg);
  }
  66% {
    transform: translateY(15px) rotate(240deg);
  }
}

@keyframes blob {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
  }
}

/* ==========================================================================
   ANIMATION UTILITY CLASSES
   ========================================================================== */

.animate-fade-in-up { 
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}
.animate-fade-in-scale { animation: fadeInScale 0.6s ease-out; }
.animate-slide-in-left { 
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease-out forwards;
}
.animate-slide-in-right { 
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.6s ease-out forwards;
}
.animate-slide-in-top { animation: slideInFromTop 0.6s ease-out; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-bounce-gentle { animation: bounce 2s infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-pulse-gentle { animation: pulse 3s infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-rotate-slow { animation: rotate 10s linear infinite; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  animation: fadeInUp 1s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-load {
  opacity: 0;
}
/* ==========================================================================
   BACKGROUND & GRADIENT (بدون حركة)
   ========================================================================== */

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #2563eb 50%);
}

.gradient-bg-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* ==========================================================================
   ANIMATION DELAYS & STAGGER EFFECTS (خفيفة)
   ========================================================================== */

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

.stagger-1 { 
  transition-delay: 0.1s; 
  animation-delay: 0.2s; 
}
.stagger-2 { 
  transition-delay: 0.2s; 
  animation-delay: 0.4s; 
}
.stagger-3 { 
  transition-delay: 0.3s; 
  animation-delay: 0.6s; 
}
.stagger-4 { 
  transition-delay: 0.4s; 
}
.stagger-5 { 
  transition-delay: 0.5s; 
}
.stagger-6 { 
  transition-delay: 0.6s; 
}

.stagger-animation > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-animation > *:nth-child(8) { animation-delay: 0.8s; }
/* ==========================================================================
   INTERACTIVE HOVER EFFECTS (خفيفة بدون تحريك)
   ========================================================================== */

.hover-lift {
  transition: box-shadow 0.2s ease;
}

.hover-lift:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hover-glow {
  transition: box-shadow 0.2s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

/* ==========================================================================
   CARD COMPONENTS
   ========================================================================== */

.card-hover,
.sales-card {
  transition: box-shadow 0.2s ease;
  position: relative;
}

.card-hover:hover,
.sales-card:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.sales-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.card-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none; /* شلنا الطبقة المتحركة */
  border-radius: 1rem;
  z-index: 1;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   BANNER SECTION (بدون عناصر طايرة أو أنيميشن)
   ========================================================================== */

.products-banner {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 80px 0;
  overflow: hidden;
}

.products-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  /* شلنا الأنيميشن */
}

.floating-elements {
  display: none; /* شلنا الدواير المتحركة */
}

.banner-header {
  text-align: center;
  color: white;
  margin-bottom: 60px;
  /* شلنا أي animation */
}
/* ==========================================================================
   PRODUCT COMPONENTS (خفيفة بدون أنيميشن)
   ========================================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.15);
}

.product-image {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.product-specs {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #4fc3f7;
  margin-bottom: 15px;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0284c7;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 12px;
}

/* ==========================================================================
   TEAM SECTION (خفيفة بدون أنيميشن)
   ========================================================================== */

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.team-card {
  flex: 0 0 350px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ==========================================================================
   AVATAR & CONTACT COMPONENTS
   ========================================================================== */

.avatar-circle {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.contact-item {
  padding: 0.5rem;
  border-radius: 0.5rem;
}

/* ==========================================================================
   SOCIAL ICONS
   ========================================================================== */

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
}

/* Social Platform Colors (ثابتة بدون تأثير hover) */
.linkedin { background: #0077b5; color: #fff; }
.twitter { background: #1da1f2; color: #fff; }
.dribbble { background: #ea4c89; color: #fff; }
.behance { background: #1769ff; color: #fff; }
.facebook { background: #1877f2; color: #fff; }
.whatsapp { background: #25d366; color: #fff; }
.phone { background: #34d399; color: #fff; }

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

.input-focus {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem;
  outline: none;
}

.input-focus:focus {
  border-color: #3b82f6;
}

/* ==========================================================================
   UI COMPONENTS
   ========================================================================== */

.price-tag {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
}

.category-filter {
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
}

.category-filter.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: white;
}













/* خلفية البانر */


/* نقاط خفيفة ديكورية زي اللي في الصورة */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 50px 50px;
  opacity: 0.2;
  pointer-events: none;
}

/* العنوان الرئيسي */
.banner-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* العنوان الفرعي */
.banner-subtitle {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #e0e7ff;
}

/* الوصف */
.banner-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #cbd5e1;
}





.main-cta-buttons {
  text-align: center;
  margin-top: 40px;
  position: relative; /* يحدد سياق للزر */
  z-index: 1;
}

.cta-button.view-more {
  display: inline-block;
  background: linear-gradient(90deg, #38bdf8, #3b82f6); /* تدرج سماوي */
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 50px;
  border-radius: 9999px; /* يخليها كابسولة دائرية */
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);

  position: relative;    /* يضمن ظهوره فوق العناصر المجاورة */
  z-index: 10;            /* رقم مناسب بدل 9999 */
  pointer-events: auto;   /* يضمن استقبال الكليك */
}

.cta-button.view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
}