


  /* تحسين الـ Hero Section */
  .hero-premium {
    position: relative;
    padding: 160px 5% 100px;
    background: radial-gradient(circle at top right, rgba(225,29,72,0.05), transparent),
                radial-gradient(circle at bottom left, rgba(15,23,42,0.05), transparent),
                #ffffff;
    overflow: hidden;
    text-align: center;
  }

  .hero-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,29,72,0.2), transparent);
  }

  .floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
  }

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

  /* تصميم الكروت المطور */
  .custom-card {
    background: white;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
  }

  .custom-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -12px rgba(15,23,42,0.15);
    border-color: var(--primary);
  }

  .image-container {
    height: 280px;
    border-radius: 28px;
    margin: 12px;
    overflow: hidden;
    position: relative;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
  }

  .custom-card:hover .image-container img {
    transform: scale(1.15);
  }

  .status-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
  }

  /* أزرار أكشن احترافية */
  .action-btn {
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .btn-primary-gradient {
    background: var(--primary);
    color: white;
  }

  .btn-primary-gradient:hover {
    background: var(--secondary);
    box-shadow: 0 10px 20px rgba(225,29,72,0.3);
    color: white;
  }

  .btn-outline {
    background: transparent;
    border: 2px solid #f1f5f9;
    color: var(--secondary);
  }

  .btn-outline {
    background: #f8fafc;
    border-color: var(--secondary);
  }
    .btn-outline:hover {
    background: #edf6ff;
    border-color: var(--secondary);
  }
  /* عرض العروض المطور */
  .offer-card {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
  }

  .price-tag {
    background: var(--primary);
    color: white;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
  }

  .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.8em;
    display: block;
  }

  /* أنيميشن الظهور */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* تحسين العناوين */
  .section-title {
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 5px;
    background: var(--primary);
    border-radius: 10px;
  }
