 /* خلفية منطقة Main Hero - صورة خلفية مع طبقة شفافة بيضاء */
      .main-hero {
        min-height: 350px;
        display: flex;
        align-items: center;
        padding: 0;
        position: relative;
        background:
          linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
          url('../img/technology-kw3.webp') center center / cover no-repeat;
        overflow: hidden;
      }

      .hero-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 350px;
        position: relative;
        z-index: 1;
      }

      .hero-content {
        flex: 1;
        max-width: 800px;
        padding: 2rem;
        text-align: center;
      }
      @media (max-width: 900px) {
        .main-hero, .hero-container {
          min-height: 280px;
        }

        .hero-content {
          max-width: 100%;
          padding: 1.5rem;
        }

        /* تحسينات الجوال */
        .hero-actions .primary-cta,
        .hero-actions .secondary-cta {
          min-height: 48px;
          padding: 12px 24px;
          font-size: 1.1em;
        }
        .nav-links {
          gap: 1rem;
        }
        .section-header {
          padding: 0 1rem;
        }
      }
      @media (max-width: 600px) {
        .main-hero, .hero-container {
          min-height: 240px;
        }

        .hero-content {
          padding: 1rem;
        }

        /* تحسينات شاشات صغيرة */
        .hero-actions .primary-cta,
        .hero-actions .secondary-cta {
          min-height: 52px;
          padding: 16px 32px;
          font-size: 1em;
          margin: 0.5rem 0;
          width: 100%;
          text-align: center;
        }
        .hero-actions {
          flex-direction: column;
          align-items: stretch;
        }
        .container {
          padding: 0 1rem;
        }
        .section-header {
          margin-bottom: 1.5rem;
        }
      }
      /* زيادة عرض عنصر النقاط في قسم الرؤية وجعل كل نقطة في سطر واحد */
      .about-content .feature-list {
        max-width: 900px;
        width: 100%;
        margin: 0 auto 2rem auto;
        font-size: 1.13em;
        display: flex;
        flex-direction: column;
        gap: 0.7em;
      }
      .about-content .feature-list li {
        display: flex;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        gap: 0;
      }
      .about-content .feature-list li strong {
        min-width: 0;
        display: inline-block;
        margin-left: 0.2em;
        margin-right: 0.2em;
      }
      @media (max-width: 600px) {
        .main-hero{padding-top: 15%}
        .about-content .feature-list {
          max-width: 100%;
          font-size: 1em;
        }
        .about-content .feature-list li strong {
          min-width: 120px;
        }
      }

      /* تدوير الصور في قسم من نحن */
      .about-visual {
        position: relative;
        min-height: 350px;
        max-height: 450px;
        overflow: hidden;
        border-radius: 25px;
        background-color: #f8fafc;
      }

      .about-visual img {
        transition: opacity 1s ease-in-out;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 25px;
        background-color: #f8fafc;
      }

      .rotating-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
      }

      .rotating-image.active {
        opacity: 1;
      }

      .rotating-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: 25px;
        background-color: #f8fafc;
      }

      /* تحسينات الوصولية (Accessibility) */
      *:focus {
        outline: 2px solid #003366;
        outline-offset: 2px;
      }

      .btn:focus,
      .nav-link:focus,
      .login-btn:focus {
        box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.3);
      }

      /* تحسين التباين */
      .btn.btn-primary {
        background-color: #003366;
        border-color: #003366;
        color: #ffffff;
        font-weight: 600;
      }

      .btn.btn-primary:hover {
        background-color: #002244;
        border-color: #002244;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
      }

      .success-feedback {
        background-color: #003366;
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        margin-top: 10px;
        display: none;
        animation: slideIn 0.3s ease-out;
      }

      @keyframes slideIn {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }

/* =====================
   Extended Services Section
   ===================== */
.extended-services-wrapper {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,51,102,0.08);
  border: 1px solid #e5e7eb;
}

.extended-services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.extended-services-header h3 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.extended-services-header p {
  color: var(--color-body);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.extended-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-box {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,51,102,0.12);
}

