/* Component Styles */

/* ==================== Navigation Bar ==================== */
.navbar {
  position: fixed;
  top: 5px;
  right: 0;
  left: 0;
  z-index: var(--z-navbar);
  transition: all 0.3s ease-in-out;
  padding: 0;
}

.navbar-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  background: rgba(35, 35, 45, 0.428);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  will-change: background;
}

.navbar-logo {
  order: 1;
}

.navbar-menu {
  order: 2;
}

.cta-button {
  order: 3;
}

.menu-toggle {
  order: 4;
}

.navbar-logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.navbar-logo a:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  align-items: flex-end;
}

.logo-text-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  line-height: 1;
}

.logo-text-en {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  line-height: 1;
}

.navbar-logo a:hover .logo-text-ar {
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo a:hover .logo-text-en {
  color: #a78bfa;
}

.navbar.scrolled .logo-image {
  height: 42px;
}

.navbar.scrolled .logo-text-en {
  font-size: 22px;
}

.navbar.scrolled .logo-text-ar {
  font-size: 12px;
}

.navbar-menu {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  margin-left: auto;
}

.navbar-menu a,
.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.navbar-menu a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6057DE, #764BA2);
  filter: blur(15px);
  opacity: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: -1;
}

.navbar-menu a:hover {
  color: #FFFFFF;
}

.navbar-menu a:hover::before {
  width: 100%;
  opacity: 0.3;
}

.navbar-menu a.active {
  color: #FFFFFF;
}

.navbar-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #764BA2;
  border-radius: 50%;
  box-shadow: 0 0 10px #764BA2;
}

.navbar.scrolled {
  top: 10px;
}

.navbar.scrolled .navbar-container {
  background: rgba(35, 35, 45, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: calc(var(--z-navbar) + 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== CTA Buttons ==================== */
.navbar .cta-button {
  background: linear-gradient(90deg, #6057DE, #764BA2);
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
  position: relative;
  overflow: hidden;
}

.navbar .cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s ease, height 0.6s ease;
}

.navbar .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.6);
  background: linear-gradient(95deg, #6057DE, #764BA2);
}

.navbar .cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-button {
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-dark-gray);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.2);
}

.cta-button.gradient-bg {
  background: linear-gradient(135deg, #764BA2 0%, #6057DE 100%);
  color: var(--color-white);
  border: none;
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  animation: gradientMove 2s ease infinite;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 35px rgba(96, 87, 222, 0.5);
  border-radius: var(--radius-xl);
}

.cta-button.gradient-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
}

.cta-button.gradient-bg:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button.gradient-bg:hover {
  transform: translateY(-10px) scale(1.12);
  box-shadow: 0 20px 45px rgba(96, 87, 222, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-xl);
}



@keyframes gradientMove {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-button.outlined {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-dark-gray);
  border: 2px solid #764BA2;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(96, 87, 222, 0.3);
}

.cta-button.outlined:hover {
  background: #764BA2;
  color: var(--color-white);
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(96, 87, 222, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
}

.cta-button.large {
  padding: 14px 32px;
  font-size: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(96, 87, 222, 0.35);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #6057DE 0%, #764BA2 100%);
  color: white;
  border: none;
}

.cta-button.large:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(96, 87, 222, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-xl);
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #0f0520 100%);
}

.animated-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(118, 75, 162, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(96, 87, 222, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  animation: gradientPulse 8s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes gradientPulse {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.floating-shapes {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 70%;
  background: radial-gradient(circle, rgba(96, 87, 222, 0.25) 0%, transparent 70%);
  animation-delay: 2s;
  animation-duration: 20s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  animation-delay: 4s;
  animation-duration: 30s;
}

.shape-4 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  animation-delay: 1s;
  animation-duration: 22s;
}

.shape-5 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  right: 25%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  animation-delay: 3s;
  animation-duration: 28s;
}

.shape-6 {
  width: 220px;
  height: 220px;
  top: 50%;
  right: 5%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
  animation-delay: 5s;
  animation-duration: 26s;
}

.shape-7 {
  width: 160px;
  height: 160px;
  bottom: 15%;
  left: 40%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.18) 0%, transparent 70%);
  animation-delay: 6s;
  animation-duration: 24s;
}

