.ziyarah-wrapper-z {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-image: url('../images/baghdad_sh_bg.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      position: relative;
      overflow-x: hidden;
    }
 .ziyarah-wrapper-z::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 77, 104, 0.85) 0%, rgba(8, 131, 149, 0.9) 50%, rgba(5, 191, 219, 0.85) 100%);
      animation: shimmer-z 8s ease-in-out infinite;
    }

    .ziyarah-wrapper-z::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 50%, rgba(5, 191, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(8, 131, 149, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(10, 77, 104, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    @keyframes shimmer-z {
      0%, 100% { 
        background: linear-gradient(135deg, rgba(10, 77, 104, 0.75) 0%, rgba(8, 131, 149, 0.8) 50%, rgba(5, 191, 219, 0.75) 100%);
      }
      50% { 
        background: linear-gradient(135deg, rgba(10, 77, 104, 0.7) 0%, rgba(8, 131, 149, 0.8) 50%, rgba(5, 191, 219, 0.8) 100%);
      }
    }

    .main-container-z {
      max-width: 900px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .ziyarah-card-z {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
      backdrop-filter: blur(30px);
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(5, 191, 219, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      animation: cardEntrance-z 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes cardEntrance-z {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Hero Header with Image */
    .hero-header-z {
      position: relative;
      height: 400px;
      overflow: hidden;
    }

    .hero-image-z {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* transform: scale(1.2); */
      /* transition: transform 0.1s ease-out; */
    }

    .hero-overlay-z {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
      );
    }

    .hero-content-z {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px;
      color: white;
      /* animation: fadeInUp-z 1s ease-out 0.3s backwards; */
    }

    .hero-title-z {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 12px;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      background: linear-gradient(135deg, #05BFDB 0%, #00D9FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
    }

    .hero-subtitle-z {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.98);
      opacity: 0.95;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* Card Body */
    .card-body-z {
      padding: 48px;
    }

    /* Section Title */
    .section-title-z {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 32px;
      position: relative;
      display: inline-block;
    }

    .section-title-z::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, #05BFDB, #088395);
      border-radius: 2px;
    }

    /* Timeline */
    .timeline-z {
      position: relative;
      margin: 48px 0;
    }

    .timeline-item-z {
      display: flex;
      gap: 32px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeInUp-z 0.8s ease forwards;
    }

    .timeline-item-z:nth-child(1) { animation-delay: 0.2s; }
    .timeline-item-z:nth-child(2) { animation-delay: 0.4s; }
    .timeline-item-z:nth-child(3) { animation-delay: 0.6s; }

    @keyframes fadeInUp-z {
      to {
        opacity: 1;
        transform: translateY(0);
      }
      from {
        opacity: 0;
        transform: translateY(30px);
      }
    }

    .timeline-marker-z {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 32px;
    }

    .marker-circle-z {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #05BFDB 0%, #088395 100%);
      border: 4px solid white;
      box-shadow: 
        0 0 0 2px #05BFDB,
        0 4px 12px rgba(5, 191, 219, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white;
      font-size: 0.9rem;
      position: relative;
      z-index: 2;
      animation: pulse-z 2s ease-in-out infinite;
    }

    @keyframes pulse-z {
      0%, 100% {
        box-shadow: 
          0 0 0 2px #05BFDB,
          0 4px 12px rgba(5, 191, 219, 0.4);
      }
      50% {
        box-shadow: 
          0 0 0 4px #05BFDB,
          0 6px 20px rgba(5, 191, 219, 0.6);
      }
    }

    .marker-line-z {
      flex: 1;
      width: 3px;
      background: linear-gradient(to bottom, #05BFDB, rgba(5, 191, 219, 0.2));
      margin-top: 8px;
    }

    .timeline-item-z:last-child .marker-line-z {
      display: none;
    }

    .timeline-content-z {
      flex: 1;
      background: white;
      padding: 28px;
      border-radius: 20px;
      border: 2px solid #f0f0f0;
      position: relative;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      overflow: hidden;
    }

    .timeline-content-z::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(5, 191, 219, 0.05), rgba(8, 131, 149, 0.05));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .timeline-content-z:hover {
      transform: translateY(-8px) translateX(4px);
      border-color: #05BFDB;
      box-shadow: 
        0 20px 40px rgba(5, 191, 219, 0.2),
        0 0 0 1px #05BFDB;
    }

    .timeline-content-z:hover::before {
      opacity: 1;
    }

    .duration-badge-z {
      display: inline-block;
      background: linear-gradient(135deg, #05BFDB 0%, #088395 100%);
      color: white;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 16px;
      box-shadow: 0 4px 12px rgba(5, 191, 219, 0.3);
      position: relative;
      z-index: 1;
    }

    .city-name-z {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .city-description-z {
      color: #666;
      line-height: 1.7;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .features-z {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .feature-tag-z {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      color: #495057;
      padding: 8px 16px;
      border-radius: 12px;
      font-size: 0.85rem;
      font-weight: 500;
      border: 1px solid #dee2e6;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .feature-tag-z i {
      font-size: 0.9rem;
    }

    .feature-tag-z:hover {
      background: linear-gradient(135deg, #05BFDB, #088395);
      color: white;
      border-color: #05BFDB;
      transform: translateY(-2px);
    }

    /* Summary Stats */
    .summary-grid-z {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 48px 0;
    }

    .summary-card-z {
      background: linear-gradient(135deg, #ffffff, #f8f9fa);
      padding: 28px 20px;
      border-radius: 20px;
      text-align: center;
      border: 2px solid #e9ecef;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      opacity: 0;
      animation: fadeInUp-z 0.8s ease forwards;
      position: relative;
      overflow: hidden;
    }

    .summary-card-z::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(5, 191, 219, 0.1), rgba(8, 131, 149, 0.1));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .summary-card-z:nth-child(1) { animation-delay: 0.8s; }
    .summary-card-z:nth-child(2) { animation-delay: 0.9s; }
    .summary-card-z:nth-child(3) { animation-delay: 1s; }
    .summary-card-z:nth-child(4) { animation-delay: 1.1s; }

    .summary-card-z:hover {
      transform: translateY(-8px) scale(1.05);
      border-color: #05BFDB;
      box-shadow: 0 12px 32px rgba(5, 191, 219, 0.25);
    }

    .summary-card-z:hover::before {
      opacity: 1;
    }

    .summary-icon-z {
      font-size: 2.5rem;
      margin-bottom: 12px;
      display: block;
      color: #05BFDB;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
      position: relative;
      z-index: 1;
    }

    .summary-value-z {
      font-size: 1.5rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
    }

    .summary-label-z {
      font-size: 0.9rem;
      color: #666;
      font-weight: 500;
      position: relative;
      z-index: 1;
    }

    /* CTA Section */
    .cta-section-z {
      text-align: center;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 2px solid #e9ecef;
      opacity: 0;
      animation: fadeInUp-z 0.8s ease 1.2s forwards;
    }

    .cta-button-z {
      background: linear-gradient(135deg, #05BFDB 0%, #088395 100%);
      color: white;
      border: none;
      padding: 20px 48px;
      font-size: 1.2rem;
      font-weight: 700;
      border-radius: 16px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 
        0 12px 24px rgba(5, 191, 219, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .cta-button-z::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .cta-button-z:hover::before {
      width: 300px;
      height: 300px;
    }

    .cta-button-z:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 
        0 20px 40px rgba(5, 191, 219, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
      gap: 24px;
    }

    .cta-button-z:active {
      transform: translateY(-2px) scale(1.02);
    }

    .button-text-z {
      position: relative;
      z-index: 1;
      letter-spacing: 0.5px;
    }

    .button-icon-z {
      font-size: 1.5rem;
      transition: transform 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .cta-button-z:hover .button-icon-z {
      transform: translateX(6px);
    }

    .cta-note-z {
      color: #666;
      font-size: 0.95rem;
      margin-top: 20px;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .ziyarah-wrapper-z {
        padding: 20px 16px;
      }

      .hero-header-z {
        height: 240px;
      }

      .hero-content-z {
        padding: 24px;
      }

      .hero-title-z {
        font-size: 2rem;
      }

      .hero-subtitle-z {
        font-size: 1rem;
      }

      .card-body-z {
        padding: 32px 24px;
      }

      .timeline-item-z {
        gap: 20px;
      }

      .timeline-content-z {
        padding: 20px;
      }

      .summary-grid-z {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .cta-button-z {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
      }
    }

    @media (max-width: 480px) {
      .hero-title-z {
        font-size: 1.75rem;
      }

      .card-body-z {
        padding: 24px 20px;
      }

      .summary-grid-z {
        grid-template-columns: 1fr;
      }

      .city-name-z {
        font-size: 1.5rem;
      }
    }