  :root {
      --primary: #1a3a6d;
      --secondary: #e9b44c;
      --dark: #2c3e50;
      --light: #f8f9fa;
      --gray: #6c757d;
      --success: #28a745;
            --whatsapp: #25D366;
            --phone: #34B7F1;
            --email: #EA4335;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Tajawal', sans-serif;
  }

  body {
      background-color: #f5f7fa;
      color: #333;
      line-height: 2.6;
      overflow-x: hidden;
  }

  /* التصميم العام */
  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }

  .section {
      padding: 80px 0;
  }

  .section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
  }

  .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
      font-weight: 700;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
  }

  .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
  }

  .btn-primary {
      background: var(--primary);
      color: white;
  }

  .btn-primary:hover {
      background: #0f2a4d;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-secondary {
      background: var(--secondary);
      color: var(--dark);
  }

  .btn-secondary:hover {
      background: #d19e3a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* الهيدر */
  header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
  }

  .header-scrolled {
      padding: 5px 0;
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
  }

  .logo {
      display: flex;
      align-items: center;
  }

  .logo img {
      height: 60px;
      margin-right: 10px;
  }

  .logo h1 {
      font-size: 1.8rem;
      color: var(--primary);
      font-weight: 800;
  }

  .logo span {
      color: var(--secondary);
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin: 0 10px;
  }

  nav ul li a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 600;
      font-size: 1.1rem;
      padding: 8px 15px;
      border-radius: 4px;
      transition: all 0.3s ease;
      position: relative;
  }

  nav ul li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: width 0.3s ease;
  }

  nav ul li a:hover::after,
  nav ul li a.active::after {
      width: 100%;
  }

  nav ul li a:hover,
  nav ul li a.active {
      color: var(--primary);
  }

  .header-actions {
      display: flex;
      align-items: center;
  }

  .search-box {
      position: relative;
      margin-right: 15px;
  }

  .search-box input {
      padding: 10px 15px;
      padding-right: 40px;
      border: 1px solid #ddd;
      border-radius: 4px;
      width: 250px;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .search-box input:focus {
      width: 280px;
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(26, 58, 109, 0.1);
  }

  .search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray);
  }

  .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      margin-left: 15px;
  }


   /* زر تغيير اللغة - محسّن */
        .language-switcher {
            margin-right: 15px;
            position: relative;
        }

        .language-btn {
            background: var(--light);
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .language-btn:hover {
            background: var(--primary);
            color: white;
        }

        .language-btn i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        .language-options {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            display: none;
            z-index: 1000;
        }

        .language-option {
            padding: 10px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .language-option:hover {
            background: var(--primary);
            color: white;
        }

        .language-option.active {
            background: var(--light);
            color: var(--primary);
            font-weight: 600;
        }

        .language-switcher:hover .language-options {
            display: block;
        }


  /* الهيرو سيكشن مع سلايدر */
  .hero-slider {
      position: relative;
      height: 80vh;
      overflow: hidden;
  }

  .swiper {
      width: 100%;
      height: 100%;
  }

  .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
  }

  .swiper-slide::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  }

  .slide-1 {
      background-image: url('../../assets/images/banar.jpeg');
  }

  .slide-2 {
      background-image: url('../../assets/images/banar2.jpg');
  }

  .slide-3 {
      background-image: url('../../assets/images/banar3.jpg');
  }

  .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      padding: 0 20px;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;
  }

  .swiper-slide-active .hero-content {
      opacity: 1;
      transform: translateY(0);
  }

  .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 800;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }

  .hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
  }

  .swiper-button-next,
  .swiper-button-prev {
      color: white;
      background: rgba(0, 0, 0, 0.3);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
      font-size: 1.5rem;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
      background: var(--secondary);
  }

  .swiper-pagination-bullet {
      background: white;
      opacity: 0.5;
      width: 12px;
      height: 12px;
  }

  .swiper-pagination-bullet-active {
      background: var(--secondary);
      opacity: 1;
  }

  /* الفئات */
  .categories {
      background-color: white;
  }

  .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .category-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 30px 20px;
      opacity: 0;
      transform: translateY(50px);
  }

  .category-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .category-icon {
      font-size: 3.5rem;
      color: var(--secondary);
      margin-bottom: 20px;
      transition: transform 0.3s ease;
  }

  .category-card:hover .category-icon {
      transform: scale(1.1) rotate(5deg);
  }

  .category-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--primary);
  }

  /* المنتجات */
  .products-filter {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      flex-wrap: wrap;
  }

  .filter-btn {
      background: white;
      border: 1px solid #ddd;
      padding: 8px 20px;
      margin: 5px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .filter-btn:hover,
  .filter-btn.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
  }

  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
  }

  .product-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      transform: translateY(50px);
  }

  .product-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .product-img {
      height: 200px;
      overflow: hidden;
      position: relative;
  }

  .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .product-card:hover .product-img img {
      transform: scale(1.1);
  }



  .product-info {
      padding: 20px;
  }

  .product-category {
      color: var(--gray);
      font-size: 0.9rem;
      margin-bottom: 5px;
  }

  .product-title {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--primary);
  }

  .product-desc {
      color: var(--gray);
      margin-bottom: 15px;
      font-size: 0.95rem;
  }

  .product-price {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 15px;
  }

  .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .product-rating {
      color: var(--secondary);
  }

  /* قسم الموقع */
  .location {
      background-color: #f8f9fa;
  }

  .location-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
  }

  .map-container {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 400px;
  }

  .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
  }

  .location-info {
      padding: 20px;
  }

  .location-info h3 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 20px;
  }

  .address {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
  }

  .address-icon {
      background: var(--primary);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-right: 15px;
      flex-shrink: 0;
  }

  .address-text {
      flex: 1;
  }

  .address-text h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: var(--dark);
  }

  .address-text p {
      color: var(--gray);
      line-height: 1.6;
  }

  .working-hours {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
  }

  .working-hours h4 {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
  }

  .working-hours h4 i {
      margin-right: 10px;
  }

  .hours-list {
      list-style: none;
  }

  .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #eee;
  }

  .hours-list li:last-child {
      border-bottom: none;
  }

  .day {
      color: var(--dark);
      font-weight: 500;
  }

  .time {
      color: var(--gray);
  }

  .get-directions {
      display: inline-flex;
      align-items: center;
      background: var(--secondary);
      color: var(--dark);
      padding: 12px 25px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .get-directions:hover {
      background: #d19e3a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .get-directions i {
      margin-left: 8px;
  }

  /* عن الشركة */
  .about {
      background: linear-gradient(to left, var(--primary), #2c5282);
      color: white;
  }

  .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
  }

  .about-img {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transform: translateX(-50px);
      transition: all 1s ease;
  }

  .about-img.animate {
      opacity: 1;
      transform: translateX(0);
  }

  .about-img img {
      width: 100%;
      height: auto;
      display: block;
  }

  .about-text {
      opacity: 0;
      transform: translateX(50px);
      transition: all 1s ease;
  }

  .about-text.animate {
      opacity: 1;
      transform: translateX(0);
  }

  .about-text h2 {
      color: white;
      margin-bottom: 20px;
  }

  .about-text p {
      margin-bottom: 20px;
      font-size: 1.1rem;
      line-height: 1.8;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
  }

  .stat-box {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 8px;
      transition: transform 0.3s ease;
  }

  .stat-box:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
  }

  .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--secondary);
  }

  /* قسم العملاء */
  .clients {
      background-color: white;
  }

  .clients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 40px;
      align-items: center;
      justify-items: center;
  }

  .client-logo {
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
      max-width: 120px;
      max-height: 80px;
      width: auto;
      height: auto;
  }

  .client-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
  }

  /* قسم المميزات */
  .features {
      background-color: #f8f9fa;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .feature-card {
      background: white;
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(50px);
  }

  .feature-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
      font-size: 3rem;
      color: var(--secondary);
      margin-bottom: 20px;
  }

  .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--primary);
  }


  /* لماذا تختارنا */
  .why-us {
      background-color: white;
  }

  .why-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .why-us-item {
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
      margin-bottom: 20px;
  }

  .why-us-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .why-us-icon {
      font-size: 40px;
      color: var(--secondary-color);
      margin-bottom: 20px;
  }

  /* قسم الأسئلة الشائعة */
  .faq {
      background-color: white;
  }

  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease;
  }

  .faq-item.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .faq-question {
      padding: 20px;
      background: var(--primary);
      color: white;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1.1rem;
  }

  .faq-answer {
      padding: 0;
      background: white;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 500px;
  }

  .faq-item.active .faq-toggle i {
      transform: rotate(180deg);
  }

  .faq-toggle {
      transition: all 0.3s ease;
  }

  /* نموذج طلب */
  .request-form {
      background-color: white;
  }

  .form-container {
      max-width: 800px;
      margin: 0 auto;
      background: white;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .form-group {
      margin-bottom: 25px;
      position: relative;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--dark);
  }

  .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
  }

  .form-control:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(26, 58, 109, 0.1);
  }

  textarea.form-control {
      min-height: 150px;
      resize: vertical;
  }

  .form-message {
      margin-top: 5px;
      font-size: 0.85rem;
      display: none;
  }

  .form-group.error .form-control {
      border-color: #dc3545;
  }

  .form-group.error .form-message {
      color: #dc3545;
      display: block;
  }

  .form-group.success .form-control {
      border-color: #28a745;
  }
  /* مسار التنقل */
        .breadcrumb {
            padding: 20px 0;
            background: #f1f5f9;
            margin-bottom: 30px;
        }
        
        .breadcrumb-content {
            display: flex;
            align-items: center;
            font-size: 1rem;
        }
        
        .breadcrumb-content a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb-content a:hover {
            color: var(--secondary);
        }
        
        .breadcrumb-content span {
            margin: 0 10px;
            color: var(--gray);
        }
        
        /* تفاصيل المنتج */
        .product-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .product-gallery {
            position: relative;
        }
        
        .main-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            background: white;
            padding: 20px;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .thumbnail {
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 10px;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: var(--secondary);
        }
        
        .product-badge {
            position: absolute;
            top: 30px;
            left: 30px;
            background: var(--secondary);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        .product-info {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .product-category {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 700;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .stars {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .rating-count {
            color: var(--gray);
            margin-left: 15px;
        }
        
        .product-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        
        .old-price {
            font-size: 1.5rem;
            color: var(--gray);
            text-decoration: line-through;
            margin-left: 15px;
        }
        
        .product-description {
            color: var(--dark);
            margin-bottom: 30px;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .product-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
        }
        
        .meta-icon {
            width: 40px;
            height: 40px;
            background: rgba(26, 58, 109, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
        }
        
        .meta-text h4 {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 5px;
        }
        
        .meta-text p {
            font-weight: 600;
            color: var(--dark);
        }
        
        .product-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .quantity {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #ddd;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e9ecef;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .quantity-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: none;
            background: transparent;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .wishlist-btn {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: var(--dark);
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-btn:hover {
            color: #dc3545;
            border-color: #dc3545;
        }
        
        .action-btn {
            flex: 1;
            min-width: 200px;
            text-align: center;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .facebook { background: #3b5998; }
        .twitter { background: #1da1f2; }
        .whatsapp { background: #25d366; }
        .linkedin { background: #0077b5; }
        
        .share-btn:hover {
            transform: translateY(-5px);
        }
        
        /* المواصفات الفنية */
        .specifications {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table tr {
            border-bottom: 1px solid #eee;
        }
        
        .specs-table tr:last-child {
            border-bottom: none;
        }
        
        .specs-table td {
            padding: 15px 10px;
        }
        
        .specs-table td:first-child {
            font-weight: 600;
            color: var(--primary);
            width: 30%;
        }
        
        /* المنتجات ذات الصلة */
        .related-products {
            margin-top: 60px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-info-card {
            padding: 20px;
        }
        
        .product-category-card {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .product-title-card {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .product-price-card {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        

  /* فوتر */
  footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 30px;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-bottom: 40px;
  }

  .footer-column h3 {
      font-size: 1.4rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary);
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--secondary);
  }

  .contact-info li {
      display: flex;
      margin-bottom: 15px;
      align-items: flex-start;
  }

  .contact-info i {
      color: var(--secondary);
      margin-left: 10px;
      font-size: 1.2rem;
      margin-top: 5px;
  }

  .social-links {
      display: flex;
      margin-top: 20px;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      margin-left: 10px;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background: var(--secondary);
      transform: translateY(-5px);
  }

  .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #bbb;
      font-size: 0.9rem;
  }

  /* تنسيقات أزرار الطفو */
        .floating-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
        }

        .floating-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .floating-btn:hover {
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        .back-to-top {
            bottom: 30px;
            right: 30px;
            background: var(--secondary);
        }

        .back-to-top:hover {
            background: var(--primary);
        }


         .back-to-quote {
            bottom: 110px;
            right: 30px;
             width: 45px;
            height: 45px;
            background: var(--light);
        }

        .back-to-quote:hover {
            background: #5672cc;
        }

        .back-to-whatsapp {
            bottom: 30px;
            left: 30px;
            background: var(--whatsapp);
        }

        .back-to-whatsapp:hover {
            background: #128C7E;
        }

        .back-to-email {
            bottom: 110px;
            left: 30px;
            width: 45px;
            height: 45px;
            background: var(--secondary);
        }

        .back-to-email:hover {
            background: #ffce5c;
        }

        .back-to-phone {
            bottom: 190px;
            left: 30px;
            width: 45px;
            height: 45px;
            background: var(--phone);
        }

        .back-to-phone:hover {
            background: #1A73E8;
        }


     .back-to-phone2 {
            bottom: 270px;
            left: 30px;
             width: 45px;
            height: 45px;
            background: var(--phone);
        }

        .back-to-phone2:hover {
            background: #1A73E8;
        }
        /* تأثيرات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
            }
            
            .back-to-whatsapp {
                bottom: 20px;
                left: 20px;
            }
            
            .back-to-email {
                bottom: 85px;
                left: 20px;
            }
            
            .back-to-phone {
                bottom: 150px;
                left: 20px;
            }
              .back-to-phone2 {
                bottom: 210px;
                left: 20px;
            }
        }


  /* إخفاء زر اللغة المخصص للموبايل على شاشات الديسكتوب */
  .mobile-language-switcher {
      display: none;
  }
        /* نموذج طلب */
        .request-form {
            background-color: white;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 58, 109, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

     
        .fixed-quote-btn {
            position: fixed;
            bottom: 85px;
            right: 30px;
            z-index: 1000;
            padding: 15px 25px;
            font-weight: bold;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
  /* التجاوب */
  @media (max-width: 992px) {
      .footer-content {
          grid-template-columns: repeat(2, 1fr);
      }
  .product-detail {
                grid-template-columns: 1fr;
            }
       
            .main-image {
                height: 400px;
            }
      .location-content {
          grid-template-columns: 1fr;
      }

      .map-container {
          height: 300px;
      }

      .about-content {
          grid-template-columns: 1fr;
      }

      .about-img {
          max-width: 80%;
          margin: 0 auto;
      }

      .hero h1 {
          font-size: 2.8rem;
      }
  }

  @media (max-width: 768px) {
      .mobile-toggle {
          display: block;
      }

      nav {
          position: fixed;
          top: 90px;
          left: -100%;
          background: white;
          width: 280px;
          height: calc(100vh - 90px);
          transition: all 0.4s ease;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          z-index: 1000;
      }

      nav.active {
          left: 0;
      }

      nav ul {
          flex-direction: column;
          padding: 20px;
      }

      nav ul li {
          margin: 10px 0;
      }

      .search-box {
          display: none;
      }

      .search-box.mobile-visible {
          display: block;
          width: 100%;
          margin: 15px 0;
      }

      .search-box.mobile-visible input {
          width: 100%;
      }

      .hero h1 {
          font-size: 2.5rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .section {
          padding: 60px 0;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      /* تحسينات خاصة بزار اللغة على الهواتف */
      .header-actions {
          display: flex;
          align-items: center;
      }

      .language-switcher {
          margin-right: 10px;
          order: 2;
      }

      .language-btn {
          padding: 12px;
          font-size: 0.9rem;
      }

      .language-btn span {
          display: none;
      }

      .language-btn i {
          margin-right: 0;
          font-size: 1.3rem;
      }

      .language-options {
          right: auto;
          left: 0;
          width: 120px;
      }

      .mobile-search-toggle {
          display: block;
          margin-right: 10px;
          font-size: 1.3rem;
          cursor: pointer;
          color: var(--dark);
      }

      .address {
          flex-direction: column;
          align-items: flex-start;
      }

      .address-icon {
          margin-right: 0;
          margin-bottom: 15px;
      }

      .search-box input {
          width: 200px;
      }




      .stats-grid {
          grid-template-columns: 1fr;
      }

      .form-container {
          padding: 30px 20px;
      }

      .footer-content {
          grid-template-columns: 1fr;
      }

      .swiper-button-next,
      .swiper-button-prev {
          display: none;
      }
   
            .product-meta {
                grid-template-columns: 1fr;
            }
            
            .main-image {
                height: 300px;
            }
            
            .thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
  }

  @media (max-width: 576px) {
      .search-box input {
          width: 150px;
      }



      .products-grid {
          grid-template-columns: 1fr;
      }

      .clients-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .features-grid {
          grid-template-columns: 1fr;
      }


      .logo h1 {
          font-size: 1.5rem;
      }

      .hero h1 {
          font-size: 2rem;
      }

      .products-grid {
          grid-template-columns: 1fr;
      }

      .footer-content {
          grid-template-columns: 1fr;
      }

      /* تحسينات إضافية لزار اللغة على الهواتف الصغيرة */
      .language-btn {
          padding: 10px;
      }

      .language-btn i {
          font-size: 1.2rem;
      }

      .location-info h3 {
          font-size: 1.5rem;
      }
         
            .thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }
  }

  /* تحسينات للقائمة المتنقلة على الهواتف */
  .mobile-nav-header {
      display: none;
  }

  @media (max-width: 768px) {
      .mobile-nav-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 15px 20px;
          border-bottom: 1px solid #eee;
      }

      .mobile-nav-logo {
          font-size: 1.2rem;
          font-weight: 700;
          color: var(--primary);
      }

      .mobile-nav-close {
          font-size: 1.5rem;
          cursor: pointer;
      }

      nav {
          top: 0;
          height: 100vh;
          width: 80%;
          max-width: 300px;
      }

      nav ul {
          padding-top: 50px;
      }

      /* إضافة زر اللغة في القائمة المتنقلة */
      .mobile-language-switcher {
          display: block;
          padding: 20px;
          border-top: 1px solid #eee;
          margin-top: auto;
      }

      .mobile-language-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          background: var(--primary);
          color: white;
          padding: 12px;
          border-radius: 4px;
          cursor: pointer;
          font-weight: 600;
      }

      .mobile-language-btn i {
          margin-right: 8px;
      }

      .language-switcher {
          display: none;
      }

  }