.shape-8 {
  width: 190px;
  height: 190px;
  top: 20%;
  left: 50%;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.2) 0%, transparent 70%);
  animation-delay: 7s;
  animation-duration: 27s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(118, 75, 162, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 75, 162, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: var(--spacing-xl);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #764BA2, #6057DE);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(96, 87, 222, 0.8);
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: var(--spacing-xl);
  line-height: 1.4;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  animation: titleReveal 1s ease-out forwards;
  opacity: 0;
  margin-bottom: 0.15em;
  line-height: 1.3;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #764BA2, #6057DE);
  border-radius: 2px;
  animation: lineExpand 1s ease-out 0.8s forwards;
  transform: scaleX(0);
  transform-origin: right;
}

@keyframes lineExpand {
  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-2xl);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}



.hero-features {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(118, 75, 162, 0.5);
  transform: translateY(-2px);
}

.feature-badge svg {
  width: 20px;
  height: 20px;
  stroke: #a78bfa;
}

/* ==================== Features Section ==================== */
.features {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(118, 75, 162, 0.12);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(118, 75, 162, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(96, 87, 222, 0.15), transparent);
  transition: right 0.6s ease;
}

.feature-card:hover::before {
  right: 100%;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(118, 75, 162, 0.25);
  border-color: rgba(118, 75, 162, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 250, 252, 1) 100%);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  color: var(--color-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(96, 87, 222, 0.1) 100%);
  border-radius: 50%;
  transition: all var(--transition-base);
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--color-white);
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon svg {
  width: 50%;
  height: 50%;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  font-size: var(--font-size-base);
  color: var(--color-medium-gray);
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-md);
}

.feature-link {
  color: var(--color-indigo);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.feature-link:hover {
  color: var(--color-purple);
  transform: translateX(-3px);
}

.feature-link::after {
  content: '←';
  transition: transform var(--transition-base);
}

.feature-link:hover::after {
  transform: translateX(-3px);
}

/* ==================== Pricing Section ==================== */
.pricing {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 87, 222, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse, pulse 5s ease-in-out infinite;
}

/* دوائر إضافية متحركة */
.pricing-grid::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatDiagonal 18s ease-in-out infinite;
  z-index: 0;
}

.pricing-grid::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 87, 222, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatDiagonal 20s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes floatDiagonal {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(60px, 0) scale(1);
  }

  75% {
    transform: translate(30px, 30px) scale(0.9);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  align-items: stretch;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
}

.pricing-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: var(--spacing-lg) var(--spacing-md);
  padding-top: calc(var(--spacing-xl) + 20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 750px;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y);
  left: var(--mouse-x);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, rgba(118, 75, 162, 0.08) 40%, transparent 70%);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(118, 75, 162, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-card:hover .plan-name {
  color: white;
  transform: scale(1.03);
}

.pricing-card:hover .price-amount {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 8px rgba(118, 75, 162, 0.3));
}

.pricing-card.featured {
  background: rgba(118, 75, 162, 0.15);
  border: 2px solid rgba(118, 75, 162, 0.4);
  transform: scale(1);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, #6057DE, #764BA2);
  color: white;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(118, 75, 162, 0.6);
  z-index: 100;
  border: 2px solid white;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(118, 75, 162, 0.6);
  }

  50% {
    box-shadow: 0 8px 35px rgba(118, 75, 162, 0.8);
  }
}

.plan-name {
  top: -10px;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: var(--spacing-xs);
  margin-left: calc(-1 * var(--spacing-md));
  margin-right: calc(-1 * var(--spacing-md));
  padding: 12px var(--spacing-lg);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  background: rgba(169, 85, 247, 0.094);
  border-radius: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-name:hover {
  transform: scale(1.02);
}

.plan-description {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: var(--spacing-md);
  padding: 0;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  overflow: visible;
  min-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-price {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 1.3;
  padding-bottom: 4px;
}

.price-amount:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(118, 75, 162, 0.4));
}

.price-period {
  /* top:30px; */
  font-size: 14px;
  color: var(--color-medium-gray);
  display: block;
  text-align: center;
}

/* Price Wrapper */
.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

/* Original Price (Strikethrough) */
.price-original {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-medium-gray);
  text-decoration: line-through;
  opacity: 0.5;
}

/* Savings Badge */
.savings-badge {
  display: inline-block;
  background: rgba(168, 85, 247, 0.1);
  color: #764BA2;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  margin-right: 8px;
  white-space: nowrap;
}

