@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
      @import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap");


        /* إضافة أنماط خاصة للأزرار على iOS */
        button, .btn {
          -webkit-tap-highlight-color: transparent;
          -webkit-touch-callout: none;
          -webkit-user-select: none;
          user-select: none;
          cursor: pointer;
          touch-action: manipulation;
        }

      body {
        font-family: "Montserrat", sans-serif;
        background: linear-gradient(
          135deg,
          #2d1b4e 0%,
          #4a1a5c 25%,
          #6b2d7a 50%,
          #8b4298 75%,
          #b45bb8 100%
        ) !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        color: var(--text-white);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
      }
      
      

      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
      }

      /* حل خاص لأجهزة iOS */
      @supports (-webkit-appearance: none) {
        body {
          background: linear-gradient(
            135deg,
            #2d1b4e 0%,
            #4a1a5c 25%,
            #6b2d7a 50%,
            #8b4298 75%,
            #b45bb8 100%
          ) !important;
          background-attachment: scroll !important;
        }
      }

      /* حل نهائي قوي لمشكلة الآيفون */
      @supports (-webkit-touch-callout: none) {
        body {
          background: linear-gradient(
            135deg,
            #2d1b4e 0%,
            #4a1a5c 25%,
            #6b2d7a 50%,
            #8b4298 75%,
            #b45bb8 100%
          ) !important;
          background-attachment: scroll !important;
        }
      }

      /* حل إضافي لأجهزة iOS تحديداً */
      @media screen and (-webkit-min-device-pixel-ratio: 1) {
        body {
          background: linear-gradient(
            135deg,
            #2d1b4e 0%,
            #4a1a5c 25%,
            #6b2d7a 50%,
            #8b4298 75%,
            #b45bb8 100%
          ) !important;
          background-size: cover !important;
          background-repeat: no-repeat !important;
          background-attachment: scroll !important;
        }
      }

      /* حل للأجهزة المحمولة */
      @media (max-width: 1024px) {
        body {
          background: linear-gradient(
            135deg,
            #2d1b4e 0%,
            #4a1a5c 25%,
            #6b2d7a 50%,
            #8b4298 75%,
            #b45bb8 100%
          ) !important;
          background-size: 100% 100% !important;
          background-repeat: no-repeat !important;
          background-attachment: scroll !important;
        }
      }

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

      :root {
        --primary-bg: #000000;
        --secondary-bg: #1a0d2e;
        --accent-purple: #692c92;
        --text-white: #ffffff;
        --text-gray: #bdc3c7;
        --button-gray: #692c92;
        --dark-gray: #cccccc;
        --header-bg: rgba(105, 44, 146, 0.24);
      }

      body[dir="rtl"] {
        font-family: "Cairo", sans-serif;
        text-align: right;
      }

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

      .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(105, 44, 146, 0.1);
      }

      .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
      }

      .nav-links a {
        color: var(--text-white);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
      }

      .nav-links a:hover {
        color: var(--accent-purple);
      }

      .language-toggle {
        background: var(--text-white);
        border: none;
        color: var(--accent-purple);
        padding: 8px 15px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
      }

      .language-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
      }

      .mobile-menu {
        display: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-white);
      }

      .mobile-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 20px;
        border-top: 1px solid rgba(105, 44, 146, 0.1);
      }

      .mobile-nav.active {
        display: block;
      }

      .mobile-nav ul {
        list-style: none;
        text-align: center;
      }

      .mobile-nav ul li {
        margin: 15px 0;
      }

      .mobile-nav ul li a {
        color: var(--text-white);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding-top: 100px;
      }

      .hero-content {
        text-align: center;
        z-index: 2;
        max-width: 800px;
        padding: 40px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
      }

      .hero h1 {
        font-size: inherit;
        line-height: 1.2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hero h1 .first-line {
        display: block;
        width: 100%;
        font-size: clamp(2rem, 5vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        font-weight: 800;
      }

      .hero h1 .second-line {
        display: block;
        width: 100%;
        font-size: clamp(1.4rem, 3.5vw, 2.3rem);
        line-height: 1.1;
        color: var(--accent-purple);
        white-space: nowrap;
        font-weight: 600;
      }

      .hero-description {
        font-size: 16px;
        color: var(--text-gray);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
      }

      .cta-section {
        margin: 30px 0;
      }

      .cta-image-en,
      .cta-image-ar {
        width: 100vw;
        height: auto;
        margin: 20px 0;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        max-width: 100vw;
        object-fit: cover;
        display: block;
      }

      .cta-image-en {
        display: block;
      }

      .cta-image-ar {
        display: none;
      }

      [dir="rtl"] .cta-image-en {
        display: none;
      }

      [dir="rtl"] .cta-image-ar {
        display: block;
      }

      .cta-brand {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
      }

      .cta-brand-logo {
        width: 300px;
        height: 94px;
        object-fit: contain;
        filter: brightness(1.2) contrast(1.1);
      }

      .companies {
        padding: 40px 0;
        text-align: center;
        overflow: hidden;
        width: 100%;
        backdrop-filter: blur(10px);
      }

      .companies-text {
        font-size: 14px;
        color: var(--text-gray);
        margin-bottom: 30px;
      }

      .companies-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: nowrap;
        opacity: 0.6;
        animation: scrollLogos 20s linear infinite;
        width: 200%;
      }

      @keyframes scrollLogos {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      .company-logo {
        height: 180px;
        width: auto;
        object-fit: contain;
        filter: brightness(0.8) grayscale(0.3);
        transition: all 0.3s ease;
      }

      .company-logo:hover {
        filter: brightness(1) grayscale(0);
        transform: scale(1.1);
      }

      .products {
        padding: 80px 0;
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: bold;
        margin-bottom: 15px;
        color: var(--text-white);
      }

      .section-subtitle {
        font-size: 16px;
        color: var(--text-gray);
        max-width: 500px;
        margin: 0 auto;
      }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
      }

      .product-card {
        background: rgba(26, 13, 46, 0.4);
        border: 1px solid rgba(105, 44, 146, 0.1);
        border-radius: 15px;
        padding: 30px 25px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        height: 100%;
        direction: ltr;
      }

      .product-card:hover {
        transform: translateY(-5px);
        border-color: rgba(105, 44, 146, 0.3);
        background: rgba(26, 13, 46, 0.6);
        box-shadow: 0 10px 30px rgba(105, 44, 146, 0.2);
      }

      /* .product-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
        margin-bottom: 20px;
        align-self: flex-start;
      } */

      /* ========== للإنجليزية - الأيقونة على اليسار ========== */
      [dir="ltr"] .product-icon,
      body[dir="ltr"] .product-icon,
      html[dir="ltr"] .product-icon {
        align-self: flex-start !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
      }

      /* ========== للعربية - الأيقونة على اليمين ========== */
      [dir="rtl"] .product-icon,
      body[dir="rtl"] .product-icon,
      html[dir="rtl"] .product-icon {
        align-self: flex-end !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* ========== للموبايل - الكل في المنتصف ========== */
      @media (max-width: 768px) {
        .product-icon,
        [dir="rtl"] .product-icon,
        [dir="ltr"] .product-icon {
          align-self: center !important;
        }
      }

      .product-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .product-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        overflow: visible; /* مهم للتأثيرات */
        flex-shrink: 0;
        margin-bottom: 20px;
        align-self: flex-start;
        cursor: pointer;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .product-icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle,
          rgba(105, 44, 146, 0.3) 0%,
          transparent 70%
        );
        border-radius: 10px;
        transition: transform 0.4s ease;
        z-index: -1;
      }

      .product-icon:hover::before {
        transform: translate(-50%, -50%) scale(1.5);
      }

      .product-icon:hover {
        transform: scale(1.15) translateY(-5px);
        box-shadow: 0 10px 30px rgba(105, 44, 146, 0.5),
          0 0 20px rgba(105, 44, 146, 0.3);
      }

      .product-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all 0.4s ease;
      }

      .product-icon:hover img {
        filter: brightness(1.2) contrast(1.1);
        transform: scale(1.05);
      }

      .product-icon:active {
        transform: scale(1.05) translateY(-2px);
      }

      /* تأثير للروابط المحيطة بالشعارات */
      a:has(.product-icon) {
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
      }

      /* تأثير خاص لأجهزة اللمس */
      @media (hover: none) {
        .product-icon:active {
          transform: scale(0.95);
          box-shadow: 0 5px 15px rgba(105, 44, 146, 0.4);
        }
      }

      .product-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
        color: var(--text-white);
        align-self: flex-start;
        text-align: left;
        direction: ltr;
        width: 100%;
      }

      .product-description {
        color: var(--text-gray);
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 25px;
        text-align: justify;
        flex-grow: 1;
        align-self: stretch;
        direction: ltr;
      }

      .product-buttons {
        display: flex;
        gap: 12px;
        width: 100%;
        margin-top: auto;
        align-self: stretch;
        direction: ltr;
      }

      /* حل مبسط ومضمون */
      [dir="rtl"] .product-card {
        align-items: flex-end !important; /* 👈 هذا يجعل كل الأطفال على اليمين */
      }

      [dir="rtl"] .product-card > * {
        align-self: flex-end !important;
      }

      [dir="rtl"] .product-icon {
        align-self: flex-end !important;
        margin-left: auto !important;
        margin-right: 0 !important;
      }

      [dir="rtl"] .product-title {
        align-self: flex-end !important;
        text-align: right !important;
        width: 100% !important;
      }

      [dir="rtl"] .product-description {
        text-align: right !important;
        direction: rtl !important;
      }

      [dir="rtl"] .product-buttons {
        flex-direction: row-reverse !important;
        direction: rtl !important;
      }

      .story {
        padding: 80px 0;
        backdrop-filter: blur(10px);
      }

      .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
      }

      [dir="rtl"] .story-content {
        grid-template-columns: 1fr 1fr;
        direction: rtl;
      }

      [dir="rtl"] .story-text {
        order: 1;
        text-align: right;
      }

      [dir="rtl"] .story-image {
        order: 2;
      }

      .story-text h2 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        margin-bottom: 25px;
        color: var(--text-white);
      }

      .story-text p {
        color: var(--text-gray);
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: justify;
      }

      [dir="rtl"] .story-text p {
        text-align: right;
        direction: rtl;
      }

      .story-video {
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(105, 44, 146, 0.2);
        background: rgba(26, 13, 46, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(105, 44, 146, 0.1);
        backdrop-filter: blur(10px);
      }

      .story-video iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      .values {
        padding: 80px 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
      }

      .value-card {
        padding: 25px 15px;
        background: rgba(26, 13, 46, 0.3);
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 1px solid rgba(105, 44, 146, 0.1);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
      }

      [dir="rtl"] .value-card {
        text-align: right;
        direction: rtl;
      }

      .value-card:hover {
        transform: translateY(-3px);
        background: rgba(26, 13, 46, 0.5);
        border-color: rgba(105, 44, 146, 0.3);
        box-shadow: 0 8px 20px rgba(105, 44, 146, 0.2);
      }

      .value-icon {
        width: 50px;
        height: 50px;
        background: var(--accent-purple);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--text-white);
        flex-shrink: 0;
        margin: 0 20px 0 0;
      }

      [dir="rtl"] .value-icon {
        margin: 0 0 0 20px;
      }

      .value-content {
        flex: 1;
      }

      .value-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--text-white);
      }

      .value-description {
        color: var(--text-gray);
        line-height: 1.5;
        font-size: 13px;
        text-align: justify;
      }

      [dir="rtl"] .value-description {
        text-align: right;
        direction: rtl;
      }

