/* ====== Header ====== */
.header {
    background-color: var(--light-color);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  /* ====== Services Hero ====== */
  .services-hero {
    background: url('https://cayanjo.com/wp-content/uploads/2023/01/%D9%83%D9%8A%D8%A7%D9%86-%D9%84%D8%AA%D8%B5%D9%85%D9%8A%D9%85-%D8%A7%D9%84%D9%85%D9%88%D9%82%D8%B9-%D8%A7%D9%84%D8%A7%D9%84%D9%83%D8%AA%D8%B1%D9%88%D9%86%D9%8A%D8%A9.jpg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 180px 0 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  /* نظام الجسيمات */
  .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
  }
  
  /* جسيمات عائمة إضافية */
  .floating-particle {
    position: absolute;
    pointer-events: none;
    z-index: 2;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px) translateX(0px) rotate(0deg);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100vh) translateX(100px) rotate(360deg);
      opacity: 0;
    }
  }
  
  /* تأثيرات إضافية للجسيمات */
  .particle-glow {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    to {
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
  }
  
  .services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%); */
    z-index: 1;
    background-color: #9c5fff6e;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  }
  
  .services-hero .container {
    position: relative;
    z-index: 2;
  }
  
  .services-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
  }
  
  .services-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .services-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* ====== حقل البحث المباشر ====== */
  .service-search-container {
    margin: 0 auto 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 3;
  }

  .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
  }
  
  /* تأثيرات جسيمات للبحث */
  .search-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .search-wrapper:focus-within::before {
    opacity: 1;
    animation: searchGlow 2s ease-in-out infinite;
  }
  
  @keyframes searchGlow {
    0%, 100% {
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
    50% {
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
  }

  .search-icon {
    color: white;
    font-size: 1rem;
    margin-left: 12px;
    opacity: 0.9;
  }

  .service-search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    width: 100%;
    padding: 1px 0;
    outline: none;
  }

  .service-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
  }

  .clear-search {
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.7;
    margin-right: 5px;
    transition: all 0.2s ease;
    display: none;
  }

  .clear-search:hover {
    opacity: 1;
    transform: scale(1.1);
  }

  .clear-search.visible {
    display: block;
  }

  /* ====== فلاتر الخدمات المحدثة ====== */
  .category-filter-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    position: relative;
    padding: 5px 0;
    z-index: 3;
    scrollbar-width: none; /* للمتصفحات التي تدعم Firefox */
    -ms-overflow-style: none; /* لـ IE و Edge */
  }

  .category-filter-wrapper::-webkit-scrollbar {
    display: none; /* لـ Chrome و Safari */
  }

  .category-pills {
    display: flex;
    padding: 0 15px;
    gap: 10px;
    min-width: max-content;
    padding-bottom: 5px;
  }

  .category-pill {
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .category-pill i {
    font-size: 0.75rem;
    opacity: 0.9;
  }

  .category-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .category-pill.active {
    background: white;
    color: #333;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
  }
  
  /* تأثيرات جسيمات للفلاتر */
  .category-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .category-pill:hover::before {
    opacity: 1;
  }
  
  .category-pill.active::before {
    opacity: 1;
    animation: filterGlow 2s ease-in-out infinite;
  }
  
  @keyframes filterGlow {
    0%, 100% {
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    }
    50% {
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    }
  }

  /* ====== Service Filters ====== */
  .service-filters-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .filter-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-btn.active {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .filter-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* ====== Services Container ====== */
  .services-container {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  /* ====== Service Card ====== */
  .service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }
  
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* تأثيرات جسيمات للبطاقات */
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  /* جسيمات متحركة في البطاقات */
  .service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
  }
  
  .service-card:hover::after {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
  }
  
  @keyframes cardGlow {
    0%, 100% {
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
    50% {
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
  }
  
  /* ====== Service Image ====== */
  .service-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
  }
  
  .service-card:hover .service-image {
    transform: scale(1.02);
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 5.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 100%;
    max-height: 100%;
}
  
  .service-card:hover .service-image img {
    transform: scale(1.2);
  }
  
  /* ====== Featured Badge ====== */
  .service-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
  }
  
  .service-featured-badge i {
    margin-left: 5px;
    font-size: 0.8rem;
  }
  
  /* ====== Service Price Badge ====== */
  .service-price {
      position: absolute;
      bottom: 4px;
      right: 208px;
      /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); */
      color: #000000;
      padding: 4px 12px;
      border-radius: 36px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      z-index: 2;
      transition: transform 0.3s ease;
  }
  
  /* ====== Service Body ====== */
  .service-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    min-height: 3rem;
  }
  
  /* ====== Service Description ====== */
  .service-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .service-category {
      position: absolute;
      top: 10px;
      left: 131px;
      background-color: rgb(0 0 0 / 67%);
      color: #ffffff;
      padding: 1px 10px;
      border-radius: 20px;
      font-size: 0.6rem;
      font-weight: 600;
      z-index: 10;
  }
  /* ====== Service Features List (in modal) ====== */
  .service-features ul,
  .modal-service-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  
  .service-features ul li,
  .modal-service-features ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-right: 20px;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .service-features ul li::before,
  .modal-service-features ul li::before {
    content: "\f00c";
    font-family: var(--secondary-font);
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    right: 0;
    font-size: 0.8rem;
  }
  
  /* ====== Service Buttons ====== */
  .service-buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }
  
  .service-details-btn,
  .service-book-btn {
    padding: 8px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }
  
  .service-details-btn {
    background-color: #2c3e50;
    color: white;
    border: 1px solid #2c3e50;
  }
  
  .service-book-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
  }
  
  .service-details-btn i,
  .service-book-btn i {
    margin-left: 5px;
    font-size: 0.85rem;
  }
  
  .service-details-btn:hover,
  .service-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
  }
  
  /* تأثيرات جسيمات للأزرار */
  .service-details-btn::before,
  .service-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .service-details-btn:hover::before,
  .service-book-btn:hover::before {
    left: 100%;
  }
  
  /* تأثير توهج للأزرار */
  .service-details-btn:hover,
  .service-book-btn:hover {
    animation: buttonPulse 1s ease-in-out infinite;
  }
  
  @keyframes buttonPulse {
    0%, 100% {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    50% {
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 10px rgba(255, 255, 255, 0.3);
    }
  }
  
  .service-details-btn:hover {
    background-color: #34495e;
    color: white;
  }
  
  .service-book-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: white;
  }
  
  /* ====== Modal Overlay ====== */
  .service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .service-modal.show {
    opacity: 1;
  }
  
  /* ====== Modal Content ====== */
  .service-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    margin: 50px auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
  }
  
  .service-modal.show .service-modal-content {
    transform: translateY(0);
  }
  
  /* ====== Modal Close Button ====== */
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 50;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
  }
  
  .close-modal:hover {
    transform: scale(1.2);
  }
  
  /* ====== Modal Header (Image + Badges) ====== */
  .modal-header {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .modal-service-badge,
  .modal-service-category {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  .modal-service-badge {
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
  }
  
  .modal-service-badge i {
    margin-left: 5px;
  }
  
  .modal-service-category {
    left: 20px;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* ====== Modal Title & Price ====== */
  .modal-service-title {
    padding: 20px 30px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color-dark);
    text-align: right;
    margin-bottom: 0;
  }
  
  .modal-service-price {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* ====== Modal Description ====== */
  .modal-service-description {
    padding: 10px 30px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    text-align: right;
  }
  
  /* ====== Modal Features Section ====== */
  .modal-service-features {
    padding: 10px 30px;
    margin-top: 10px;
  }
  
  .modal-service-features h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-right: 15px;
  }
  
  .modal-service-features h3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
  }
  
  /* ====== Modal Actions (Buttons) ====== */
  .modal-actions {
    display: flex;
    padding: 20px 30px 30px;
    gap: 15px;
  }
  
  .modal-book-btn,
  .modal-contact-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    text-decoration: none;
  }
  
  .modal-book-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: white;
  }
  
  .modal-contact-btn {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .modal-book-btn:hover,
  .modal-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .modal-contact-btn:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
  }
  
  .modal-book-btn i,
  .modal-contact-btn i {
    margin-left: 8px;
    font-size: 1rem;
  }
  
  /* ====== Service Footer ====== */
  .service-footer {
    padding: 0 20px 20px;
  }
  
  /* ====== Service Button (Legacy) ====== */
  .service-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 19px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
  }
  
  .service-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 75, 140, 0.2);
  }
  
  /* ====== Empty Services Message ====== */
  .empty-services {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px auto;
    max-width: 600px;
  }
  
  .empty-services i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
  }
  
  .empty-services h3 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 15px;
  }
  
  .empty-services p {
    color: #777;
    margin-bottom: 0;
  }
  
  /* ====== No Results Message ====== */
  .no-results {
    display: block;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px auto;
    max-width: 600px;
  }
  
  .no-results i {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0px;
    opacity: 0.3;
}
  
  .no-results h3 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .no-results p {
    color: #777;
    margin-bottom: 15px;
  }
  
  .no-results .category-pill {
    display: inline-flex;
    background: var(--primary-color);
    color: white;
    margin: 0 auto;
  }
  
  /* ====== Contact CTA ====== */
  .contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
  }
  
  .contact-cta::before,
  .contact-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
  }
  
  .contact-cta::before {
    top: -150px;
    right: -100px;
  }
  
  .contact-cta::after {
    bottom: -150px;
    left: -100px;
  }
  
  .contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .contact-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
  }
  
  .contact-cta .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .contact-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  /* ====== Responsive Breakpoints ====== */
  @media (max-width: 991px) {
    .service-image {
      height: 160px;
    }
    .modal-header {
      height: 200px;
    }
    .modal-service-title {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .service-image {
      height: 140px;
    }
    .service-title {
      font-size: 1rem;
      min-height: 2.5rem;
    }
    .service-price {
      font-size: 14px;
      bottom: 110px;
    }
    .service-details-btn,
    .service-book-btn {
      padding: 3px 10px;
      font-size: 0.75rem;
    }
    .service-details-btn i,
    .service-book-btn i {
      font-size: 0.75rem;
    }
    .modal-header {
      height: 160px;
    }
    .modal-service-title {
      font-size: 1.3rem;
      padding: 15px 20px 0;
    }
    .modal-service-price {
      margin: 10px 20px;
      font-size: 1rem;
    }
    .modal-service-description {
      padding: 10px 20px;
    }
    .modal-service-features {
      padding: 5px 20px;
    }
    .modal-actions {
      padding: 15px 20px 20px;
    }
    .modal-book-btn,
    .modal-contact-btn {
      padding: 10px 15px;
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 575px) {
    .services-hero h1 {
      font-size: 2rem;
    }
    
    .services-hero {
      background-attachment: scroll;
    }
    
    /* تحسين الجسيمات للشاشات الصغيرة */
    #particles-js {
      opacity: 0.5;
    }
    
    .floating-particle {
      display: none;
    }
    
    /* تقليل التأثيرات للشاشات الصغيرة */
    .service-card::before,
    .service-card::after {
      display: none;
    }
    
    .category-pill::before {
      display: none;
    }
    
    .search-wrapper::before {
      display: none;
    }
    .service-image {
      height: 120px;
    }
    .service-price {
      font-size: 0.7rem;
      padding: 1px 5px;
      top: auto;
      bottom: 3px;
      left: 114px;
    }
    .service-body {
      padding: 15px;
    }
    .service-details-btn,
    .service-book-btn {
      font-size: 0.7rem;
    }
    .modal-header {
      height: 130px;
    }
    .modal-service-badge,
    .modal-service-category {
      font-size: 0.8rem;
      padding: 3px 10px;
    }
    .service-modal-content {
      width: 95%;
    }
    .modal-actions {
      flex-direction: column;
      gap: 10px;
    }
    .close-modal {
      top: 10px;
      right: 15px;
    }
  }
  
  