/* Discount Badge - Top Right Corner */
.price-discount-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  animation: discountPulse 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes discountPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
  }
}

/* Adjust featured badge position when discount badge exists */
.pricing-card.featured .featured-badge {
  top: 15px;
  right: 15px;
}

/* Plan Features with Icons */
.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li svg {
  flex-shrink: 0;
  stroke: var(--color-indigo);
  transition: all 0.3s ease;
}

.plan-features li:hover svg {
  stroke: var(--color-purple);
  transform: scale(1.1);
}

/* Font Awesome Icons */
.plan-features li i {
  flex-shrink: 0;
  font-size: 18px;
  width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.plan-features li:hover i {
  transform: scale(1.2) rotate(5deg);
}

.plan-features {
  list-style: none;
  position: relative;
  z-index: 1;
}

.plan-features li {
  padding: 12px 0;
  color: var(--color-dark-gray);
  font-size: 16px;
  text-align: right;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.plan-features li:hover {
  color: var(--color-indigo);
  transform: translateX(-5px);
  font-weight: 600;
  background: rgba(118, 75, 162, 0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: var(--spacing-xl);
}

.pricing-card .cta-button {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

/* زر الباقة العادية */
.pricing-card:not(.featured) .cta-button {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  color: var(--color-dark-gray);
  border: 2px solid rgba(118, 75, 162, 0.3);
  box-shadow:
    0 4px 20px rgba(118, 75, 162, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pricing-card:not(.featured) .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(118, 75, 162, 0.2), transparent);
  transition: left 0.6s ease;
}

.pricing-card:not(.featured) .cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(118, 75, 162, 0.6);
  box-shadow:
    0 12px 40px rgba(118, 75, 162, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  color: var(--color-indigo);
}

.pricing-card:not(.featured) .cta-button:hover::before {
  left: 100%;
}

/* زر الباقة المميزة */
.pricing-card.featured .cta-button {
  background: linear-gradient(45deg, #6057DE, #764BA2, #6057DE, #764BA2);
  background-size: 300% 300%;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 6px 20px rgba(118, 75, 162, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
  animation: gradient-flow 4s ease-in-out infinite;
}

.pricing-card.featured .cta-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #6057DE, #764BA2, #6057DE, #764BA2);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  animation: gradient-flow 4s ease-in-out infinite;
  filter: blur(8px);
  opacity: 0.7;
}





.pricing-card.featured .cta-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 12px 35px rgba(118, 75, 162, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 20px rgba(118, 75, 162, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  animation-duration: 2s;
}

.pricing-card.featured .cta-button:hover::before {
  filter: blur(12px);
  opacity: 0.9;
}





/* تأثير الضغط */
.pricing-card .cta-button:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

/* تأثير التركيز للوصولية */
.pricing-card .cta-button:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(118, 75, 162, 0.3),
    0 8px 32px rgba(118, 75, 162, 0.4);
}

/* أنيميشن الخلفية المتدرجة */
@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* تأثير الموجة عند الضغط */
.pricing-card .cta-button .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(118, 75, 162, 0.3);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* تدفق الألوان للزر المميز */
@keyframes gradient-flow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }
}

/* تأثيرات إضافية للأزرار */
.pricing-card .cta-button {
  position: relative;
  isolation: isolate;
}

.pricing-card .cta-button::before {
  z-index: -1;
}



/* تحسين الخطوط والمسافات */
.pricing-card .cta-button {
  font-family: inherit;
  line-height: 1.2;
  white-space: nowrap;
}

/* تأثير النبض للباقة المميزة */
.pricing-card.featured .cta-button {
  animation: gradientShift 3s ease infinite, pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow:
      0 8px 32px rgba(118, 75, 162, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow:
      0 8px 32px rgba(118, 75, 162, 0.6),
      0 0 20px rgba(118, 75, 162, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }
}

/* تحسين الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .pricing-card .cta-button {
    padding: 14px 20px;
    font-size: 15px;
    min-height: 50px;
  }


}

/* ==================== Trusted Clients Swiper ==================== */
.trusted-clients {
  padding: var(--spacing-lg) 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Swiper Container */
.clients-swiper-container {
  width: 100%;
  margin-top: var(--spacing-lg);
  position: relative;
  padding: var(--spacing-sm) 0;
}

/* Swiper Customization */
.clientsSwiper {
  width: 100%;
  padding: 10px 0;
}

.clientsSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.clientsSwiper .swiper-slide {
  width: auto !important;
}

/* Gradient Fade على الجوانب */
.clients-swiper-container::before,
.clients-swiper-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.clients-swiper-container::before {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.clients-swiper-container::after {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

/* Client Card */
.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(118, 75, 162, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 260px;
  cursor: pointer;
  border: 2px solid rgba(118, 75, 162, 0.12);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* تأثير الخلفية عند hover */
.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.08) 0%, rgba(96, 87, 222, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.client-card:hover::before {
  opacity: 1;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(118, 75, 162, 0.3);
}

/* Client Logo */
.client-logo {
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  font-size: 17px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.client-card:hover .client-logo {
  color: var(--color-indigo);
  text-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .client-card {
    min-width: 200px;
    padding: 22px 32px;
  }

  .client-logo {
    font-size: 15px;
  }

  .clients-swiper-container::before,
  .clients-swiper-container::after {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .client-card {
    min-width: 160px;
    padding: 18px 24px;
  }

  .client-logo {
    font-size: 14px;
  }

  .clients-swiper-container::before,
  .clients-swiper-container::after {
    width: 60px;
  }
}

/* ==================== How It Works Section ==================== */
.how-it-works {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.step-card {
  text-align: center;
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(118, 75, 162, 0.15);
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid rgba(118, 75, 162, 0.1);
}

.step-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(118, 75, 162, 0.25);
  border-color: rgba(118, 75, 162, 0.3);
  background: rgba(255, 255, 255, 1);
}

.step-number {
  position: absolute;
  top: -24px;
  right: 50%;
  transform: translateX(50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.5);
  border: 3px solid white;
}

.step-icon {
  width: 90px;
  height: 90px;
  margin: var(--spacing-lg) auto var(--spacing-lg);
  color: var(--color-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.12), rgba(96, 87, 222, 0.12));
  border-radius: 50%;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.1);
}

.step-card:hover .step-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
}

.step-title {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: #2d3748;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.3px;
}

.step-description {
  color: #4a5568;
  line-height: var(--line-height-relaxed);
  font-size: 16px;
}

/* ==================== Testimonials Carousel ==================== */
.testimonials {
  padding: var(--spacing-xl) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  margin-top: var(--spacing-2xl);
  position: relative;
  padding: 0 60px;
}

.testimonialsSwiper {
  padding: var(--spacing-md) 0 var(--spacing-lg);
}

.testimonialsSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(118, 75, 162, 0.12);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(118, 75, 162, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(118, 75, 162, 0.2);
  border-color: rgba(118, 75, 162, 0.2);
}

/* Navigation Buttons - أسهم دائرية */
.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(118, 75, 162, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(118, 75, 162, 0.25);
}

.testimonial-nav-btn svg {
  color: var(--color-indigo);
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(118, 75, 162, 0.4);
}

.testimonial-nav-btn:hover svg {
  color: white;
  transform: scale(1.1);
}

.testimonial-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* موضع الأسهم - خارج الكروت قليلاً */
.testimonial-prev {
  left: -70px;
}

.testimonial-next {
  right: -70px;
}

/* Pagination */
.testimonial-pagination {
  bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(118, 75, 162, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-carousel {
    padding: 0 50px;
  }

  .testimonial-next,
  .testimonial-prev {
    width: 40px;
    height: 40px;
  }

  .testimonial-prev {
    left: 5px;
  }

  .testimonial-next {
    right: 5px;
  }
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
  font-style: italic;
  color: var(--color-dark-gray);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 60px;
  color: var(--color-indigo);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.author-info h4 {
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: 4px;
}

.author-info span {
  color: var(--color-medium-gray);
  font-size: var(--font-size-sm);
}

/* ==================== Pricing FAQ ==================== */
.pricing-faq {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.faq-section .faq-title {
  color: #2d3748;
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}

.faq-section .faq-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-indigo) 100%);
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(118, 75, 162, 0.1);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(118, 75, 162, 0.1), transparent);
  transition: right 0.6s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  border-color: rgba(118, 75, 162, 0.3);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.15);
}

.faq-item:hover::before {
  right: 100%;
}

.faq-item h4 {
  font-weight: var(--font-weight-bold);
  color: #2d3748;
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-lg);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
}



.faq-item:hover h4 {
  color: var(--color-indigo);
}



.faq-item p {
  color: #4a5568;
  line-height: var(--line-height-relaxed);
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
  font-size: var(--font-size-base);
}

.faq-item:hover p {
  color: #2d3748;
}

/* FAQ Accordion States */
.faq-item.expanded {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(118, 75, 162, 0.4);
  box-shadow: 0 4px 20px rgba(118, 75, 162, 0.1);
}

.faq-item.expanded h4 {
  color: var(--color-indigo);
  margin-bottom: var(--spacing-md);
}

.faq-item.expanded p {
  color: #2d3748;
}

/* FAQ Grid Responsive */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .faq-item {
    padding: var(--spacing-md);
  }

  .faq-item h4 {
    font-size: var(--font-size-base);
  }
}

/* ==================== Final CTA Section ==================== */
.final-cta {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #667eea 0%, #6057DE 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

/* ==================== FAQ Section ==================== */
.faq-section {
  padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 20s ease-in-out infinite;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 87, 222, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  margin-bottom: var(--spacing-lg);
  font-size: 14px;
  font-weight: 600;
  animation: badgePulse 2s ease-in-out infinite;
}

.cta-badge svg {
  color: #ffd700;
}

.cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
  line-height: var(--line-height-relaxed);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

.cta-feature-item svg {
  color: #4ade80;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.cta-primary {
  background: white !important;
  color: var(--color-indigo) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4) !important;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-4px) !important;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  opacity: 0.9;
  font-weight: 500;
}

.cta-guarantee svg {
  color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== Features Page Styles ==================== */
.features-hero {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  text-align: center;
}

.features-hero .hero-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.features-hero .hero-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.feature-category {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F3FF 100%);
  position: relative;
}

.feature-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.feature-category>* {
  position: relative;
  z-index: 1;
}

.feature-category.alt-bg {
  background: linear-gradient(135deg, #F5F3FF 0%, #FAF8FF 100%);
}

.category-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: var(--color-dark-gray);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.feature-item.reverse {
  direction: ltr;
}

.feature-item.reverse .feature-content {
  direction: rtl;
}

.feature-content h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: var(--spacing-md);
}

.feature-content p {
  color: var(--color-medium-gray);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
}

.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  color: var(--color-medium-gray);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.features-cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  text-align: center;
}

.features-cta h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: white;
}

