/* تصميم الصفحة الرئيسية landing */
body {
  font-family: 'Tajawal', Arial, sans-serif;
  background: linear-gradient(120deg, #e3f2fd 60%, #fff 100%);
  color: #222;
  min-height: 100vh;
}

/* Hero Section الجديد */
.hero-main {
  background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #1976d215 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-main .container {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #1976d2;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.hero-subtitle {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.8;
}
.hero-features {
  margin-bottom: 32px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #333;
}
.hero-feature-item i {
  color: #1976d2;
  font-size: 1.4rem;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-buttons .btn {
  font-weight: bold;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
}
.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.35);
}
.hero-buttons .btn-primary {
  background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
  border: none;
}
.hero-image-container {
  position: relative;
  display: inline-block;
  max-width: 500px;
  margin: 0 auto;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(25, 118, 210, 0.25);
  transition: transform 0.3s ease;
}
.hero-image:hover {
  transform: scale(1.02);
}
.hero-decoration {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}
.hero-decoration i {
  font-size: 2rem;
}
.hero-decoration-1 {
  top: 10%;
  right: -10px;
  width: 70px;
  height: 70px;
}
.hero-decoration-1 i {
  color: #e53935;
}
.hero-decoration-2 {
  bottom: 15%;
  right: -15px;
  width: 60px;
  height: 60px;
  animation-delay: 1s;
}
.hero-decoration-2 i {
  color: #1976d2;
}
.hero-decoration-3 {
  top: 50%;
  left: -20px;
  width: 65px;
  height: 65px;
  animation-delay: 2s;
}
.hero-decoration-3 i {
  color: #43a047;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
  min-width: 110px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #1976d2;
  font-family: 'Cairo', Arial, sans-serif;
}
.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 4px;
}

/* Trust Section */
.trust-section {
  padding: 40px 0;
  background: #fff;
  margin-bottom: 60px;
}
.trust-badge {
  text-align: center;
  padding: 20px;
}
.trust-badge i {
  font-size: 3rem;
  color: #1976d2;
  margin-bottom: 12px;
}
.trust-badge h6 {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
  margin: 0;
}

/* Section Headers */
.section-header {
  margin-bottom: 50px;
}
.section-title {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #1976d2;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #666;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}
.feature-card-modern {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(25, 118, 210, 0.2);
  border-color: #1976d2;
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.feature-icon i {
  font-size: 2rem;
  color: #fff;
}
.feature-card-modern h4 {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 14px;
}
.feature-card-modern p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #666;
}
.feature-list i {
  color: #1976d2;
  font-size: 1.1rem;
}

/* How It Works */
.how-it-works-section {
  padding: 80px 0;
  background: #fff;
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
  border-radius: 20px;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2);
}
.step-number {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1976d2 0%, #64b5f6 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Cairo', Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
.step-icon {
  font-size: 3.5rem;
  color: #1976d2;
  margin: 20px 0;
}
.step-card h4 {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 14px;
}
.step-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Target Audience */
.target-audience-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}
.audience-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.audience-card:hover {
  transform: translateY(-5px);
  border-color: #1976d2;
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2);
}
.audience-icon {
  font-size: 3rem;
  color: #1976d2;
  margin-bottom: 16px;
}
.audience-card h5 {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 12px;
}
.audience-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #fff;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e3f2fd;
  position: relative;
  overflow: visible;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(25, 118, 210, 0.25);
  border-color: #1976d2;
}
.pricing-card.featured {
  border: 3px solid #1976d2;
  box-shadow: 0 8px 35px rgba(25, 118, 210, 0.3);
}
.pricing-card.special {
  border: 3px solid #43a047;
  box-shadow: 0 8px 35px rgba(67, 160, 71, 0.3);
}
.featured-badge {
  position: absolute;
  top: -15px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}
.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-header h4 {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1976d2;
  margin-bottom: 12px;
}
.pricing-icon {
  font-size: 3rem;
  color: #1976d2;
  margin-bottom: 12px;
}
.pricing-price {
  text-align: center;
  margin-bottom: 12px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #1976d2;
  font-family: 'Cairo', Arial, sans-serif;
}
.price-currency {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
  margin-right: 6px;
}
.pricing-limit {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #666;
  font-family: 'Cairo', Arial, sans-serif;
  margin-bottom: 8px;
}
.price-per-case {
  text-align: center;
  font-size: 0.95rem;
  color: #1976d2;
  background: #e3f2fd;
  padding: 6px 12px;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  max-width: fit-content;
  font-weight: 600;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}
.pricing-features i {
  color: #1976d2;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.custom-package-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.15);
  border: 2px solid #1976d2;
}
.custom-package-info h4 {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 12px;
}
.custom-package-info p {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2);
}
.testimonial-stars {
  color: #FFC107;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 2px solid #e3f2fd;
}
.author-icon {
  font-size: 3rem;
  color: #1976d2;
}
.testimonial-author h6 {
  font-weight: 700;
  color: #1976d2;
  margin: 0 0 4px 0;
  font-size: 1.1rem;
}
.testimonial-author p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1976d2 0%, #64b5f6 100%);
  color: #fff;
}
.cta-content h2 {
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 32px;
  opacity: 0.95;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn {
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #fff;
}
.contact-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.1);
}
.contact-card .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.contact-card .form-control {
  border-radius: 10px;
  border: 2px solid #e3f2fd;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-card .form-control:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.15);
}
.contact-info {
  padding-top: 40px;
  border-top: 2px solid #e3f2fd;
}
.contact-info-item {
  padding: 20px;
}
.contact-info-item i {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 12px;
}
.contact-info-item h6 {
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 8px;
}
.contact-info-item p {
  color: #666;
  margin: 0;
}

/* Footer */
.footer-section {
  background: #1976d2;
  color: #fff;
  padding: 50px 0 20px 0;
}
.footer-section h5 {
  font-family: 'Cairo', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
  padding-right: 8px;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #fff;
  color: #1976d2;
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive للموبايل */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-image-container {
    margin-top: 40px;
  }
  .hero-decoration {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1.05rem;
  }
  .hero-stats {
    justify-content: center;
  }
}