/* ========== قسم الأسئلة الشائعة FAQ - الحل النهائي ========== */

.faq {
  padding: 80px 0;
  backdrop-filter: blur(10px);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* بطاقة السؤال */
.faq-item {
  border-bottom: 1px solid rgba(105, 44, 146, 0.1);
  margin-bottom: 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* عنوان السؤال - الإنجليزية (افتراضي) */
.faq-question {
  padding: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  color: var(--text-white);
  gap: 15px;
  direction: ltr; /* مهم للإنجليزية */
}

/* عنوان السؤال - العربية */
[dir="rtl"] .faq-question {
  direction: rtl !important; /* عكس الاتجاه */
  justify-content: space-between !important; /* السهم على اليسار، النص على اليمين */
}

.faq-question:hover {
  color: var(--accent-purple);
}

/* النص داخل السؤال */
.faq-question span {
  flex: 1;
  text-align: left;
}

[dir="rtl"] .faq-question span {
  text-align: right !important;
}

/* السهم */
.faq-question i {
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* دوران السهم عند الفتح */
.faq-answer.active + .faq-question i,
.faq-question.active i {
  transform: rotate(180deg);
}

/* الإجابة */
.faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--text-gray);
  line-height: 1.5;
  font-size: 14px;
  display: none;
  text-align: left;
}

[dir="rtl"] .faq-answer {
  text-align: right !important;
  direction: rtl !important;
}

.faq-answer.active {
  display: block;
  animation: fadeInAnswer 0.3s ease;
}

/* أنيميشن ظهور الإجابة */
@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تحسين للموبايل */
@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
    padding: 18px 15px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 15px 18px 15px;
  }

  .faq-question i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 14px;
    padding: 15px 12px;
    gap: 10px;
  }

  .faq-answer {
    font-size: 12px;
    padding: 0 12px 15px 12px;
    line-height: 1.6;
  }

  .faq-question i {
    font-size: 11px;
  }
}

      .final-cta {
        padding: 80px 0;
        background: rgba(105, 44, 146, 0.42);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
      }

      .final-cta .container {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
        width: 100%;
      }

      [dir="rtl"] .final-cta .container {
        grid-template-columns: auto 1fr;
      }

      .final-cta-content {
        text-align: left;
      }

      [dir="rtl"] .final-cta-content {
        text-align: right;
      }

      .final-cta h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 15px;
        color: var(--text-white);
      }

      .final-cta p {
        font-size: 16px;
        margin-bottom: 0;
        opacity: 0.9;
        color: var(--text-white);
      }

      .final-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .contact {
        padding: 80px 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
      }

      .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: flex-start;
      }

      [dir="rtl"] .contact-content {
        direction: rtl;
      }

      .contact-info {
        background: rgba(26, 13, 46, 0.4);
        padding: 40px;
        border-radius: 15px;
        border: 1px solid rgba(105, 44, 146, 0.1);
        backdrop-filter: blur(10px);
      }

      .contact-info h3 {
        color: var(--accent-purple);
        margin-bottom: 30px;
        font-size: 24px;
      }

      .contact-item {
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        border: 1px solid rgba(105, 44, 146, 0.1);
      }

      .contact-item h4 {
        color: var(--text-white);
        margin-bottom: 10px;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      [dir="rtl"] .contact-item h4 {
        direction: rtl;
      }

      .contact-item p {
        color: var(--text-gray);
        font-size: 14px;
        margin: 5px 0;
      }

      [dir="rtl"] .contact-item p {
        direction: rtl;
        text-align: right;
      }

      .contact-form {
        background: rgba(26, 13, 46, 0.4);
        padding: 40px;
        border-radius: 15px;
        border: 1px solid rgba(105, 44, 146, 0.1);
        backdrop-filter: blur(10px);
      }

      .contact-form h3 {
        color: var(--accent-purple);
        margin-bottom: 10px;
        font-size: 24px;
      }

      .contact-form-desc {
        color: var(--text-gray);
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
      }

      [dir="rtl"] .contact-form-desc {
        text-align: right;
        direction: rtl;
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-white);
        font-weight: 500;
        font-size: 14px;
      }

      [dir="rtl"] .form-group label {
        text-align: right;
      }

      .required {
        color: #ff4444;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        background: rgba(26, 13, 46, 0.8);
        border: 1px solid rgba(105, 44, 146, 0.3);
        border-radius: 8px;
        color: var(--text-white);
        font-size: 14px;
        transition: all 0.3s ease;
        font-family: inherit;
      }

      [dir="rtl"] .form-group input,
      [dir="rtl"] .form-group select,
      [dir="rtl"] .form-group textarea {
        text-align: right;
        direction: rtl;
      }

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

      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-purple);
        background: var(--secondary-bg);
      }

      .form-buttons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
      }

      .btn {
        background: var(--text-white);
        color: var(--accent-purple);
        padding: 12px 30px;
        border: none;
        border-radius: 25px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
        text-transform: uppercase;
      }

      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }

      .btn-service {
        background: var(--button-gray) !important;
        color: var(--text-white) !important;
        border: 2px solid transparent !important;
        font-size: 13px;
        padding: 10px 20px;
        flex: 1;
        transition: all 0.3s ease;
        border-radius: 8px;
        text-transform: none;
      }

      .btn-service:hover {
        background: transparent !important;
        border-color: var(--button-gray) !important;
        color: var(--button-gray) !important;
        transform: translateY(-2px);
      }

      .btn-details {
        background: linear-gradient(135deg, #a024b6, #6f1aa6) !important;
        color: #ffffff !important;
        border: none !important;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 20px;
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 8px;
        text-transform: none;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(160, 36, 182, 0.25);
      }

      .btn-details:hover {
        background: linear-gradient(135deg, #b833cc, #8222c2) !important;
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(160, 36, 182, 0.45);
      }

      .submit-btn {
        flex: 1;
        background: var(--button-gray);
        color: var(--text-white);
        padding: 12px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 15px rgba(105, 44, 146, 0.3);
      }

      .cancel-btn {
        flex: 1;
        background: transparent;
        color: var(--text-gray);
        padding: 12px;
        border: 1px solid var(--text-gray);
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .cancel-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-white);
      }

      .floating-buttons {
        position: fixed;
        right: 20px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
      }

      [dir="rtl"] .floating-buttons {
        right: auto;
        left: 20px;
      }

      .floating-btn {
        position: relative;
        overflow: visible;
        width: 60px;
        height: 60px;
        border: none;
        border-radius: 50%;
        color: var(--text-white);
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(105, 44, 146, 0.4);
        text-decoration: none;
      }

      .floating-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: inherit;
        z-index: -1;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        70% {
          transform: scale(1.3);
          opacity: 0;
        }
        100% {
          transform: scale(1.4);
          opacity: 0;
        }
      }

      .floating-btn:hover::before {
        animation: none;
      }

      .floating-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(105, 44, 146, 0.6);
      }

      .btn-tooltip {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(26, 13, 46, 0.95);
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(105, 44, 146, 0.3);
        backdrop-filter: blur(10px);
      }

      [dir="rtl"] .btn-tooltip {
        right: auto;
        left: 70px;
      }

      .whatsapp-btn {
        background: #25d366;
      }

      .call-btn {
        background: #007bff;
      }

      .footer {
        background: rgba(26, 13, 46, 0.8);
        padding: 50px 0 25px;
        border-top: 1px solid rgba(105, 44, 146, 0.1);
        backdrop-filter: blur(10px);
      }

      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }

      [dir="rtl"] .footer-content {
        direction: rtl;
      }

      .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--accent-purple);
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 8px;
      }

      .footer-section ul li a {
        color: var(--text-gray);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 13px;
      }

      .footer-section ul li a:hover {
        color: var(--text-white);
      }

      .footer-company-info {
        grid-column: 1;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
      }

      .footer-logo img {
        height: 35px;
        width: auto;
        object-fit: contain;
      }

      .footer-logo-text {
        font-size: 20px;
        font-weight: bold;
        color: var(--accent-purple);
      }

      .footer-company-info .company-description {
        color: var(--text-gray);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
      }

      [dir="rtl"] .footer-company-info .company-description {
        text-align: right;
        direction: rtl;
      }

      .footer-contact-info {
        margin-top: 20px;
      }

      .footer-contact-info p {
        color: var(--text-gray);
        font-size: 13px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      [dir="rtl"] .footer-contact-info p {
        direction: rtl;
      }

      .footer-contact-info i {
        color: var(--accent-purple);
        width: 16px;
      }

      .working-hours {
        margin-top: 15px;
      }

      .working-hours h4 {
        color: var(--text-white);
        font-size: 14px;
        margin-bottom: 5px;
      }

      .working-hours p {
        color: var(--text-gray);
        font-size: 13px;
      }

      [dir="rtl"] .working-hours p {
        direction: rtl;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(105, 44, 146, 0.1);
        border: 1px solid rgba(105, 44, 146, 0.3);
        border-radius: 50%;
        color: var(--text-gray);
        font-size: 16px;
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .social-links a:hover {
        background: var(--accent-purple);
        color: var(--text-white);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(105, 44, 146, 0.3);
      }

      .footer-bottom {
        border-top: 1px solid rgba(105, 44, 146, 0.1);
        padding-top: 20px;
        text-align: center;
      }

      .footer-bottom-left {
        color: var(--text-gray);
        font-size: 12px;
      }

      .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      .floating {
        animation: float 4s ease-in-out infinite;
      }

    .modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      -webkit-overflow-scrolling: touch;
    }

      .modal-content {
        background: rgba(26, 13, 46, 0.95);
        margin: 3% auto;
        padding: 25px;
        border-radius: 15px;
        width: 90%;
        max-width: 450px;
        position: relative;
        border: 1px solid rgba(105, 44, 146, 0.3);
        box-shadow: 0 15px 35px rgba(105, 44, 146, 0.3);
        max-height: 85vh;
        overflow-y: auto;
        backdrop-filter: blur(10px);
      }

      .close {
        color: var(--text-gray);
        float: right;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
        position: absolute;
        top: 8px;
        right: 12px;
        z-index: 1;
        -webkit-tap-highlight-color: transparent;
      }

      [dir="rtl"] .close {
        float: left;
        right: auto;
        left: 12px;
      }

      .close:hover {
        color: var(--accent-purple);
      }

      .modal h2 {
        color: var(--accent-purple);
        margin-bottom: 20px;
        font-size: 20px;
        text-align: center;
        padding-top: 5px;
      }

      #successModal .btn {
        background: #28a745 !important;
        color: white !important;
        border: none !important;
        padding: 12px 30px !important;
        border-radius: 25px !important;
        font-size: 14px !important;
        font-weight: bold !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
      }

      #successModal .btn:hover {
        background: #218838 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3) !important;
      }

      #successModal .close {
        position: absolute !important;
        top: 10px !important;
        right: 15px !important;
        font-size: 28px !important;
        font-weight: bold !important;
        cursor: pointer !important;
        color: #aaa !important;
        z-index: 1001 !important;
      }

      #successModal .close:hover {
        color: #28a745 !important;
      }

      [dir="rtl"] #successModal .close {
        right: auto !important;
        left: 15px !important;
      }

      /* RESPONSIVE DESIGN */
      @media (max-width: 768px) {
        .hero h1 .first-line {
          font-size: clamp(1.2rem, 5vw, 2.2rem);
        }

        .hero h1 .second-line {
          font-size: clamp(1.1rem, 4.5vw, 2rem);
        }

        .nav-links {
          display: none;
        }

        .mobile-menu {
          display: block;
        }

        .hero {
          padding-top: 80px;
        }

        .hero-content {
          padding: 30px 20px;
        }

        .hero-description {
          font-size: 14px;
          text-align: center;
        }

        .products-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .product-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        [dir="rtl"] .product-card {
          align-items: center !important;
          text-align: center !important;
        }

        .product-icon {
          align-self: center;
        }

        [dir="rtl"] .product-icon {
          align-self: center !important;
        }

        .product-icon {
          cursor: pointer;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-icon:hover {
          transform: scale(1.1);
          box-shadow: 0 5px 15px rgba(105, 44, 146, 0.4);
        }

        .product-icon:active {
          transform: scale(1.05);
        }

        .product-title {
          align-self: center;
          text-align: center;
        }

        [dir="rtl"] .product-title {
          align-self: center !important;
          text-align: center !important;
        }

        .product-description {
          text-align: center;
        }

        [dir="rtl"] .product-description {
          text-align: center !important;
        }

        .product-buttons {
          flex-direction: column;
          gap: 8px;
        }

        [dir="rtl"] .product-buttons {
          flex-direction: column !important;
        }

        .values-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .value-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        [dir="rtl"] .value-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
          direction: ltr;
        }

        .value-icon {
          margin: 0 0 15px 0;
        }

        [dir="rtl"] .value-icon {
          margin: 0 0 15px 0;
        }

        .value-description {
          text-align: center;
        }

        [dir="rtl"] .value-description {
          text-align: center;
          direction: ltr;
        }

        .story-content {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 30px;
        }

        [dir="rtl"] .story-content {
          grid-template-columns: 1fr;
        }

        [dir="rtl"] .story-text {
          order: unset;
          text-align: center;
        }

        [dir="rtl"] .story-image {
          order: unset;
        }

        .story-text p {
          text-align: center;
        }

        [dir="rtl"] .story-text p {
          text-align: center;
        }

        .story-video {
          height: 200px;
        }

        .contact-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .footer-company-info {
          grid-column: 1;
        }

        .final-cta .container {
          grid-template-columns: 1fr;
          gap: 20px;
          text-align: center;
        }

        [dir="rtl"] .final-cta .container {
          grid-template-columns: 1fr;
        }

        .final-cta-content {
          text-align: center;
        }

        [dir="rtl"] .final-cta-content {
          text-align: center;
        }

        .cta-brand {
          flex-direction: column;
          gap: 10px;
        }

        .cta-brand-logo {
          width: 200px;
          height: 62px;
        }

        .companies-grid {
          gap: 15px;
        }

        .company-logo {
          height: 100px;
        }

        .modal-content {
          margin: 8% auto;
          padding: 20px 15px;
          max-height: 75vh;
        }

        .form-buttons {
          flex-direction: column;
          gap: 8px;
        }

        .floating-buttons {
          right: 15px;
          bottom: 15px;
        }

        [dir="rtl"] .floating-buttons {
          right: auto;
          left: 15px;
        }

        .floating-btn {
          width: 50px;
          height: 50px;
          font-size: 20px;
        }

        .social-links {
          justify-content: center;
        }

        [dir="rtl"] .social-links {
          justify-content: center;
        }
      }

      @media (max-width: 480px) {
        .hero h1 .first-line {
          font-size: clamp(1rem, 6vw, 1.8rem);
          white-space: normal;
        }

        .hero h1 .second-line {
          font-size: clamp(0.9rem, 5.5vw, 1.6rem);
          white-space: normal;
        }

        .hero {
          padding-top: 70px;
        }

        .hero-content {
          padding: 25px 15px;
        }

        .hero-description {
          font-size: 13px;
          line-height: 1.5;
        }

        .section-title {
          font-size: clamp(1.5rem, 4vw, 2rem);
        }

        .section-subtitle {
          font-size: 14px;
        }

        .story {
          padding: 40px 0;
        }

        .story-video {
          height: 180px;
        }

        .story-text h2 {
          font-size: 1.3rem;
        }

        .story-text p {
          font-size: 13px;
          line-height: 1.5;
        }

        .values {
          padding: 60px 0;
        }

        .products {
          padding: 60px 0;
        }

        .contact {
          padding: 60px 0;
        }

        .faq {
          padding: 60px 0;
        }

        .floating-buttons {
          right: 10px;
          bottom: 10px;
        }

        [dir="rtl"] .floating-buttons {
          right: auto;
          left: 10px;
        }

        .container {
          padding: 0 15px;
        }
      }

      @media (max-width: 320px) {
        .hero h1 .first-line {
          font-size: 1.1rem;
          white-space: normal;
        }

        .hero h1 .second-line {
          font-size: 1rem;
          white-space: normal;
        }

        .hero-content {
          padding: 20px 10px;
        }

        .cta-brand-logo {
          width: 150px;
          height: 47px;
        }

        .container {
          padding: 0 10px;
        }
      }

      @media (min-width: 1200px) {
        .cta-brand-logo {
          width: 350px;
          height: 110px;
        }

        .products-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 40px;
        }

        .values-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 40px;
        }

        .hero-content {
          max-width: 900px;
          padding: 50px;
        }
      }

      @media (prefers-color-scheme: dark) {
        .modal-content {
          background: rgba(26, 13, 46, 0.98);
          border: 2px solid rgba(105, 44, 146, 0.4);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
          background: rgba(0, 0, 0, 0.7);
          border: 2px solid rgba(105, 44, 146, 0.4);
        }

        .contact-form,
        .contact-info {
          background: rgba(26, 13, 46, 0.6);
          border: 2px solid rgba(105, 44, 146, 0.2);
        }

        .product-card {
          background: rgba(26, 13, 46, 0.6);
          border: 2px solid rgba(105, 44, 146, 0.2);
        }

        .value-card {
          background: rgba(26, 13, 46, 0.5);
          border: 2px solid rgba(105, 44, 146, 0.2);
        }

        .faq-item {
          background: rgba(0, 0, 0, 0.6);
          border: 2px solid rgba(105, 44, 146, 0.2);
        }
      }

      @media (prefers-color-scheme: light) {
        .hero h1 {
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .hero-description {
          text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .section-title,
        .nav-links a,
        .value-title,
        .product-title {
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
      }
      .logo-link {
          display: flex;
          align-items: center;
          text-decoration: none;
          transition: all 0.3s ease;
          cursor: pointer;
        }
        
        .logo-link:hover {
          opacity: 0.8;
          transform: scale(1.05);
        }
        
        .logo-link img {
          transition: all 0.3s ease;
        }