.features-cta p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* ==================== Contact Page Styles ==================== */
.contact-hero {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  text-align: center;
}

.contact-hero .hero-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.contact-hero .hero-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-3xl);
}

.contact-form-container {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xl);
  color: var(--color-dark-gray);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-indigo);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: var(--spacing-xs);
}

.contact-details p {
  color: var(--color-medium-gray);
  margin-bottom: var(--spacing-xs);
}

.book-meeting-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  transition: transform var(--transition-base);
}

.book-meeting-btn:hover {
  transform: translateY(-2px);
}

.contact-faq {
  padding: var(--spacing-xl) 0;
  background: white;
}

.contact-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.contact-faq .faq-item {
  padding: var(--spacing-lg);
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  border: none;
}

.contact-faq .faq-item h3 {
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: var(--spacing-sm);
}

.contact-faq .faq-item p {
  color: var(--color-medium-gray);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-item.reverse {
    direction: rtl;
  }

  .contact-faq .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Footer ==================== */
.footer {
  position: relative;
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  color: var(--color-white);
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--gradient-dark);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

.footer-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 18s ease-in-out infinite;
}

.footer-background::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 87, 222, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 22s ease-in-out infinite reverse;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  align-items: start;
}

.footer-logo-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-image {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(167, 139, 250, 0.3));
  transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(167, 139, 250, 0.5));
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-logo-text-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-logo-text-en {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
  max-width: 250px;
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  white-space: nowrap;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  font-size: var(--font-size-sm);
  position: relative;
  display: inline-block;
  padding-right: 5px;
  white-space: nowrap;
}

