/* BigGem Website - Home Page Styles */
/* الألوان الرئيسية للموقع */
:root {
  /* الألوان الرئيسية */
  --primary-color: #2e0056;
  --primary-dark: #31005c;
  --secondary-color: #57078d;
  --accent-color: #681dba;
  --highlight-color: #6b01df;
  --white: #ffffff;
  --black: #000000;

  /* التدرجات اللونية */
  --gradient-primary: linear-gradient(135deg, #2e0056 0%, #57078d 50%, #6b01df 100%);
  --gradient-secondary: linear-gradient(135deg, #31005c 0%, #681dba 100%);
  --gradient-accent: linear-gradient(135deg, #57078d 0%, #6b01df 100%);
  --gradient-dark: linear-gradient(135deg, #2e0056 0%, #31005c 100%);

  /* الألوان الرمادية */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* الظلال */
  --shadow-sm: 0 1px 2px 0 rgba(46, 0, 86, 0.05);
  --shadow: 0 1px 3px 0 rgba(46, 0, 86, 0.1), 0 1px 2px 0 rgba(46, 0, 86, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(46, 0, 86, 0.1), 0 2px 4px -1px rgba(46, 0, 86, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(46, 0, 86, 0.1), 0 4px 6px -2px rgba(46, 0, 86, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(46, 0, 86, 0.1), 0 10px 10px -5px rgba(46, 0, 86, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(46, 0, 86, 0.25);

  /* الحدود */
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-2xl: 2rem;
  --border-radius-full: 9999px;

  /* المسافات */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;
  --spacing-5xl: 6rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  direction: rtl;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; transform: translateX(-100px); }
  50% { opacity: 1; transform: translateX(100px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 15s linear infinite;
}

@keyframes sparkle {
  from { transform: translateX(0); }
  to { transform: translateX(200px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 50px rgba(0, 212, 255, 0.2),
    inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-xl);
  box-shadow:
    var(--shadow-xl),
    0 0 20px rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--primary-color);
  font-weight: 600;
  animation: float-card 6s ease-in-out infinite;
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.floating-card.card-2 {
  bottom: 20%;
  left: -20%;
  animation-delay: 2s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(46, 0, 86, 0.1) 100%);
}

.floating-card.card-3 {
  top: 50%;
  right: -30%;
  animation-delay: 4s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.floating-card.card-4 {
  bottom: 10%;
  right: -15%;
  animation-delay: 6s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(107, 1, 223, 0.1) 100%);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  width: 2px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-10px);
    opacity: 0.7;
  }
  60% {
    transform: translateY(-5px);
    opacity: 0.8;
  }
}

/* Products Section */
.products-section {
  padding: var(--spacing-5xl) 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section-badge {
  display: inline-block;
  background: rgba(46, 0, 86, 0.1);
  color: var(--primary-color);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.product-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  position: relative;
}

.product-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon::before {
  opacity: 1;
  transform: scale(1.1);
}

.product-icon i {
  font-size: 3rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.product-description {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
  text-align: right;
}

.product-features li {
  padding: var(--spacing-sm) 0;
  position: relative;
  padding-right: var(--spacing-lg);
  color: var(--gray-700);
}

.product-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
}

.product-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
  padding: var(--spacing-4xl) 0;
  background: var(--primary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-2xl);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Services Section */
.services-section {
  padding: var(--spacing-5xl) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.service-description {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.service-features li {
  padding: var(--spacing-sm) 0;
  position: relative;
  padding-right: var(--spacing-lg);
  color: var(--gray-700);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
}

.service-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: var(--spacing-5xl) 0;
  background: var(--gray-50);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-5xl);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  font-size: 1.125rem;
}

.about-features {
  list-style: none;
  margin-bottom: var(--spacing-xl);
}

.about-features li {
  padding: var(--spacing-sm) 0;
  position: relative;
  padding-right: var(--spacing-lg);
  color: var(--gray-700);
}

.about-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: var(--spacing-xl);
}

.about-main-image {
  width: 100%;
  height: auto;
  max-width: 650px;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.about-main-image:hover {
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-5xl) 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.contact-details h4 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.contact-details p {
  color: var(--gray-600);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 0, 86, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-5xl) 0;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhanced Products Section with Premium Slider */
.products-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%) !important;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 0, 86, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(87, 7, 141, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Product Tabs */
.product-tabs {
  margin-bottom: var(--spacing-4xl);
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) var(--spacing-2xl);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-xl);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: 0;
}

.tab-btn span,
.tab-btn i {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tab-btn:hover::before,
.tab-btn.active::before {
  left: 0;
}

.tab-btn i {
  font-size: 1.3rem;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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


.wordpress-header .category-title {
  color: var(--secondary-color);
}

.wordpress-header .category-title i {
  color: #21759b;
}

/* Products Slider Container */
.products-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px; /* مساحة للأزرار الجانبية */
}

.products-slider {
  overflow: hidden;
  border-radius: var(--border-radius-2xl);
  background: transparent;
  position: relative;
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.product-slide {
  min-width: 50%; /* عرض منتجين في الشاشة */
  flex-shrink: 0;
  padding: 0 var(--spacing-md);
  box-sizing: border-box;
}

/* إصلاح مشكلة عرض المنتجات في الSlider */
@media (min-width: 769px) {
  .product-slide {
    min-width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .product-slide {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 var(--spacing-sm);
  }
}

/* Premium Product Cards */
.premium-card {
  background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--shadow-xl),
    0 0 30px rgba(46, 0, 86, 0.1);
  border: 1px solid rgba(46, 0, 86, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.premium-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(46, 0, 86, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.premium-card:hover {
  transform: translateY(-15px);
  box-shadow:
    var(--shadow-2xl),
    0 25px 50px rgba(46, 0, 86, 0.15),
    0 0 50px rgba(0, 212, 255, 0.1);
}

.premium-card:hover::after {
  opacity: 1;
}

/* WordPress Cards */
.wordpress-card {
  border: 2px solid rgba(138, 43, 226, 0.15) !important;
}

.wordpress-card:hover {
  border-color: var(--secondary-color) !important;
}

.wordpress-slider {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(46, 0, 86, 0.05) 100%);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-2xl);
}

/* Coming Soon Cards */
.coming-soon-card {
  opacity: 0.85;
  position: relative;
}

.coming-soon-card::before {
  background: linear-gradient(135deg, var(--gray-400) 0%, var(--gray-500) 100%) !important;
}

/* Product Header */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-xl);
}

.product-badge {
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.web-app {
  background: linear-gradient(45deg, #10b981, #059669);
  color: white;
}

.product-badge.wordpress {
  background: linear-gradient(45deg, #21759b, #0073aa);
  color: white;
}

.product-status {
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-status.available {
  background: linear-gradient(45deg, #10b981, #059669);
  color: white;
}

.product-status.coming-soon {
  background: linear-gradient(45deg, var(--gray-400), var(--gray-500));
  color: white;
}

/* Product Visual */
.product-visual {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.product-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.wordpress-icon {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8a2be2 100%) !important;
}

.product-icon i {
  font-size: 2.5rem;
  color: var(--white);
  transition: transform 0.3s ease;
}

.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(46, 0, 86, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.wordpress-glow {
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%) !important;
}

.premium-card:hover .product-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.premium-card:hover .product-icon {
  transform: scale(1.1);
}

.premium-card:hover .product-icon i {
  transform: scale(1.1);
}

/* Product Content */
.product-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.product-description {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}

/* Product Price */
.product-price {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.price-range {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.price-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  background: rgba(87, 7, 141, 0.1);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-full);
  display: inline-block;
}

.coming-soon-price .price-range {
  color: var(--gray-500);
}

.coming-soon-price .price-note {
  background: rgba(156, 163, 175, 0.1);
}

/* Product Features */
.product-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(46, 0, 86, 0.05);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.feature-item:hover {
  background: rgba(46, 0, 86, 0.1);
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 0.9rem;
  min-width: 16px;
}

.feature-item span {
  color: var(--gray-700);
  font-weight: 500;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  align-items: center;
  margin-top: auto;
  flex-wrap: nowrap;
}

.product-btn,
.demo-btn,
.notify-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.85rem;
  min-width: 120px;
  justify-content: center;
}

.product-btn {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.wordpress-btn {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8a2be2 100%) !important;
}

.demo-btn,
.notify-btn {
  background: rgba(46, 0, 86, 0.1);
  color: var(--primary-color);
  border-color: rgba(46, 0, 86, 0.2);
}

.demo-btn:hover,
.notify-btn:hover {
  background: rgba(46, 0, 86, 0.15);
  transform: translateY(-2px);
}

.btn-disabled {
  background: var(--gray-300) !important;
  color: var(--gray-500) !important;
  cursor: not-allowed !important;
}

.btn-disabled:hover {
  transform: none !important;
}

/* Slider Controls - الآن في الجانبين */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
}

.slider-btn.prev-btn {
  left: 0;
}

.slider-btn.next-btn {
  right: 0;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 1.2rem;
  color: inherit;
}

.slider-dots {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Responsive Design for Products Slider */
@media (max-width: 1200px) {
  .products-slider-container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .products-slider-container {
    padding: 0 var(--spacing-lg);
  }

  .product-slide {
    min-width: 100%; /* منتج واحد في الشاشات الصغيرة */
    padding: 0;
  }

  .slider-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }

  .slider-btn {
    position: static;
    width: 50px;
    height: 50px;
  }

  .tab-navigation {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .category-title {
    font-size: 2rem;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .category-subtitle {
    font-size: 1.1rem;
  }

  .premium-card {
    padding: var(--spacing-2xl);
  }

  .product-icon {
    width: 100px;
    height: 100px;
  }

  .product-icon i {
    font-size: 3rem;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
  }

  .product-btn,
  .demo-btn,
  .notify-btn {
    flex: 1;
    min-width: 120px;
    max-width: 140px;
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .slider-controls {
    gap: var(--spacing-lg);
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .wordpress-slider {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .premium-card {
    padding: var(--spacing-xl);
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-description {
    font-size: 1rem;
  }

  .price-range {
    font-size: 1.2rem;
  }

  .feature-item {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Animation for slider transitions */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-slide.active {
  animation: slideIn 0.5s ease;
}

/* Enhanced hover effects */
.premium-card {
  will-change: transform;
}

.premium-card:hover .product-content {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Special effects for WordPress section */
.wordpress-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(33, 117, 155, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  border-radius: var(--border-radius-2xl);
  pointer-events: none;
}

/* Load animation */
@keyframes productLoad {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.premium-card {
  animation: productLoad 0.6s ease forwards;
}

/* About Section Responsive Styles */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    max-width: 100%;
  }

  .about-image {
    min-height: 450px;
    padding: var(--spacing-lg);
  }

  .about-main-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-image {
    min-height: 350px;
    padding: var(--spacing-md);
  }

  .about-main-image {
    border-radius: var(--border-radius-lg);
  }
}

