   /* ===== Layout ===== */
    .tarifs-wrap {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 16px;
      font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    }
    @media (max-width: 900px) {
       .tarifs-wrap{
           padding: 0 ;
           margin:0;
       } 
    }
    .tarifs-title {
      margin: 0 0 6px;
      font-size: 28px;
      font-weight: 800;
      letter-spacing: 0.2px;
    }
    .tarifs-subtitle {
      margin: 0 0 18px;
      color: #666;
      font-size: 14px;
    }

    .tarifs-table {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }
    .tarifs-table table {
      width: 100%;
      border-collapse: collapse;
    }
    .tarifs-table thead {
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: #fff;
    }
    .tarifs-table th {
      padding: 18px 14px;
      text-align: center;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      white-space: nowrap;
    }
    .tarifs-table td {
      padding: 18px 14px;
      text-align: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      font-size: 15px;
      color: #222;
      vertical-align: middle;
    }
    .tarifs-table td:first-child {
      text-align: left;
      font-weight: 650;
      color: #111;
    }
    .tarifs-table tbody tr {
      transition: background 0.2s ease;
    }
    .tarifs-table tbody tr:hover {
      background: #f7fbff;
    }
    .price {
      font-weight: 800;
      font-size: 16px;
      color: #0b5ed7;
    }

    /* ===== WhatsApp VIP Button ===== */
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 13px;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(135deg, #25d366, #128c7e);
      box-shadow: 0 10px 25px rgba(18, 140, 126, 0.35);
      transition:
        transform 0.2s ease,
        box-shadow 0.25s ease;
      white-space: nowrap;
    }
    .btn-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 35px rgba(18, 140, 126, 0.45);
    }

    /* ===== WhatsApp Popup (NO Bootstrap conflict) ===== */
    .wa-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 999999;
    }
    .wa-backdrop.show {
      display: flex;
    }

    .wa-dialog {
      width: min(560px, 100%);
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(0, 0, 0, 0.08);
      transform: translateY(8px);
      animation: wa-pop 0.18s ease-out forwards;

      max-height: calc(100vh - 36px);
      display: flex;
      flex-direction: column;
    }
    @keyframes wa-pop {
      to {
        transform: translateY(0);
      }
    }

    .wa-header {
      padding: 18px 18px 12px;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: #fff;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }
    .wa-title {
      margin: 0;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.2px;
      text-transform: uppercase;
    }
    .wa-sub {
      margin: 6px 0 0;
      font-size: 13px;
      opacity: 0.9;
      line-height: 1.35;
    }

    .wa-close {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 12px;
      font-size: 18px;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: 0.2s ease;
    }
    .wa-close:hover {
      background: rgba(255, 255, 255, 0.28);
    }

    .wa-body {
      padding: 16px 18px 18px;
      overflow: auto;
    }
    .wa-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .wa-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .wa-field label {
      font-size: 12px;
      font-weight: 800;
      color: #444;
    }
    .wa-field input {
      padding: 12px 12px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      outline: none;
      font-size: 14px;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
      background: #fff;
    }
    .wa-field input:focus {
      border-color: rgba(37, 211, 102, 0.75);
      box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
    }
    .wa-span-2 {
      grid-column: 1 / -1;
    }

    .wa-hint {
      margin: 10px 0 0;
      font-size: 12px;
      color: #666;
      line-height: 1.35;
    }
    .wa-error {
      margin: 10px 0 0;
      font-size: 12px;
      color: #b00020;
      display: none;
      font-weight: 800;
    }
    .wa-error.show {
      display: block;
    }

    .wa-footer {
      padding: 14px 18px 18px;
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      background: #fafafa;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .wa-btn {
      border: none;
      border-radius: 999px;
      padding: 12px 16px;
      font-weight: 900;
      font-size: 13px;
      cursor: pointer;
      transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
      white-space: nowrap;
    }
    .wa-btn-secondary {
      background: #e9ecef;
      color: #222;
    }
    .wa-btn-secondary:hover {
      background: #dee2e6;
      transform: translateY(-1px);
    }
    .wa-btn-primary {
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: #fff;
      box-shadow: 0 10px 22px rgba(18, 140, 126, 0.25);
    }
    .wa-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(18, 140, 126, 0.32);
    }

  /* ===== Responsive: cards ===== */
@media (max-width: 900px) {
  .tarifs-table table,
  .tarifs-table thead,
  .tarifs-table tbody,
  .tarifs-table th,
  .tarifs-table td,
  .tarifs-table tr {
    display: block;
  }

  .tarifs-table thead {
    display: none;
  }

  .tarifs-table tbody tr {
    margin: 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    background: #fff;
  }

  .tarifs-table td {
    position: relative;
    text-align: right;
    padding: 14px 16px 14px 52%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-left: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    word-break: break-word;
  }

  .tarifs-table td::before {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: #555;
    text-align: left;
    content: "";
    max-width: 42%;
    line-height: 1.3;
  }

  /* إصلاح خلية Trajet */
  .tarifs-table td:first-child {
    text-align: left;
    padding: 16px;
    font-weight: 900;
    background: #fbfbfb;
    display: block;
  }

  .tarifs-table td:first-child::before {
    content: none;
    display: none;
  }

  .tarifs-table td:nth-child(2)::before { content: "1–3 Pers."; }
  .tarifs-table td:nth-child(3)::before { content: "4–7 Pers."; }
  .tarifs-table td:nth-child(4)::before { content: "9–17 Pers."; }

  .btn-whatsapp {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 8px;
  }

  .wa-grid {
    grid-template-columns: 1fr;
  }
}