.footer-column a::before {
  content: '←';
  position: absolute;
  right: -15px;
  opacity: 0;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-white);
  transform: translateX(-5px);
}

.footer-column a:hover::before {
  opacity: 1;
  right: -20px;
}

.footer-column li {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  margin: 0;
}

.footer-bottom a {
  color: #A855F7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #9333EA;
  text-decoration: underline;
}

/* =====
=============== Social Pro


/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 1.2s both;
  z-index: 1;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
  animation: mouseFloat 2s ease-in-out infinite;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes mouseFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes wheelScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .cta-button {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
  }

  .feature-badge {
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 10px 20px;
  }
}





/* Hero Buttons - Identical Design */
.hero-primary-button,
.hero-secondary-button {
  position: relative;
  padding: 16px 48px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  overflow: hidden;
}



.hero-primary-button .button-text,
.hero-secondary-button .button-text {
  font-size: 17px;
  font-weight: 600;
}



/* Both Buttons - Same Purple Color */
.hero-primary-button,
.hero-secondary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #764BA2 0%, #6057DE 100%);
  background-size: 200% 200%;
  box-shadow:
    0 4px 15px rgba(96, 87, 222, 0.4),
    0 0 0 0 rgba(118, 75, 162, 0.4);
  animation: gentleGradient 5s ease infinite;
}