.service-box-icon {
  width: 60px;
  height: 60px;
  background: #003366;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box-icon i,
.service-box-icon svg {
  color: #ffffff;
  font-size: 1.5rem;
}

.service-box h4 {
  color: #003366;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-box p {
  color: var(--color-body);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-box-price {
  background: #003366;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
}

.important-note-box {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 8px;
  border-right: 4px solid #003366;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

[dir="ltr"] .important-note-box {
  border-right: none;
  border-left: 4px solid #003366;
}

.important-note-icon {
  background: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.important-note-icon i {
  color: #ffffff;
  font-size: 1.1rem;
}

.important-note-content h5 {
  color: #003366;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.important-note-content p {
  color: var(--color-body);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.extended-services-cta {
  text-align: center;
}

.extended-services-cta a {
  display: inline-block;
  background: #003366;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,51,102,0.2);
}

.extended-services-cta a:hover {
  background: #002244;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,51,102,0.3);
}

.extended-services-cta a i {
  margin-left: 0.5rem;
}

[dir="ltr"] .extended-services-cta a i {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* =====================
   Testimonials Section Enhanced
   ===================== */
.testimonials-section {
  background-color: #f8fafc;
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--color-body);
}

.testimonial-author strong {
  color: #003366;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--color-body);
  font-size: 0.9rem;
}

/* =====================
   Package Button Unified
   ===================== */
.package-card .btn-choose-package {
  background: #003366;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.package-card .btn-choose-package:hover {
  background: #002244;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,51,102,0.3);
}

@media (max-width: 768px) {
  .extended-services-wrapper {
    padding: 2rem 1.5rem;
  }

  .extended-services-header h3 {
    font-size: 1.5rem;
  }

  .important-note-box {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================
   Contact Info List
   ===================== */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--color-body);
}

.contact-info-list li i {
  color: #003366;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-info-list li a {
  color: #003366;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-list li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Social Links in Contact */
.contact-info .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
  background: #003366;
}

.contact-info .social-links a i {
  color: #003366;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-info .social-links a:hover i {
  color: #ffffff;
}

/* =====================
   Loading Skeleton
   ===================== */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.package-skeleton {
  min-height: 380px;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-header {
  height: 24px;
  width: 60%;
  margin: 0 auto 1rem;
}

.skeleton-price {
  height: 48px;
  width: 40%;
  margin: 0 auto;
}

.skeleton-feature {
  height: 16px;
  width: 100%;
}

.skeleton-feature:nth-child(odd) {
  width: 90%;
}

.skeleton-button {
  height: 44px;
  width: 70%;
  margin: 1rem auto 0;
  border-radius: 22px;
}

.packages-loading {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.packages-loading .package-skeleton {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

/* Counter Animation */
.counter-value {
  display: inline-block;
  transition: all 0.3s ease;
}

.counter-value.counting {
  transform: scale(1.1);
}

/* ========================================
   Contact Section - New Design
======================================== */
.contact-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #003366 0%, #004488 50%, #0056a8 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    font-size: 1.15rem;
    color: #cbd5e1;
    font-weight: 500;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-icon i {
    font-size: 28px;
    color: #ffffff;
}

.form-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-card-header p {
    color: var(--color-body);
    font-size: 0.95rem;
}

.contact-form-card .form-group {
    margin-bottom: 1.25rem;
}

.contact-form-card label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-card label .required {
    color: #ef4444;
    margin-inline-start: 0.25rem;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    color: #1e293b;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: #003366;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #94a3b8;
}

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

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-form-card .btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
    margin-top: 0.5rem;
}

.contact-form-card .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.4);
}

.contact-form-card .btn-submit i {
    font-size: 1.1rem;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    color: #ffffff;
}

.info-header {
    margin-bottom: 1.5rem;
}

.info-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-header p {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 1;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

[dir="ltr"] .info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.phone { background: linear-gradient(135deg, #003366 0%, #004488 100%); }
.info-icon.email { background: linear-gradient(135deg, #003366 0%, #004488 100%); }
.info-icon.location { background: linear-gradient(135deg, #003366 0%, #004488 100%); }

.info-icon i {
    font-size: 20px;
    color: #ffffff;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: #e0f2fe;
    opacity: 1;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.social-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.linkedin { background: #0077b5; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-section-new {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-form-card .form-row {
        grid-template-columns: 1fr;
    }

    .info-items {
        gap: 0.75rem;
    }
}