@keyframes gentleGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Shine Effect */
.hero-primary-button::before,
.hero-secondary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transition: left 0.7s ease;
  border-radius: 40px;
}

/* Glow Ring */
.hero-primary-button::after,
.hero-secondary-button::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #a78bfa, #c084fc, #e879f9, #a78bfa);
  background-size: 300% 300%;
  border-radius: 40px;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Hover State */
.hero-primary-button:hover,
.hero-secondary-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(96, 87, 222, 0.6),
    0 0 0 8px rgba(118, 75, 162, 0.15);
  animation-play-state: paused;
}

.hero-primary-button:hover::before,
.hero-secondary-button:hover::before {
  left: 100%;
}

.hero-primary-button:hover::after,
.hero-secondary-button:hover::after {
  opacity: 1;
}

/* Active/Click State */
.hero-primary-button:active,
.hero-secondary-button:active {
  transform: translateY(-2px) scale(1);
  box-shadow:
    0 6px 20px rgba(96, 87, 222, 0.5),
    0 0 0 4px rgba(118, 75, 162, 0.2);
  transition: all 0.1s ease;
}

.hero-primary-button:active::after,
.hero-secondary-button:active::after {
  opacity: 0.7;
  filter: blur(8px);
}

/* Remove extra elements */
.button-glow {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {

  .hero-primary-button,
  .hero-secondary-button {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
  }

  .hero-primary-button .button-text,
  .hero-secondary-button .button-text {
    font-size: 16px;
  }


}


/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(35, 35, 45, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 8px;
}

.dropdown-menu a:hover {
  background: rgba(118, 75, 162, 0.2);
  color: #ffffff;
  transform: translateX(-4px);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    margin-top: 0;
    display: none;
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
  }
}

/* ==================== Testimonials Navigation Arrows ==================== */
.testimonials-carousel {
  position: relative;
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(118, 75, 162, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(118, 75, 162, 0.25);
  outline: none;
}

.testimonial-nav-btn svg {
  color: var(--color-indigo);
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
}

.testimonial-nav-btn:hover {
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  border-color: transparent;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 30px rgba(118, 75, 162, 0.5);
}

.testimonial-nav-btn:hover svg {
  color: white;
  transform: scale(1.2);
}

.testimonial-nav-btn:active {
  transform: translateY(-50%) scale(1.05);
}

/* موضع الأسهم - خارج الكروت */
.testimonial-prev {
  left: -70px;
}

.testimonial-next {
  right: -70px;
}

/* Responsive للأسهم */
@media (max-width: 1200px) {
  .testimonial-prev {
    left: -60px;
  }

  .testimonial-next {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
  }

  .testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-prev {
    left: -50px;
  }

  .testimonial-next {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .testimonial-prev {
    left: 5px;
  }

  .testimonial-next {
    right: 5px;
  }
}

/* ==================== Testimonials Section ==================== */
.testimonials {
  padding: var(--spacing-3xl) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  margin-top: var(--spacing-2xl);
  position: relative;
  padding: 0 80px;
}

.testimonialsSwiper {
  padding: var(--spacing-md) 0 var(--spacing-lg);
}

.testimonialsSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(118, 75, 162, 0.12);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(118, 75, 162, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(118, 75, 162, 0.2);
  border-color: rgba(118, 75, 162, 0.2);
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
  font-style: italic;
  color: var(--color-dark-gray);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 60px;
  color: var(--color-indigo);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.author-info h4 {
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
  margin-bottom: 4px;
}

.author-info span {
  color: var(--color-medium-gray);
  font-size: var(--font-size-sm);
}

/* Navigation Arrows - أسهم التنقل */
.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 3px solid rgba(118, 75, 162, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 6px 25px rgba(118, 75, 162, 0.3);
  outline: none;
}

.testimonial-nav-btn svg {
  color: var(--color-indigo);
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
  stroke-width: 3;
}

.testimonial-nav-btn:hover {
  background: linear-gradient(135deg, #6057DE, #764BA2);
  border-color: transparent;
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 10px 40px rgba(118, 75, 162, 0.6);
}

.testimonial-nav-btn:hover svg {
  color: white;
  transform: scale(1.15);
}

.testimonial-nav-btn:active {
  transform: translateY(-50%) scale(1.1);
}

/* موضع الأسهم */
.testimonial-prev {
  left: -80px;
}

.testimonial-next {
  right: -80px;
}

/* Pagination */
.testimonial-pagination {
  bottom: 0 !important;
  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(118, 75, 162, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--color-purple), var(--color-indigo));
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonial-prev {
    left: -70px;
  }

  .testimonial-next {
    right: -70px;
  }
}

@media (max-width: 992px) {
  .testimonials-carousel {
    padding: 0 70px;
  }

  .testimonial-prev {
    left: -60px;
  }

  .testimonial-next {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel {
    padding: 0 60px;
  }

  .testimonial-nav-btn {
    width: 50px;
    height: 50px;
  }

  .testimonial-nav-btn svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-prev {
    left: 0;
  }

  .testimonial-next {
    right: 0;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel {
    padding: 0 50px;
  }

  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
  }

  .testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-prev {
    left: 0;
  }

  .testimonial-next {
    right: 0;
  }
}

/* ==================== Testimonials Navigation Arrows - واضحة جداً ==================== */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #764BA2 0%, #6057DE 100%);
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow:
    0 8px 30px rgba(96, 87, 222, 0.5),
    0 0 0 0 rgba(118, 75, 162, 0.4);
  outline: none;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

  0%,
  100% {
    box-shadow:
      0 8px 30px rgba(96, 87, 222, 0.5),
      0 0 0 0 rgba(118, 75, 162, 0.4);
  }

  50% {
    box-shadow:
      0 8px 30px rgba(96, 87, 222, 0.5),
      0 0 0 15px rgba(118, 75, 162, 0);
  }
}

.testimonial-arrow svg {
  color: #ffffff;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonial-arrow:hover {
  transform: translateY(-50%) scale(1.15);
  background: linear-gradient(135deg, #6057DE 0%, #764BA2 100%);
  box-shadow:
    0 12px 40px rgba(96, 87, 222, 0.7),
    0 0 0 0 rgba(118, 75, 162, 0);
  animation: none;
}

.testimonial-arrow:hover svg {
  transform: scale(1.2);
}

.testimonial-arrow:active {
  transform: translateY(-50%) scale(1.05);
}

/* موضع الأسهم - واضحة على الجانبين */
.testimonial-arrow-prev {
  left: 20px;
}

.testimonial-arrow-next {
  right: 20px;
}

/* Responsive للأسهم */
@media (max-width: 1200px) {
  .testimonial-arrow {
    width: 60px;
    height: 60px;
  }

  .testimonial-arrow svg {
    width: 28px;
    height: 28px;
  }

  .testimonial-arrow-prev {
    left: 15px;
  }

  .testimonial-arrow-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .testimonial-arrow {
    width: 50px;
    height: 50px;
  }

  .testimonial-arrow svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-arrow-prev {
    left: 10px;
  }

  .testimonial-arrow-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .testimonial-arrow {
    width: 45px;
    height: 45px;
    border-width: 3px;
  }

  .testimonial-arrow svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-arrow-prev {
    left: 5px;
  }

  .testimonial-arrow-next {
    right: 5px;
  }
}

/* ==================== Testimonials Arrows - Simple & Clean ==================== */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-arrow svg {
  color: #764BA2;
  transition: color 0.3s ease;
}

.testimonial-arrow:hover {
  background: #764BA2;
  border-color: #764BA2;
  box-shadow: 0 4px 12px rgba(96, 87, 222, 0.25);
}

.testimonial-arrow:hover svg {
  color: #ffffff;
}

.testimonial-arrow-prev {
  left: 20px;
}

.testimonial-arrow-next {
  right: 20px;
}

@media (max-width: 768px) {
  .testimonial-arrow {
    width: 44px;
    height: 44px;
  }

  .testimonial-arrow svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-arrow-prev {
    left: 10px;
  }

  .testimonial-arrow-next {
    right: 10px;
  }
}

/* ==================== CTA Guarantees Section ==================== */
.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guarantee-item svg {
  color: #4ade80;
  flex-shrink: 0;
}

.guarantee-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Responsive للضمانات */
@media (max-width: 768px) {
  .cta-guarantees {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .guarantee-item {
    width: 100%;
    justify-content: center;
  }
}


/* ==================== Pricing Card Color Themes ==================== */

/* Green Theme - Single Merchant */
.pricing-card-green {
  border: 2px solid rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
}

.pricing-card-green::before {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 40%, transparent 70%);
}

.pricing-card-green:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.3);
}

.pricing-card-green .plan-name {
  color: #22C55E;
}

.pricing-card-green .price-amount {
  background: linear-gradient(135deg, #22C55E, #4ADE80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-green .plan-features li svg {
  stroke: #22C55E;
}

.pricing-card-green .cta-button.outlined {
  border-color: #22C55E;
  color: #22C55E;
}

.pricing-card-green .cta-button.outlined:hover {
  background: #22C55E;
  color: white;
}

/* Blue Theme - Custom Plan */
.pricing-card-blue {
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
}

.pricing-card-blue::before {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
}

.pricing-card-blue:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.pricing-card-blue .plan-name {
  color: #3B82F6;
}

.pricing-card-blue .price-amount {
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-blue .plan-features li svg {
  stroke: #3B82F6;
}

.pricing-card-blue .cta-button.outlined {
  border-color: #3B82F6;
  color: #3B82F6;
}

.pricing-card-blue .cta-button.outlined:hover {
  background: #3B82F6;
  color: white;
}

/* Purple Theme - Multi-Merchant */
.pricing-card-purple {
  border: 2px solid rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
}

.pricing-card-purple::before {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 40%, transparent 70%);
}

.pricing-card-purple:hover {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.4);
}

.pricing-card-purple .plan-name {
  color: white;
  background: rgba(168, 85, 247, 0.2);
  border-left: 3px solid #A855F7;
}

.pricing-card-purple .price-amount {
  background: linear-gradient(135deg, #A855F7, #9333EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-purple .plan-features li svg {
  stroke: #A855F7;
}

/* Gold Theme - Custom */
.pricing-card-gold {
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.pricing-card-gold::before {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 40%, transparent 70%);
}

.pricing-card-gold:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
}

.pricing-card-gold .plan-name {
  color: #F59E0B;
}

.pricing-card-gold .price-amount {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-gold .plan-features li svg {
  stroke: #F59E0B;
}

.pricing-card-gold .cta-button.outlined {
  border-color: #F59E0B;
  color: #F59E0B;
}

.pricing-card-gold .cta-button.outlined:hover {
  background: #F59E0B;
  color: white;
}


/* ==================== Footer Social Links ==================== */
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-social-links .social-link::before {
  display: none;
}

.footer-social-links .social-link:hover {
  background: linear-gradient(135deg, #A855F7, #9333EA);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.footer-social-links .social-link i {
  transition: transform 0.3s ease;
}

.footer-social-links .social-link:hover i {
  transform: rotate(5deg) scale(1.1);
}



/* ==================== FAQ Sections ==================== */
.pricing-faq .faq-item,
.faq-section .faq-item {
  position: relative;
}

.pricing-faq .faq-item h4,
.faq-section .faq-item h4 {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.pricing-faq .faq-item h4::after,
.faq-section .faq-item h4::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #764BA2;
  transition: all 0.3s ease;
}

.pricing-faq .faq-item.active h4::after,
.faq-section .faq-item.active h4::after {
  transform: translateY(-50%) rotate(0deg);
}

.pricing-faq .faq-item h4:hover,
.faq-section .faq-item h4:hover {
  color: #764BA2;
}

.pricing-faq .faq-item h4:hover::after,
.faq-section .faq-item h4:hover::after {
  border-top-color: #667eea;
}

.pricing-faq .faq-item p,
.faq-section .faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.pricing-faq .faq-item.active p,
.faq-section .faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}